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
|
2017-01-11 18:31:31 +00:00
|
|
|
Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
2016-09-15 16:32:49 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
class AudioMsgId;
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
namespace Ui {
|
2016-11-16 10:44:06 +00:00
|
|
|
class FlatLabel;
|
2016-10-12 19:34:25 +00:00
|
|
|
class LabelSimple;
|
|
|
|
class IconButton;
|
|
|
|
class PlainShadow;
|
2017-05-18 16:10:39 +00:00
|
|
|
class FilledSlider;
|
2016-10-12 19:34:25 +00:00
|
|
|
} // namespace Ui
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-09-15 16:32:49 +00:00
|
|
|
namespace Media {
|
2016-10-12 19:34:25 +00:00
|
|
|
namespace Clip {
|
|
|
|
class Playback;
|
|
|
|
} // namespace Clip
|
|
|
|
|
2016-09-15 16:32:49 +00:00
|
|
|
namespace Player {
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
class PlayButton;
|
|
|
|
class VolumeWidget;
|
2017-01-24 21:24:39 +00:00
|
|
|
struct TrackState;
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-09-23 16:04:26 +00:00
|
|
|
class Widget : public TWidget, private base::Subscriber {
|
2016-09-17 19:28:33 +00:00
|
|
|
public:
|
|
|
|
Widget(QWidget *parent);
|
|
|
|
|
2017-05-21 13:16:39 +00:00
|
|
|
void setCloseCallback(base::lambda<void()> callback);
|
2016-10-12 19:34:25 +00:00
|
|
|
|
|
|
|
void setShadowGeometryToLeft(int x, int y, int w, int h);
|
|
|
|
void showShadow();
|
|
|
|
void hideShadow();
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
QPoint getPositionForVolumeWidget() const;
|
|
|
|
void volumeWidgetCreated(VolumeWidget *widget);
|
2016-09-17 19:28:33 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
~Widget();
|
|
|
|
|
2016-09-17 19:28:33 +00:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
2017-02-11 11:24:37 +00:00
|
|
|
void leaveEventHook(QEvent *e) override;
|
2016-10-14 17:10:15 +00:00
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
|
2016-09-17 19:28:33 +00:00
|
|
|
private:
|
2016-10-12 19:34:25 +00:00
|
|
|
void handleSeekProgress(float64 progress);
|
|
|
|
void handleSeekFinished(float64 progress);
|
|
|
|
|
2016-10-14 17:10:15 +00:00
|
|
|
int getLabelsLeft() const;
|
|
|
|
int getLabelsRight() const;
|
|
|
|
void updateOverLabelsState(QPoint pos);
|
|
|
|
void updateOverLabelsState(bool over);
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
void updatePlayPrevNextPositions();
|
|
|
|
void updateLabelsGeometry();
|
|
|
|
void updateRepeatTrackIcon();
|
|
|
|
void createPrevNextButtons();
|
|
|
|
void destroyPrevNextButtons();
|
|
|
|
|
|
|
|
void updateVolumeToggleIcon();
|
|
|
|
|
2017-05-21 13:16:39 +00:00
|
|
|
void checkForTypeChange();
|
|
|
|
void setType(AudioMsgId::Type type);
|
2017-01-24 21:24:39 +00:00
|
|
|
void handleSongUpdate(const TrackState &state);
|
2016-10-12 19:34:25 +00:00
|
|
|
void handleSongChange();
|
|
|
|
void handlePlaylistUpdate();
|
|
|
|
|
2017-01-24 21:24:39 +00:00
|
|
|
void updateTimeText(const TrackState &state);
|
2016-10-12 19:34:25 +00:00
|
|
|
void updateTimeLabel();
|
|
|
|
|
2016-12-01 19:20:33 +00:00
|
|
|
TimeMs _seekPositionMs = -1;
|
|
|
|
TimeMs _lastDurationMs = 0;
|
2016-10-12 19:34:25 +00:00
|
|
|
QString _time;
|
|
|
|
|
2017-05-21 13:16:39 +00:00
|
|
|
// We display all the controls according to _type.
|
|
|
|
// We switch to Type::Voice if a voice/video message is played.
|
|
|
|
// We switch to Type::Song only if _voiceIsActive == false.
|
|
|
|
// We change _voiceIsActive to false only manually or from tracksFinished().
|
|
|
|
AudioMsgId::Type _type = AudioMsgId::Type::Unknown;
|
|
|
|
bool _voiceIsActive = false;
|
|
|
|
|
2016-10-12 19:34:25 +00:00
|
|
|
class PlayButton;
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::FlatLabel> _nameLabel;
|
|
|
|
object_ptr<Ui::LabelSimple> _timeLabel;
|
|
|
|
object_ptr<Ui::IconButton> _previousTrack = { nullptr };
|
|
|
|
object_ptr<PlayButton> _playPause;
|
|
|
|
object_ptr<Ui::IconButton> _nextTrack = { nullptr };
|
|
|
|
object_ptr<Ui::IconButton> _volumeToggle;
|
|
|
|
object_ptr<Ui::IconButton> _repeatTrack;
|
|
|
|
object_ptr<Ui::IconButton> _close;
|
|
|
|
object_ptr<Ui::PlainShadow> _shadow = { nullptr };
|
2017-05-18 16:10:39 +00:00
|
|
|
object_ptr<Ui::FilledSlider> _playbackSlider;
|
2017-02-21 13:45:56 +00:00
|
|
|
std::unique_ptr<Clip::Playback> _playback;
|
2016-09-17 19:28:33 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-09-15 16:32:49 +00:00
|
|
|
} // namespace Clip
|
|
|
|
} // namespace Media
|