From 8f290451b6e5f943e817e453f6c3965f4f5c3a27 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 23 May 2017 17:40:25 +0300 Subject: [PATCH] Handle mouse clicks in floating player widget. --- .../media/player/media_player_float.cpp | 24 +++++++++++++++++++ .../media/player/media_player_float.h | 9 ++++++- 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/Telegram/SourceFiles/media/player/media_player_float.cpp b/Telegram/SourceFiles/media/player/media_player_float.cpp index d544c6f6e..0c4bc4dd7 100644 --- a/Telegram/SourceFiles/media/player/media_player_float.cpp +++ b/Telegram/SourceFiles/media/player/media_player_float.cpp @@ -50,6 +50,30 @@ Float::Float(QWidget *parent, HistoryItem *item, base::lambdagetMedia()) { + media->playInline(); + } + } +} + +void Float::mouseDoubleClickEvent(QMouseEvent *e) { + if (_item) { + // Handle second click. + if (auto media = _item->getMedia()) { + media->playInline(); + } + Ui::showPeerHistoryAtItem(_item); + } } void Float::detach() { diff --git a/Telegram/SourceFiles/media/player/media_player_float.h b/Telegram/SourceFiles/media/player/media_player_float.h index c03c7f1cf..675df3f15 100644 --- a/Telegram/SourceFiles/media/player/media_player_float.h +++ b/Telegram/SourceFiles/media/player/media_player_float.h @@ -42,6 +42,9 @@ public: bool detached() const { return !_item; } + void resetMouseState() { + _down = false; + } void ui_repaintHistoryItem(const HistoryItem *item) { if (item == _item) { repaintItem(); @@ -49,7 +52,10 @@ public: } protected: - void paintEvent(QPaintEvent *e); + void paintEvent(QPaintEvent *e) override; + void mousePressEvent(QMouseEvent *e) override; + void mouseReleaseEvent(QMouseEvent *e) override; + void mouseDoubleClickEvent(QMouseEvent *e) override; private: Clip::Reader *getReader() const; @@ -67,6 +73,7 @@ private: QPixmap _shadow; QImage _frame; + bool _down = false; std::unique_ptr _roundPlayback;