2016-09-15 16:32:49 +00: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
|
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
#include "ui/effects/rect_shadow.h"
|
|
|
|
|
2016-09-23 16:04:26 +00:00
|
|
|
namespace Ui {
|
|
|
|
class IconButton;
|
|
|
|
class MediaSlider;
|
2016-10-12 19:34:25 +00:00
|
|
|
class RectShadow;
|
2016-09-23 16:04:26 +00:00
|
|
|
} // namespace Ui
|
|
|
|
|
2016-09-15 16:32:49 +00:00
|
|
|
namespace Media {
|
|
|
|
namespace Player {
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
class VolumeController : public TWidget, private base::Subscriber {
|
2016-09-17 19:28:33 +00:00
|
|
|
public:
|
|
|
|
VolumeController(QWidget *parent);
|
|
|
|
|
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:
|
2016-09-23 16:04:26 +00:00
|
|
|
void setVolume(float64 volume, bool animated = true);
|
|
|
|
void applyVolumeChange(float64 volume);
|
|
|
|
|
|
|
|
ChildWidget<Ui::MediaSlider> _slider;
|
2016-10-12 19:34:25 +00: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 16:43:13 +00:00
|
|
|
void otherEnter();
|
|
|
|
void otherLeave();
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
void appearanceCallback();
|
|
|
|
void hidingFinished();
|
|
|
|
void startAnimation();
|
|
|
|
|
|
|
|
bool _hiding = false;
|
|
|
|
|
|
|
|
QPixmap _cache;
|
2016-12-07 13:32:25 +00:00
|
|
|
Animation _a_appearance;
|
2016-10-12 19:34:25 +00:00
|
|
|
|
|
|
|
QTimer _hideTimer, _showTimer;
|
|
|
|
|
|
|
|
Ui::RectShadow _shadow;
|
|
|
|
ChildWidget<VolumeController> _controller;
|
2016-09-17 19:28:33 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-09-15 16:32:49 +00:00
|
|
|
} // namespace Clip
|
|
|
|
} // namespace Media
|