2016-09-15 19:32:49 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
|
|
|
|
|
|
|
Telegram Desktop is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2017-01-11 22:31:31 +04:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-09-15 19:32:49 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-23 19:04:26 +03:00
|
|
|
namespace Ui {
|
|
|
|
class IconButton;
|
|
|
|
class MediaSlider;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2016-09-15 19:32:49 +03:00
|
|
|
namespace Media {
|
|
|
|
namespace Player {
|
|
|
|
|
2016-10-12 22:34:25 +03:00
|
|
|
class VolumeController : public TWidget, private base::Subscriber {
|
2016-09-17 22:28:33 +03:00
|
|
|
public:
|
|
|
|
VolumeController(QWidget *parent);
|
|
|
|
|
2016-10-12 22:34:25 +03:00
|
|
|
void setIsVertical(bool vertical);
|
|
|
|
|
2016-09-17 22:28:33 +03:00
|
|
|
protected:
|
2016-09-23 19:04:26 +03:00
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
|
|
|
private:
|
2016-09-23 19:04:26 +03:00
|
|
|
void setVolume(float64 volume, bool animated = true);
|
|
|
|
void applyVolumeChange(float64 volume);
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::MediaSlider> _slider;
|
2016-10-12 22:34:25 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class VolumeWidget : public TWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
VolumeWidget(QWidget *parent);
|
|
|
|
|
|
|
|
bool overlaps(const QRect &globalRect);
|
|
|
|
|
|
|
|
QMargins getMargin() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void enterEvent(QEvent *e) override;
|
|
|
|
void leaveEvent(QEvent *e) override;
|
|
|
|
|
|
|
|
bool eventFilter(QObject *obj, QEvent *e) override;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void onShowStart();
|
|
|
|
void onHideStart();
|
|
|
|
void onWindowActiveChanged();
|
|
|
|
|
|
|
|
private:
|
2016-10-26 19:43:13 +03:00
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
2016-10-12 22:34:25 +03:00
|
|
|
void appearanceCallback();
|
|
|
|
void hidingFinished();
|
|
|
|
void startAnimation();
|
|
|
|
|
|
|
|
bool _hiding = false;
|
|
|
|
|
|
|
|
QPixmap _cache;
|
2016-12-07 16:32:25 +03:00
|
|
|
Animation _a_appearance;
|
2016-10-12 22:34:25 +03:00
|
|
|
|
|
|
|
QTimer _hideTimer, _showTimer;
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<VolumeController> _controller;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-09-15 19:32:49 +03:00
|
|
|
} // namespace Clip
|
|
|
|
} // namespace Media
|