mirror of https://github.com/procxx/kepka.git
Show playback time in PiP.
This commit is contained in:
parent
d6e989cad5
commit
282c502b71
|
@ -282,7 +282,7 @@ themePreviewButtonsSkip: 20px;
|
||||||
themePreviewDialogsWidth: 312px;
|
themePreviewDialogsWidth: 312px;
|
||||||
|
|
||||||
pipDefaultSize: 320px;
|
pipDefaultSize: 320px;
|
||||||
pipMinimalSize: 100px;
|
pipMinimalSize: 120px;
|
||||||
pipBorderSkip: 20px;
|
pipBorderSkip: 20px;
|
||||||
pipBorderSnapArea: 16px;
|
pipBorderSnapArea: 16px;
|
||||||
pipResizeArea: 10px;
|
pipResizeArea: 10px;
|
||||||
|
@ -290,6 +290,8 @@ pipControlSkip: 6px;
|
||||||
pipPlaybackWidth: 2px;
|
pipPlaybackWidth: 2px;
|
||||||
pipPlaybackWide: 4px;
|
pipPlaybackWide: 4px;
|
||||||
pipPlaybackSkip: 4px;
|
pipPlaybackSkip: 4px;
|
||||||
|
pipPlaybackTextSkip: 6px;
|
||||||
|
pipPlaybackFont: font(11px);
|
||||||
pipPlayIcon: icon {{ "player_pip_play", mediaviewPipControlsFg }};
|
pipPlayIcon: icon {{ "player_pip_play", mediaviewPipControlsFg }};
|
||||||
pipPlayIconOver: icon {{ "player_pip_play", mediaviewPipControlsFgOver }};
|
pipPlayIconOver: icon {{ "player_pip_play", mediaviewPipControlsFgOver }};
|
||||||
pipPauseIcon: icon {{ "player_pip_pause", mediaviewPipControlsFg }};
|
pipPauseIcon: icon {{ "player_pip_pause", mediaviewPipControlsFg }};
|
||||||
|
|
|
@ -21,6 +21,7 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
#include "ui/wrap/fade_wrap.h"
|
#include "ui/wrap/fade_wrap.h"
|
||||||
#include "ui/widgets/shadow.h"
|
#include "ui/widgets/shadow.h"
|
||||||
#include "window/window_controller.h"
|
#include "window/window_controller.h"
|
||||||
|
#include "layout.h" // formatDurationText
|
||||||
#include "styles/style_window.h"
|
#include "styles/style_window.h"
|
||||||
#include "styles/style_media_view.h"
|
#include "styles/style_media_view.h"
|
||||||
#include "styles/style_calls.h" // st::callShadow
|
#include "styles/style_calls.h" // st::callShadow
|
||||||
|
@ -35,6 +36,7 @@ namespace {
|
||||||
|
|
||||||
constexpr auto kPipLoaderPriority = 2;
|
constexpr auto kPipLoaderPriority = 2;
|
||||||
constexpr auto kSaveGeometryTimeout = crl::time(1000);
|
constexpr auto kSaveGeometryTimeout = crl::time(1000);
|
||||||
|
constexpr auto kMsInSecond = 1000;
|
||||||
|
|
||||||
[[nodiscard]] bool IsWindowControlsOnLeft() {
|
[[nodiscard]] bool IsWindowControlsOnLeft() {
|
||||||
return Platform::IsMac();
|
return Platform::IsMac();
|
||||||
|
@ -920,6 +922,7 @@ void Pip::seekProgress(float64 value) {
|
||||||
_pausedBySeek = true;
|
_pausedBySeek = true;
|
||||||
playbackPauseResume();
|
playbackPauseResume();
|
||||||
}
|
}
|
||||||
|
updatePlaybackTexts(_seekPositionMs, _lastDurationMs, kMsInSecond);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1041,6 +1044,7 @@ void Pip::paintControls(QPainter &p) const {
|
||||||
paintFade(p);
|
paintFade(p);
|
||||||
paintButtons(p);
|
paintButtons(p);
|
||||||
paintPlayback(p);
|
paintPlayback(p);
|
||||||
|
paintPlaybackTexts(p);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pip::paintFade(QPainter &p) const {
|
void Pip::paintFade(QPainter &p) const {
|
||||||
|
@ -1126,6 +1130,21 @@ void Pip::paintPlayback(QPainter &p) const {
|
||||||
p.setClipping(false);
|
p.setClipping(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Pip::paintPlaybackTexts(QPainter &p) const {
|
||||||
|
const auto left = _playback.area.x() + st::pipPlaybackTextSkip;
|
||||||
|
const auto right = _playback.area.x()
|
||||||
|
+ _playback.area.width()
|
||||||
|
- st::pipPlaybackTextSkip;
|
||||||
|
const auto top = _playback.icon.y()
|
||||||
|
- st::pipPlaybackFont->height
|
||||||
|
+ st::pipPlaybackFont->ascent;
|
||||||
|
|
||||||
|
p.setFont(st::pipPlaybackFont);
|
||||||
|
p.setPen(st::mediaviewPipControlsFgOver);
|
||||||
|
p.drawText(left, top, _timeAlready);
|
||||||
|
p.drawText(right - _timeLeftWidth, top, _timeLeft);
|
||||||
|
}
|
||||||
|
|
||||||
void Pip::handleStreamingUpdate(Streaming::Update &&update) {
|
void Pip::handleStreamingUpdate(Streaming::Update &&update) {
|
||||||
using namespace Streaming;
|
using namespace Streaming;
|
||||||
|
|
||||||
|
@ -1168,6 +1187,32 @@ void Pip::updatePlaybackState() {
|
||||||
}
|
}
|
||||||
const auto playFrequency = state.frequency;
|
const auto playFrequency = state.frequency;
|
||||||
_lastDurationMs = (state.length * crl::time(1000)) / playFrequency;
|
_lastDurationMs = (state.length * crl::time(1000)) / playFrequency;
|
||||||
|
|
||||||
|
if (_seekPositionMs < 0) {
|
||||||
|
updatePlaybackTexts(position, state.length, playFrequency);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Pip::updatePlaybackTexts(
|
||||||
|
int64 position,
|
||||||
|
int64 length,
|
||||||
|
int64 frequency) {
|
||||||
|
const auto playAlready = position / frequency;
|
||||||
|
const auto playLeft = (length / frequency) - playAlready;
|
||||||
|
const auto already = formatDurationText(playAlready);
|
||||||
|
const auto minus = QChar(8722);
|
||||||
|
const auto left = minus + formatDurationText(playLeft);
|
||||||
|
if (_timeAlready == already && _timeLeft == left) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_timeAlready = already;
|
||||||
|
_timeLeft = left;
|
||||||
|
_timeLeftWidth = st::pipPlaybackFont->width(_timeLeft);
|
||||||
|
_panel.update(QRect(
|
||||||
|
_playback.area.x(),
|
||||||
|
_playback.icon.y() - st::pipPlaybackFont->height,
|
||||||
|
_playback.area.width(),
|
||||||
|
st::pipPlaybackFont->height));
|
||||||
}
|
}
|
||||||
|
|
||||||
void Pip::handleStreamingError(Streaming::Error &&error) {
|
void Pip::handleStreamingError(Streaming::Error &&error) {
|
||||||
|
|
|
@ -169,6 +169,7 @@ private:
|
||||||
[[nodiscard]] OverState activeState() const;
|
[[nodiscard]] OverState activeState() const;
|
||||||
[[nodiscard]] float64 activeValue(const Button &button) const;
|
[[nodiscard]] float64 activeValue(const Button &button) const;
|
||||||
void updateActiveState(OverState was);
|
void updateActiveState(OverState was);
|
||||||
|
void updatePlaybackTexts(int64 position, int64 length, int64 frequency);
|
||||||
|
|
||||||
void handleMouseMove(QPoint position);
|
void handleMouseMove(QPoint position);
|
||||||
void handleMousePress(QPoint position, Qt::MouseButton button);
|
void handleMousePress(QPoint position, Qt::MouseButton button);
|
||||||
|
@ -181,6 +182,7 @@ private:
|
||||||
void paintFade(QPainter &p) const;
|
void paintFade(QPainter &p) const;
|
||||||
void paintButtons(QPainter &p) const;
|
void paintButtons(QPainter &p) const;
|
||||||
void paintPlayback(QPainter &p) const;
|
void paintPlayback(QPainter &p) const;
|
||||||
|
void paintPlaybackTexts(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;
|
||||||
|
@ -200,6 +202,8 @@ private:
|
||||||
bool _showPause = false;
|
bool _showPause = false;
|
||||||
bool _startPaused = false;
|
bool _startPaused = false;
|
||||||
bool _pausedBySeek = false;
|
bool _pausedBySeek = false;
|
||||||
|
QString _timeAlready, _timeLeft;
|
||||||
|
int _timeLeftWidth = 0;
|
||||||
crl::time _seekPositionMs = -1;
|
crl::time _seekPositionMs = -1;
|
||||||
crl::time _lastDurationMs = 0;
|
crl::time _lastDurationMs = 0;
|
||||||
OverState _over = OverState::None;
|
OverState _over = OverState::None;
|
||||||
|
|
Loading…
Reference in New Issue