2017-11-12 15:41:00 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2017-11-12 15:41:00 +00:00
|
|
|
|
2018-01-03 10:23:14 +00:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2017-11-12 15:41:00 +00:00
|
|
|
*/
|
|
|
|
#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) {
|
2017-12-22 07:05:20 +00:00
|
|
|
moveLeft(
|
|
|
|
) | rpl::start_with_next(
|
|
|
|
std::forward<Callback>(callback),
|
|
|
|
lifetime());
|
2017-11-12 15:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rpl::producer<> moveFinished() const {
|
|
|
|
return _moveFinished.events();
|
|
|
|
}
|
|
|
|
template <typename Callback>
|
|
|
|
void addMoveFinishedCallback(Callback &&callback) {
|
2017-12-22 07:05:20 +00:00
|
|
|
moveFinished(
|
|
|
|
) | rpl::start_with_next(
|
|
|
|
std::forward<Callback>(callback),
|
|
|
|
lifetime());
|
2017-11-12 15:41:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~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
|