2014-05-30 08:53:19 +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.
|
2014-05-30 08:53:19 +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
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-04-06 14:38:10 +00:00
|
|
|
#include "boxes/abstract_box.h"
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2019-09-18 11:19:05 +00:00
|
|
|
class PhotoCropBox : public Ui::BoxContent {
|
2014-05-30 08:53:19 +00:00
|
|
|
public:
|
2018-12-23 17:23:36 +00:00
|
|
|
PhotoCropBox(QWidget*, const QImage &img, const QString &title);
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 mouseState(QPoint p);
|
|
|
|
|
2017-11-21 09:20:56 +00:00
|
|
|
rpl::producer<QImage> ready() const;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
protected:
|
2016-12-13 17:07:56 +00:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 16:53:10 +00:00
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
2015-04-02 10:33:19 +00:00
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
private:
|
2016-12-13 17:07:56 +00:00
|
|
|
void sendPhoto();
|
2015-11-09 09:51:22 +00:00
|
|
|
|
2015-09-16 13:04:08 +00:00
|
|
|
QString _title;
|
2016-12-13 17:07:56 +00:00
|
|
|
int32 _downState = 0;
|
2015-04-02 10:33:19 +00:00
|
|
|
int32 _thumbx, _thumby, _thumbw, _thumbh;
|
2014-05-30 08:53:19 +00:00
|
|
|
int32 _cropx, _cropy, _cropw;
|
|
|
|
int32 _fromposx, _fromposy, _fromcropx, _fromcropy, _fromcropw;
|
|
|
|
QImage _img;
|
|
|
|
QPixmap _thumb;
|
2016-11-24 19:28:23 +00:00
|
|
|
QImage _mask, _fade;
|
2017-11-13 12:02:53 +00:00
|
|
|
rpl::event_stream<QImage> _readyImages;
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
};
|