init
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
Close stale issues and PRs / stale (push) Has been cancelled
This commit is contained in:
78
Telegram/SourceFiles/ui/resize_area.h
Normal file
78
Telegram/SourceFiles/ui/resize_area.h
Normal file
@@ -0,0 +1,78 @@
|
||||
/*
|
||||
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 "ui/rp_widget.h"
|
||||
|
||||
namespace Ui {
|
||||
|
||||
class ResizeArea : public RpWidget {
|
||||
public:
|
||||
ResizeArea(QWidget *parent) : RpWidget(parent) {
|
||||
setCursor(style::cur_sizehor);
|
||||
}
|
||||
|
||||
rpl::producer<int> moveLeft() const {
|
||||
return _moveLeft.events();
|
||||
}
|
||||
template <typename Callback>
|
||||
void addMoveLeftCallback(Callback &&callback) {
|
||||
moveLeft(
|
||||
) | rpl::on_next(
|
||||
std::forward<Callback>(callback),
|
||||
lifetime());
|
||||
}
|
||||
|
||||
rpl::producer<> moveFinished() const {
|
||||
return _moveFinished.events();
|
||||
}
|
||||
template <typename Callback>
|
||||
void addMoveFinishedCallback(Callback &&callback) {
|
||||
moveFinished(
|
||||
) | rpl::on_next(
|
||||
std::forward<Callback>(callback),
|
||||
lifetime());
|
||||
}
|
||||
|
||||
~ResizeArea() {
|
||||
moveFinish();
|
||||
}
|
||||
|
||||
protected:
|
||||
void mousePressEvent(QMouseEvent *e) override {
|
||||
if (e->button() == Qt::LeftButton) {
|
||||
_moving = true;
|
||||
_moveStartLeft = e->pos().x();
|
||||
}
|
||||
}
|
||||
void mouseReleaseEvent(QMouseEvent *e) override {
|
||||
if (e->button() == Qt::LeftButton) {
|
||||
moveFinish();
|
||||
}
|
||||
}
|
||||
void mouseMoveEvent(QMouseEvent *e) override {
|
||||
if (_moving) {
|
||||
_moveLeft.fire(e->globalPos().x() - _moveStartLeft);
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
void moveFinish() {
|
||||
if (base::take(_moving)) {
|
||||
_moveFinished.fire({});
|
||||
}
|
||||
}
|
||||
|
||||
rpl::event_stream<int> _moveLeft;
|
||||
rpl::event_stream<> _moveFinished;
|
||||
int _moveStartLeft = 0;
|
||||
bool _moving = false;
|
||||
|
||||
};
|
||||
|
||||
} // namespace Ui
|
||||
Reference in New Issue
Block a user