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
|
|
|
class AudioMsgId;
|
|
|
|
struct AudioPlaybackState;
|
2016-11-16 13:44:06 +03:00
|
|
|
|
2016-09-17 22:28:33 +03:00
|
|
|
namespace Ui {
|
2016-11-16 13:44:06 +03:00
|
|
|
class FlatLabel;
|
2016-09-17 22:28:33 +03:00
|
|
|
class LabelSimple;
|
|
|
|
class IconButton;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2016-09-15 19:32:49 +03:00
|
|
|
namespace Media {
|
2016-09-23 19:04:26 +03:00
|
|
|
namespace Clip {
|
|
|
|
class Playback;
|
|
|
|
} // namespace Clip
|
|
|
|
|
2016-09-15 19:32:49 +03:00
|
|
|
namespace Player {
|
|
|
|
|
2016-09-17 22:28:33 +03:00
|
|
|
class VolumeController;
|
2016-09-23 19:04:26 +03:00
|
|
|
struct UpdatedEvent;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
2016-09-23 19:04:26 +03:00
|
|
|
class CoverWidget : public TWidget, private base::Subscriber {
|
2016-09-17 22:28:33 +03:00
|
|
|
public:
|
|
|
|
CoverWidget(QWidget *parent);
|
|
|
|
|
2016-11-20 15:54:07 +03:00
|
|
|
using ButtonCallback = base::lambda<void()>;
|
2016-10-18 18:19:13 +03:00
|
|
|
void setPinCallback(ButtonCallback &&callback);
|
|
|
|
void setCloseCallback(ButtonCallback &&callback);
|
2016-10-12 22:34:25 +03:00
|
|
|
|
2016-09-17 22:28:33 +03:00
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
2016-10-18 18:19:13 +03:00
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
void leaveEvent(QEvent *e) override;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
|
|
|
private:
|
2016-10-18 18:19:13 +03:00
|
|
|
void setCloseVisible(bool visible);
|
2016-09-23 19:04:26 +03:00
|
|
|
void handleSeekProgress(float64 progress);
|
|
|
|
void handleSeekFinished(float64 progress);
|
|
|
|
|
2016-09-17 22:28:33 +03:00
|
|
|
void updatePlayPrevNextPositions();
|
2016-09-23 19:04:26 +03:00
|
|
|
void updateLabelPositions();
|
|
|
|
void updateRepeatTrackIcon();
|
|
|
|
void createPrevNextButtons();
|
|
|
|
void destroyPrevNextButtons();
|
|
|
|
|
2016-10-12 22:34:25 +03:00
|
|
|
void updateVolumeToggleIcon();
|
|
|
|
|
2016-09-23 19:04:26 +03:00
|
|
|
void handleSongUpdate(const UpdatedEvent &e);
|
|
|
|
void handleSongChange();
|
|
|
|
void handlePlaylistUpdate();
|
|
|
|
|
|
|
|
void updateTimeText(const AudioMsgId &audioId, const AudioPlaybackState &playbackState);
|
|
|
|
void updateTimeLabel();
|
|
|
|
|
2016-12-01 22:20:33 +03:00
|
|
|
TimeMs _seekPositionMs = -1;
|
|
|
|
TimeMs _lastDurationMs = 0;
|
2016-09-23 19:04:26 +03:00
|
|
|
QString _time;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
2016-10-08 21:28:43 +03:00
|
|
|
class PlayButton;
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::FlatLabel> _nameLabel;
|
|
|
|
object_ptr<Ui::LabelSimple> _timeLabel;
|
|
|
|
object_ptr<Ui::IconButton> _close;
|
|
|
|
std_::unique_ptr<Clip::Playback> _playback;
|
|
|
|
object_ptr<Ui::IconButton> _previousTrack = { nullptr };
|
|
|
|
object_ptr<PlayButton> _playPause;
|
|
|
|
object_ptr<Ui::IconButton> _nextTrack = { nullptr };
|
|
|
|
object_ptr<Ui::IconButton> _volumeToggle;
|
|
|
|
object_ptr<VolumeController> _volumeController;
|
|
|
|
object_ptr<Ui::IconButton> _pinPlayer;
|
|
|
|
object_ptr<Ui::IconButton> _repeatTrack;
|
2016-09-17 22:28:33 +03:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2016-09-15 19:32:49 +03:00
|
|
|
} // namespace Clip
|
|
|
|
} // namespace Media
|