mirror of https://github.com/procxx/kepka.git
Display playback progress in PiP.
This commit is contained in:
parent
9ed56aa5d6
commit
23388b5705
|
@ -10,6 +10,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "media/streaming/media_streaming_player.h"
|
#include "media/streaming/media_streaming_player.h"
|
||||||
#include "media/streaming/media_streaming_document.h"
|
#include "media/streaming/media_streaming_document.h"
|
||||||
#include "media/streaming/media_streaming_utility.h"
|
#include "media/streaming/media_streaming_utility.h"
|
||||||
|
#include "media/view/media_view_playback_progress.h"
|
||||||
#include "media/audio/media_audio.h"
|
#include "media/audio/media_audio.h"
|
||||||
#include "data/data_document.h"
|
#include "data/data_document.h"
|
||||||
#include "data/data_file_origin.h"
|
#include "data/data_file_origin.h"
|
||||||
|
@ -712,6 +713,7 @@ Pip::Pip(
|
||||||
, _panel(
|
, _panel(
|
||||||
_delegate->pipParentWidget(),
|
_delegate->pipParentWidget(),
|
||||||
[=](QPainter &p, const FrameRequest &request) { paint(p, request); })
|
[=](QPainter &p, const FrameRequest &request) { paint(p, request); })
|
||||||
|
, _playbackProgress(std::make_unique<PlaybackProgress>())
|
||||||
, _roundRect(ImageRoundRadius::Large, st::radialBg)
|
, _roundRect(ImageRoundRadius::Large, st::radialBg)
|
||||||
, _closeAndContinue(std::move(closeAndContinue))
|
, _closeAndContinue(std::move(closeAndContinue))
|
||||||
, _destroy(std::move(destroy)) {
|
, _destroy(std::move(destroy)) {
|
||||||
|
@ -720,6 +722,8 @@ Pip::Pip(
|
||||||
setupStreaming();
|
setupStreaming();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Pip::~Pip() = default;
|
||||||
|
|
||||||
void Pip::setupPanel() {
|
void Pip::setupPanel() {
|
||||||
const auto size = style::ConvertScale(_instance.info().video.size);
|
const auto size = style::ConvertScale(_instance.info().video.size);
|
||||||
if (size.isEmpty()) {
|
if (size.isEmpty()) {
|
||||||
|
@ -878,14 +882,22 @@ void Pip::setupButtons() {
|
||||||
rect.y() + (rect.height() - st::pipPlayIcon.height()) / 2,
|
rect.y() + (rect.height() - st::pipPlayIcon.height()) / 2,
|
||||||
st::pipPlayIcon.width(),
|
st::pipPlayIcon.width(),
|
||||||
st::pipPlayIcon.height());
|
st::pipPlayIcon.height());
|
||||||
const auto playbackHeight = 2 * st::pipPlaybackSkip
|
const auto playbackSkip = st::pipPlaybackSkip;
|
||||||
+ st::pipPlaybackWidth;
|
const auto playbackHeight = 2 * playbackSkip + st::pipPlaybackWidth;
|
||||||
_playback.area = QRect(
|
_playback.area = QRect(
|
||||||
rect.x(),
|
rect.x(),
|
||||||
rect.y() + rect.height() - playbackHeight,
|
rect.y() + rect.height() - playbackHeight,
|
||||||
rect.width(),
|
rect.width(),
|
||||||
playbackHeight);
|
playbackHeight);
|
||||||
|
_playback.icon = _playback.area.marginsRemoved(
|
||||||
|
{ playbackSkip, playbackSkip, playbackSkip, playbackSkip });
|
||||||
}, _panel.lifetime());
|
}, _panel.lifetime());
|
||||||
|
|
||||||
|
_playbackProgress->setValueChangedCallback([=](
|
||||||
|
float64 value,
|
||||||
|
float64 receivedTill) {
|
||||||
|
_panel.update(_playback.area);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pip::saveGeometry() {
|
void Pip::saveGeometry() {
|
||||||
|
@ -926,14 +938,19 @@ void Pip::paint(QPainter &p, FrameRequest request) {
|
||||||
paintControls(p);
|
paintControls(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pip::paintControls(QPainter &p) {
|
void Pip::paintControls(QPainter &p) const {
|
||||||
const auto shown = _controlsShown.value(
|
const auto shown = _controlsShown.value(
|
||||||
(_over != OverState::None) ? 1. : 0.);
|
(_over != OverState::None) ? 1. : 0.);
|
||||||
if (!shown) {
|
if (!shown) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
p.setOpacity(shown);
|
p.setOpacity(shown);
|
||||||
|
paintFade(p);
|
||||||
|
paintButtons(p);
|
||||||
|
paintPlayback(p);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Pip::paintFade(QPainter &p) const {
|
||||||
using Part = RectPart;
|
using Part = RectPart;
|
||||||
const auto sides = _panel.attached();
|
const auto sides = _panel.attached();
|
||||||
const auto rounded = RectPart(0)
|
const auto rounded = RectPart(0)
|
||||||
|
@ -949,7 +966,10 @@ void Pip::paintControls(QPainter &p) {
|
||||||
p,
|
p,
|
||||||
_panel.inner(),
|
_panel.inner(),
|
||||||
rounded | Part::NoTopBottom | Part::Top | Part::Bottom);
|
rounded | Part::NoTopBottom | Part::Top | Part::Bottom);
|
||||||
|
}
|
||||||
|
|
||||||
|
void Pip::paintButtons(QPainter &p) const {
|
||||||
|
const auto opacity = p.opacity();
|
||||||
const auto outer = _panel.width();
|
const auto outer = _panel.width();
|
||||||
const auto drawOne = [&](
|
const auto drawOne = [&](
|
||||||
const Button &button,
|
const Button &button,
|
||||||
|
@ -961,9 +981,9 @@ void Pip::paintControls(QPainter &p) {
|
||||||
icon.paint(p, button.icon.x(), button.icon.y(), outer);
|
icon.paint(p, button.icon.x(), button.icon.y(), outer);
|
||||||
}
|
}
|
||||||
if (over > 0.) {
|
if (over > 0.) {
|
||||||
p.setOpacity(over * shown);
|
p.setOpacity(over * opacity);
|
||||||
iconOver.paint(p, button.icon.x(), button.icon.y(), outer);
|
iconOver.paint(p, button.icon.x(), button.icon.y(), outer);
|
||||||
p.setOpacity(shown);
|
p.setOpacity(opacity);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
drawOne(
|
drawOne(
|
||||||
|
@ -974,6 +994,42 @@ void Pip::paintControls(QPainter &p) {
|
||||||
drawOne(_enlarge, st::pipEnlargeIcon, st::pipEnlargeIconOver);
|
drawOne(_enlarge, st::pipEnlargeIcon, st::pipEnlargeIconOver);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Pip::paintPlayback(QPainter &p) const {
|
||||||
|
const auto radius = _playback.icon.height() / 2;
|
||||||
|
const auto progress = _playbackProgress->value();
|
||||||
|
const auto left = _playback.icon.x();
|
||||||
|
const auto top = _playback.icon.y();
|
||||||
|
const auto width = _playback.icon.width();
|
||||||
|
const auto height = _playback.icon.height();
|
||||||
|
const auto done = int(std::round(width * progress));
|
||||||
|
PainterHighQualityEnabler hq(p);
|
||||||
|
p.setPen(Qt::NoPen);
|
||||||
|
if (done > 0) {
|
||||||
|
p.setBrush(st::mediaviewPipPlaybackActive);
|
||||||
|
p.setClipRect(left, top, done, height);
|
||||||
|
p.drawRoundedRect(
|
||||||
|
left,
|
||||||
|
top,
|
||||||
|
std::min(done + radius, width),
|
||||||
|
height,
|
||||||
|
radius,
|
||||||
|
radius);
|
||||||
|
}
|
||||||
|
if (done < width) {
|
||||||
|
const auto from = std::max(left + done - radius, left);
|
||||||
|
p.setBrush(st::mediaviewPipPlaybackInactive);
|
||||||
|
p.setClipRect(left + done, top, width - done, height);
|
||||||
|
p.drawRoundedRect(
|
||||||
|
from,
|
||||||
|
top,
|
||||||
|
left + width - from,
|
||||||
|
height,
|
||||||
|
radius,
|
||||||
|
radius);
|
||||||
|
}
|
||||||
|
p.setClipping(false);
|
||||||
|
}
|
||||||
|
|
||||||
void Pip::handleStreamingUpdate(Streaming::Update &&update) {
|
void Pip::handleStreamingUpdate(Streaming::Update &&update) {
|
||||||
using namespace Streaming;
|
using namespace Streaming;
|
||||||
|
|
||||||
|
@ -998,9 +1054,10 @@ void Pip::handleStreamingUpdate(Streaming::Update &&update) {
|
||||||
|
|
||||||
void Pip::updatePlaybackState() {
|
void Pip::updatePlaybackState() {
|
||||||
const auto state = _instance.player().prepareLegacyState();
|
const auto state = _instance.player().prepareLegacyState();
|
||||||
//if (state.position != kTimeUnknown && state.length != kTimeUnknown) {
|
updatePlayPauseResumeState(state);
|
||||||
updatePlayPauseResumeState(state);
|
if (state.position != kTimeUnknown && state.length != kTimeUnknown) {
|
||||||
//}
|
_playbackProgress->updateState(state);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pip::handleStreamingError(Streaming::Error &&error) {
|
void Pip::handleStreamingError(Streaming::Error &&error) {
|
||||||
|
|
|
@ -27,6 +27,8 @@ struct TrackState;
|
||||||
|
|
||||||
namespace View {
|
namespace View {
|
||||||
|
|
||||||
|
class PlaybackProgress;
|
||||||
|
|
||||||
#if defined Q_OS_MAC && !defined OS_MAC_OLD
|
#if defined Q_OS_MAC && !defined OS_MAC_OLD
|
||||||
#define USE_OPENGL_OVERLAY_WIDGET
|
#define USE_OPENGL_OVERLAY_WIDGET
|
||||||
#endif // Q_OS_MAC && !OS_MAC_OLD
|
#endif // Q_OS_MAC && !OS_MAC_OLD
|
||||||
|
@ -117,6 +119,7 @@ public:
|
||||||
std::shared_ptr<Streaming::Document> shared,
|
std::shared_ptr<Streaming::Document> shared,
|
||||||
FnMut<void()> closeAndContinue,
|
FnMut<void()> closeAndContinue,
|
||||||
FnMut<void()> destroy);
|
FnMut<void()> destroy);
|
||||||
|
~Pip();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum class OverState {
|
enum class OverState {
|
||||||
|
@ -168,7 +171,10 @@ private:
|
||||||
void handleLeave();
|
void handleLeave();
|
||||||
void handleClose();
|
void handleClose();
|
||||||
|
|
||||||
void paintControls(QPainter &p);
|
void paintControls(QPainter &p) const;
|
||||||
|
void paintFade(QPainter &p) const;
|
||||||
|
void paintButtons(QPainter &p) const;
|
||||||
|
void paintPlayback(QPainter &p) const;
|
||||||
void paintRadialLoading(QPainter &p) const;
|
void paintRadialLoading(QPainter &p) const;
|
||||||
void paintRadialLoadingContent(QPainter &p, const QRect &inner) const;
|
void paintRadialLoadingContent(QPainter &p, const QRect &inner) const;
|
||||||
[[nodiscard]] QRect countRadialRect() const;
|
[[nodiscard]] QRect countRadialRect() const;
|
||||||
|
@ -179,6 +185,7 @@ private:
|
||||||
Streaming::Instance _instance;
|
Streaming::Instance _instance;
|
||||||
PipPanel _panel;
|
PipPanel _panel;
|
||||||
QSize _size;
|
QSize _size;
|
||||||
|
std::unique_ptr<PlaybackProgress> _playbackProgress;
|
||||||
|
|
||||||
bool _showPause = false;
|
bool _showPause = false;
|
||||||
OverState _over = OverState::None;
|
OverState _over = OverState::None;
|
||||||
|
|
|
@ -27,7 +27,7 @@ public:
|
||||||
_inLoadingStateChanged = std::move(callback);
|
_inLoadingStateChanged = std::move(callback);
|
||||||
}
|
}
|
||||||
void setValue(float64 value, bool animated);
|
void setValue(float64 value, bool animated);
|
||||||
float64 value() const;
|
[[nodiscard]] float64 value() const;
|
||||||
|
|
||||||
void updateState(
|
void updateState(
|
||||||
const Player::TrackState &state,
|
const Player::TrackState &state,
|
||||||
|
|
Loading…
Reference in New Issue