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

217 lines
5.4 KiB
C
Raw Normal View History

/*
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
#include "media/streaming/media_streaming_instance.h"
2020-01-03 13:22:59 +00:00
#include "ui/effects/animations.h"
#include "ui/round_rect.h"
#include "ui/rp_widget.h"
#include <QtCore/QPointer>
2020-01-28 11:48:29 +00:00
namespace Ui {
class IconButton;
template <typename Widget>
class FadeWrap;
} // namespace Ui
namespace Media {
2020-01-28 11:48:29 +00:00
namespace Player {
struct TrackState;
} // namespace Player
namespace View {
2020-02-03 14:19:58 +00:00
class PlaybackProgress;
#if defined Q_OS_MAC && !defined OS_MAC_OLD
#define USE_OPENGL_OVERLAY_WIDGET
#endif // Q_OS_MAC && !OS_MAC_OLD
#ifdef USE_OPENGL_OVERLAY_WIDGET
using PipParent = Ui::RpWidgetWrap<QOpenGLWidget>;
#else // USE_OPENGL_OVERLAY_WIDGET
using PipParent = Ui::RpWidget;
#endif // USE_OPENGL_OVERLAY_WIDGET
class PipPanel final : public PipParent {
public:
struct Position {
RectParts attached = RectPart(0);
RectParts snapped = RectPart(0);
QRect geometry;
QRect screen;
};
using FrameRequest = Streaming::FrameRequest;
PipPanel(
QWidget *parent,
2020-01-06 19:50:03 +00:00
Fn<void(QPainter&, FrameRequest)> paint);
void setAspectRatio(QSize ratio);
[[nodiscard]] Position countPosition() const;
void setPosition(Position position);
[[nodiscard]] QRect inner() const;
[[nodiscard]] RectParts attached() const;
[[nodiscard]] bool dragging() const;
2020-01-29 13:16:22 +00:00
[[nodiscard]] rpl::producer<> saveGeometryRequests() const;
protected:
void paintEvent(QPaintEvent *e) override;
void mousePressEvent(QMouseEvent *e) override;
void mouseReleaseEvent(QMouseEvent *e) override;
void mouseMoveEvent(QMouseEvent *e) override;
private:
void setPositionDefault();
void setPositionOnScreen(Position position, QRect available);
2020-01-06 19:50:03 +00:00
QScreen *myScreen() const;
2020-01-29 13:16:22 +00:00
void processDrag(QPoint point);
2020-01-03 13:22:59 +00:00
void finishDrag(QPoint point);
void updatePositionAnimated();
2020-01-06 19:50:03 +00:00
void updateOverState(QPoint point);
2020-01-03 13:22:59 +00:00
void moveAnimated(QPoint to);
2020-01-29 13:16:22 +00:00
void updateDecorations();
QPointer<QWidget> _parent;
2020-01-06 19:50:03 +00:00
Fn<void(QPainter&, FrameRequest)> _paint;
RectParts _attached = RectParts();
2020-01-29 13:16:22 +00:00
RectParts _snapped = RectParts();
QSize _ratio;
2020-01-29 08:58:07 +00:00
bool _useTransparency = true;
style::margins _padding;
2020-01-06 19:50:03 +00:00
RectPart _overState = RectPart();
std::optional<RectPart> _pressState;
QPoint _pressPoint;
2020-01-29 13:16:22 +00:00
QRect _dragStartGeometry;
std::optional<RectPart> _dragState;
rpl::event_stream<> _saveGeometryRequests;
2020-01-03 13:22:59 +00:00
QPoint _positionAnimationFrom;
QPoint _positionAnimationTo;
Ui::Animations::Simple _positionAnimation;
};
class Pip final {
public:
2020-01-29 08:58:07 +00:00
class Delegate {
public:
virtual void pipSaveGeometry(QByteArray geometry) = 0;
[[nodiscard]] virtual QByteArray pipLoadGeometry() = 0;
[[nodiscard]] virtual float64 pipPlaybackSpeed() = 0;
[[nodiscard]] virtual QWidget *pipParentWidget() = 0;
};
Pip(
2020-01-29 08:58:07 +00:00
not_null<Delegate*> delegate,
not_null<DocumentData*> document,
FullMsgId contextId,
std::shared_ptr<Streaming::Document> shared,
FnMut<void()> closeAndContinue,
FnMut<void()> destroy);
2020-02-03 14:19:58 +00:00
~Pip();
private:
enum class OverState {
None,
Close,
Enlarge,
Playback,
Other,
};
enum class ThumbState {
Empty,
Inline,
Thumb,
Good,
Cover,
};
struct Button {
QRect area;
QRect icon;
OverState state = OverState::None;
Ui::Animations::Simple active;
};
using FrameRequest = Streaming::FrameRequest;
void setupPanel();
2020-01-29 08:58:07 +00:00
void setupButtons();
void setupStreaming();
2020-01-06 19:50:03 +00:00
void paint(QPainter &p, FrameRequest request);
void playbackPauseResume();
void waitingAnimationCallback();
void handleStreamingUpdate(Streaming::Update &&update);
void handleStreamingError(Streaming::Error &&error);
2020-01-29 08:58:07 +00:00
void saveGeometry();
2020-01-28 11:48:29 +00:00
void updatePlaybackState();
void updatePlayPauseResumeState(const Player::TrackState &state);
void restartAtSeekPosition(crl::time position);
[[nodiscard]] QImage videoFrame(const FrameRequest &request) const;
[[nodiscard]] QImage videoFrameForDirectPaint(
const FrameRequest &request) const;
[[nodiscard]] OverState computeState(QPoint position) const;
void setOverState(OverState state);
void handleMouseMove(QPoint position);
void handleMousePress(Qt::MouseButton button);
void handleMouseRelease(Qt::MouseButton button);
void handleDoubleClick(Qt::MouseButton button);
void handleLeave();
void handleClose();
2020-02-03 14:19:58 +00:00
void paintControls(QPainter &p) const;
void paintFade(QPainter &p) const;
void paintButtons(QPainter &p) const;
void paintPlayback(QPainter &p) const;
2020-02-03 12:38:00 +00:00
void paintRadialLoading(QPainter &p) const;
void paintRadialLoadingContent(QPainter &p, const QRect &inner) const;
[[nodiscard]] QRect countRadialRect() const;
2020-01-29 08:58:07 +00:00
const not_null<Delegate*> _delegate;
not_null<DocumentData*> _document;
FullMsgId _contextId;
Streaming::Instance _instance;
PipPanel _panel;
QSize _size;
2020-02-03 14:19:58 +00:00
std::unique_ptr<PlaybackProgress> _playbackProgress;
2020-01-07 14:30:49 +00:00
2020-01-28 11:48:29 +00:00
bool _showPause = false;
OverState _over = OverState::None;
std::optional<OverState> _pressed;
std::optional<OverState> _lastHandledPress;
Button _close;
Button _enlarge;
Button _playback;
Button _play;
Ui::Animations::Simple _controlsShown;
Ui::RoundRect _roundRect;
2020-01-28 11:48:29 +00:00
FnMut<void()> _closeAndContinue;
FnMut<void()> _destroy;
2020-01-07 14:30:49 +00:00
#ifdef USE_OPENGL_OVERLAY_WIDGET
mutable QImage _frameForDirectPaint;
2020-02-03 12:38:00 +00:00
mutable QImage _radialCache;
2020-01-07 14:30:49 +00:00
#endif // USE_OPENGL_OVERLAY_WIDGET
mutable QImage _preparedCoverStorage;
mutable FrameRequest _preparedCoverRequest;
mutable ThumbState _preparedCoverState;
};
} // namespace View
} // namespace Media