2016-09-15 16:32:49 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-09-15 16:32:49 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-09-15 16:32:49 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2019-04-05 10:13:54 +00:00
|
|
|
#include "ui/rp_widget.h"
|
2019-09-13 12:22:54 +00:00
|
|
|
#include "base/object_ptr.h"
|
2019-09-13 06:06:02 +00:00
|
|
|
|
2016-09-23 16:04:26 +00:00
|
|
|
namespace Ui {
|
|
|
|
class MediaSlider;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2020-06-08 15:17:33 +00:00
|
|
|
namespace Window {
|
|
|
|
class SessionController;
|
|
|
|
} // namespace Window
|
|
|
|
|
2021-11-18 17:02:12 +00:00
|
|
|
namespace Media::Player {
|
|
|
|
|
|
|
|
class Dropdown;
|
2016-09-15 16:32:49 +00:00
|
|
|
|
2021-07-15 11:12:38 +00:00
|
|
|
class VolumeController final : public Ui::RpWidget {
|
2016-09-17 19:28:33 +00:00
|
|
|
public:
|
2020-06-08 15:17:33 +00:00
|
|
|
VolumeController(
|
|
|
|
QWidget *parent,
|
|
|
|
not_null<Window::SessionController*> controller);
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
void setIsVertical(bool vertical);
|
|
|
|
|
2016-09-17 19:28:33 +00:00
|
|
|
protected:
|
2016-09-23 16:04:26 +00:00
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2016-09-17 19:28:33 +00:00
|
|
|
|
|
|
|
private:
|
2017-05-18 16:10:39 +00:00
|
|
|
void setVolume(float64 volume);
|
2016-09-23 16:04:26 +00:00
|
|
|
void applyVolumeChange(float64 volume);
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::MediaSlider> _slider;
|
2016-10-12 19:34:25 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2021-11-18 17:02:12 +00:00
|
|
|
void PrepareVolumeDropdown(
|
|
|
|
not_null<Dropdown*> dropdown,
|
|
|
|
not_null<Window::SessionController*> controller);
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2021-11-18 17:02:12 +00:00
|
|
|
} // namespace Media::Player
|