mirror of https://github.com/procxx/kepka.git
Handle mouse clicks in floating player widget.
This commit is contained in:
parent
c58a48276f
commit
8f290451b6
|
@ -50,6 +50,30 @@ Float::Float(QWidget *parent, HistoryItem *item, base::lambda<void(bool visible)
|
|||
detach();
|
||||
}
|
||||
});
|
||||
|
||||
setCursor(style::cur_pointer);
|
||||
}
|
||||
|
||||
void Float::mousePressEvent(QMouseEvent *e) {
|
||||
_down = true;
|
||||
}
|
||||
|
||||
void Float::mouseReleaseEvent(QMouseEvent *e) {
|
||||
if (_down && _item) {
|
||||
if (auto media = _item->getMedia()) {
|
||||
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() {
|
||||
|
|
|
@ -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<Clip::Playback> _roundPlayback;
|
||||
|
||||
|
|
Loading…
Reference in New Issue