tdesktop/Telegram/SourceFiles/media/view/media_clip_playback.h

79 lines
2.0 KiB
C
Raw Normal View History

2016-07-11 18:05:46 +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-2017 John Preston, https://desktop.telegram.org
2016-07-11 18:05:46 +00:00
*/
#pragma once
2016-11-22 09:48:13 +00:00
#include "ui/widgets/continuous_sliders.h"
2016-07-11 18:05:46 +00:00
namespace Media {
namespace Player {
struct TrackState;
} // namespace Player
2016-07-11 18:05:46 +00:00
namespace Clip {
class Playback {
2016-07-11 18:05:46 +00:00
public:
Playback(Ui::ContinuousSlider *slider);
2016-07-11 18:05:46 +00:00
void updateState(const Player::TrackState &state);
void updateLoadingState(float64 progress);
2016-07-11 18:05:46 +00:00
void setFadeOpacity(float64 opacity) {
_slider->setFadeOpacity(opacity);
}
void setChangeProgressCallback(Ui::ContinuousSlider::Callback &&callback) {
_slider->setChangeProgressCallback(std::move(callback));
}
void setChangeFinishedCallback(Ui::ContinuousSlider::Callback &&callback) {
_slider->setChangeFinishedCallback(std::move(callback));
}
void setGeometry(int x, int y, int w, int h) {
_slider->setGeometry(x, y, w, h);
}
void hide() {
_slider->hide();
}
void show() {
_slider->show();
}
void moveToLeft(int x, int y) {
_slider->moveToLeft(x, y);
}
void resize(int w, int h) {
_slider->resize(w, h);
2016-07-11 18:05:46 +00:00
}
void setDisabled(bool disabled) {
_slider->setDisabled(disabled);
}
2016-07-11 18:05:46 +00:00
private:
Ui::ContinuousSlider *_slider;
2016-07-11 18:05:46 +00:00
int64 _position = 0;
2016-12-01 19:20:33 +00:00
TimeMs _duration = 0;
2016-07-11 18:05:46 +00:00
bool _playing = false;
2016-07-11 18:05:46 +00:00
};
} // namespace Clip
} // namespace Media