mirror of
https://github.com/AyuGram/AyuGramDesktop.git
synced 2025-05-11 10:23:56 +02:00
62 lines
1.2 KiB
C++
62 lines
1.2 KiB
C++
/*
|
|
This file is part of Telegram Desktop,
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
For license and copyright information please follow this link:
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
*/
|
|
#pragma once
|
|
|
|
namespace Ui {
|
|
class RpWidget;
|
|
} // namespace Ui
|
|
|
|
namespace Media::View {
|
|
class PlaybackProgress;
|
|
} // namespace Media::View
|
|
|
|
namespace Media::Player {
|
|
struct TrackState;
|
|
} // namespace Media::Player
|
|
|
|
namespace Media::Stories {
|
|
|
|
class Controller;
|
|
|
|
struct SliderData {
|
|
int index = 0;
|
|
int total = 0;
|
|
|
|
friend inline auto operator<=>(SliderData, SliderData) = default;
|
|
friend inline bool operator==(SliderData, SliderData) = default;
|
|
};
|
|
|
|
class Slider final {
|
|
public:
|
|
explicit Slider(not_null<Controller*> controller);
|
|
~Slider();
|
|
|
|
void show(SliderData data);
|
|
void raise();
|
|
|
|
void updatePlayback(const Player::TrackState &state);
|
|
|
|
private:
|
|
void resetProgress();
|
|
|
|
void layout(int width);
|
|
void paint(QRectF clip);
|
|
|
|
const not_null<Controller*> _controller;
|
|
const std::unique_ptr<Media::View::PlaybackProgress> _progress;
|
|
|
|
std::unique_ptr<Ui::RpWidget> _widget;
|
|
std::vector<QRectF> _rects;
|
|
QRect _activeBoundingRect;
|
|
|
|
SliderData _data;
|
|
|
|
|
|
};
|
|
|
|
} // namespace Media::Stories
|