2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-04-06 17:38:10 +03:00
|
|
|
#include "boxes/abstract_box.h"
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-10-28 12:20:24 +03:00
|
|
|
namespace Ui {
|
|
|
|
class Checkbox;
|
2016-11-16 13:44:06 +03:00
|
|
|
class FlatLabel;
|
2017-12-05 12:43:18 +04:00
|
|
|
class EmptyUserpic;
|
2016-10-28 12:20:24 +03:00
|
|
|
} // namespace Ui
|
|
|
|
|
2015-10-03 13:09:09 +03:00
|
|
|
class InformBox;
|
2016-12-13 20:07:56 +03:00
|
|
|
class ConfirmBox : public BoxContent, public ClickHandlerHost {
|
2014-05-30 12:53:19 +04:00
|
|
|
public:
|
2018-06-04 18:35:11 +03:00
|
|
|
ConfirmBox(QWidget*, const QString &text, FnMut<void()> confirmedCallback = FnMut<void()>(), FnMut<void()> cancelledCallback = FnMut<void()>());
|
|
|
|
ConfirmBox(QWidget*, const QString &text, const QString &confirmText, FnMut<void()> confirmedCallback = FnMut<void()>(), FnMut<void()> cancelledCallback = FnMut<void()>());
|
|
|
|
ConfirmBox(QWidget*, const QString &text, const QString &confirmText, const style::RoundButton &confirmStyle, FnMut<void()> confirmedCallback = FnMut<void()>(), FnMut<void()> cancelledCallback = FnMut<void()>());
|
|
|
|
ConfirmBox(QWidget*, const QString &text, const QString &confirmText, const QString &cancelText, FnMut<void()> confirmedCallback = FnMut<void()>(), FnMut<void()> cancelledCallback = FnMut<void()>());
|
|
|
|
ConfirmBox(QWidget*, const QString &text, const QString &confirmText, const style::RoundButton &confirmStyle, const QString &cancelText, FnMut<void()> confirmedCallback = FnMut<void()>(), FnMut<void()> cancelledCallback = FnMut<void()>());
|
|
|
|
ConfirmBox(QWidget*, const TextWithEntities &text, const QString &confirmText, FnMut<void()> confirmedCallback = nullptr, FnMut<void()> cancelledCallback = nullptr);
|
2016-08-16 19:53:10 +03:00
|
|
|
|
2014-12-05 16:44:27 +03:00
|
|
|
void updateLink();
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
// If strict cancel is set the cancelledCallback is only called if the cancel button was pressed.
|
|
|
|
void setStrictCancel(bool strictCancel) {
|
|
|
|
_strictCancel = strictCancel;
|
2016-08-12 18:22:11 +03:00
|
|
|
}
|
|
|
|
|
2018-05-30 18:08:12 +03:00
|
|
|
void setMaxLineCount(int count);
|
|
|
|
|
2016-03-29 20:17:00 +03:00
|
|
|
// ClickHandlerHost interface
|
2016-08-16 19:53:10 +03:00
|
|
|
void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override;
|
|
|
|
void clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) override;
|
2016-03-29 20:17:00 +03:00
|
|
|
|
2015-04-02 13:33:19 +03:00
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 19:53:10 +03:00
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
|
|
|
void mouseReleaseEvent(QMouseEvent *e) override;
|
2017-02-11 14:24:37 +03:00
|
|
|
void leaveEventHook(QEvent *e) override;
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
private:
|
2016-12-13 20:07:56 +03:00
|
|
|
struct InformBoxTag {
|
|
|
|
};
|
2018-06-04 18:35:11 +03:00
|
|
|
ConfirmBox(const InformBoxTag &, const QString &text, const QString &doneText, Fn<void()> closedCallback);
|
|
|
|
ConfirmBox(const InformBoxTag &, const TextWithEntities &text, const QString &doneText, Fn<void()> closedCallback);
|
|
|
|
FnMut<void()> generateInformCallback(Fn<void()> closedCallback);
|
2015-10-03 13:09:09 +03:00
|
|
|
friend class InformBox;
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
void confirmed();
|
2014-12-05 16:44:27 +03:00
|
|
|
void init(const QString &text);
|
2018-04-18 19:42:02 +04:00
|
|
|
void init(const TextWithEntities &text);
|
2016-12-13 20:07:56 +03:00
|
|
|
void textUpdated();
|
2018-05-30 18:08:12 +03:00
|
|
|
void updateHover();
|
2014-12-05 16:44:27 +03:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
QString _confirmText;
|
|
|
|
QString _cancelText;
|
|
|
|
const style::RoundButton &_confirmStyle;
|
|
|
|
bool _informative = false;
|
2014-12-05 16:44:27 +03:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
Text _text;
|
2016-12-13 20:07:56 +03:00
|
|
|
int _textWidth = 0;
|
|
|
|
int _textHeight = 0;
|
2018-05-30 18:08:12 +03:00
|
|
|
int _maxLineCount = 16;
|
2014-12-05 16:44:27 +03:00
|
|
|
|
|
|
|
QPoint _lastMousePos;
|
2015-10-03 13:09:09 +03:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
bool _confirmed = false;
|
|
|
|
bool _cancelled = false;
|
|
|
|
bool _strictCancel = false;
|
2018-06-04 18:35:11 +03:00
|
|
|
FnMut<void()> _confirmedCallback;
|
|
|
|
FnMut<void()> _cancelledCallback;
|
2016-08-12 18:22:11 +03:00
|
|
|
|
2015-10-03 13:09:09 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class InformBox : public ConfirmBox {
|
|
|
|
public:
|
2018-06-04 18:35:11 +03:00
|
|
|
InformBox(QWidget*, const QString &text, Fn<void()> closedCallback = nullptr);
|
|
|
|
InformBox(QWidget*, const QString &text, const QString &doneText, Fn<void()> closedCallback = nullptr);
|
|
|
|
InformBox(QWidget*, const TextWithEntities &text, Fn<void()> closedCallback = nullptr);
|
2018-06-04 21:18:52 +03:00
|
|
|
InformBox(QWidget*, const TextWithEntities &text, const QString &doneText, Fn<void()> closedCallback = nullptr);
|
2016-08-16 19:53:10 +03:00
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
};
|
2015-09-10 14:20:28 +03:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
class MaxInviteBox : public BoxContent {
|
2015-09-23 20:43:08 +03:00
|
|
|
public:
|
2017-08-17 11:31:24 +03:00
|
|
|
MaxInviteBox(QWidget*, not_null<ChannelData*> channel);
|
2016-03-05 00:04:15 +02:00
|
|
|
|
2015-09-23 20:43:08 +03:00
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 19:53:10 +03:00
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *e) override;
|
|
|
|
void mousePressEvent(QMouseEvent *e) override;
|
2017-02-11 14:24:37 +03:00
|
|
|
void leaveEventHook(QEvent *e) override;
|
2015-09-23 20:43:08 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
void updateSelected(const QPoint &cursorGlobalPosition);
|
|
|
|
|
2017-08-17 11:31:24 +03:00
|
|
|
not_null<ChannelData*> _channel;
|
2017-07-14 15:28:08 +03:00
|
|
|
|
2015-09-23 20:43:08 +03:00
|
|
|
Text _text;
|
|
|
|
int32 _textWidth, _textHeight;
|
|
|
|
|
|
|
|
QRect _invitationLink;
|
2016-12-07 16:32:25 +03:00
|
|
|
bool _linkOver = false;
|
2015-09-23 20:43:08 +03:00
|
|
|
|
|
|
|
QPoint _lastMousePos;
|
|
|
|
|
|
|
|
};
|
2016-03-05 00:04:15 +02:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
class ConvertToSupergroupBox : public BoxContent, public RPCSender {
|
2016-03-05 00:04:15 +02:00
|
|
|
public:
|
2016-12-13 20:07:56 +03:00
|
|
|
ConvertToSupergroupBox(QWidget*, ChatData *chat);
|
2016-03-05 00:04:15 +02:00
|
|
|
|
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 19:53:10 +03:00
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
2016-03-05 00:04:15 +02:00
|
|
|
|
|
|
|
private:
|
2016-12-13 20:07:56 +03:00
|
|
|
void convertToSupergroup();
|
2016-03-05 00:04:15 +02:00
|
|
|
void convertDone(const MTPUpdates &updates);
|
|
|
|
bool convertFail(const RPCError &error);
|
|
|
|
|
|
|
|
ChatData *_chat;
|
|
|
|
Text _text, _note;
|
|
|
|
int32 _textWidth, _textHeight;
|
|
|
|
|
2016-03-10 13:15:21 +03:00
|
|
|
};
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
class PinMessageBox : public BoxContent, public RPCSender {
|
2016-03-10 13:15:21 +03:00
|
|
|
public:
|
2016-12-13 20:07:56 +03:00
|
|
|
PinMessageBox(QWidget*, ChannelData *channel, MsgId msgId);
|
2016-03-10 13:15:21 +03:00
|
|
|
|
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 19:53:10 +03:00
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2017-01-02 21:11:49 +04:00
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
2016-03-10 13:15:21 +03:00
|
|
|
|
|
|
|
private:
|
2016-12-13 20:07:56 +03:00
|
|
|
void pinMessage();
|
2016-03-10 13:15:21 +03:00
|
|
|
void pinDone(const MTPUpdates &updates);
|
|
|
|
bool pinFail(const RPCError &error);
|
|
|
|
|
|
|
|
ChannelData *_channel;
|
|
|
|
MsgId _msgId;
|
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::FlatLabel> _text;
|
2017-11-21 17:23:56 +04:00
|
|
|
object_ptr<Ui::Checkbox> _notify = { nullptr };
|
2016-03-10 13:15:21 +03:00
|
|
|
|
2016-05-31 22:27:11 +03:00
|
|
|
mtpRequestId _requestId = 0;
|
2016-03-10 13:15:21 +03:00
|
|
|
|
2016-03-10 18:42:01 +03:00
|
|
|
};
|
|
|
|
|
2016-12-31 19:19:22 +04:00
|
|
|
class DeleteMessagesBox : public BoxContent, public RPCSender {
|
2016-03-10 18:42:01 +03:00
|
|
|
public:
|
2017-11-24 20:28:14 +04:00
|
|
|
DeleteMessagesBox(
|
|
|
|
QWidget*,
|
|
|
|
not_null<HistoryItem*> item,
|
|
|
|
bool suggestModerateActions);
|
2017-12-06 14:13:38 +04:00
|
|
|
DeleteMessagesBox(QWidget*, MessageIdsList &&selected);
|
2016-03-10 18:42:01 +03:00
|
|
|
|
2018-06-04 18:35:11 +03:00
|
|
|
void setDeleteConfirmedCallback(Fn<void()> callback) {
|
2018-01-26 18:40:11 +03:00
|
|
|
_deleteConfirmedCallback = std::move(callback);
|
|
|
|
}
|
|
|
|
|
2016-03-10 18:42:01 +03:00
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-08-16 19:53:10 +03:00
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
2017-01-02 21:11:49 +04:00
|
|
|
void keyPressEvent(QKeyEvent *e) override;
|
2016-03-10 18:42:01 +03:00
|
|
|
|
|
|
|
private:
|
2016-12-13 20:07:56 +03:00
|
|
|
void deleteAndClear();
|
|
|
|
|
2017-12-06 14:13:38 +04:00
|
|
|
const MessageIdsList _ids;
|
2017-11-24 20:28:14 +04:00
|
|
|
const bool _singleItem = false;
|
2016-12-31 19:19:22 +04:00
|
|
|
UserData *_moderateFrom = nullptr;
|
|
|
|
ChannelData *_moderateInChannel = nullptr;
|
2017-06-04 14:09:29 +03:00
|
|
|
bool _moderateBan = false;
|
|
|
|
bool _moderateDeleteAll = false;
|
2016-03-10 18:42:01 +03:00
|
|
|
|
2016-12-31 19:19:22 +04:00
|
|
|
object_ptr<Ui::FlatLabel> _text = { nullptr };
|
|
|
|
object_ptr<Ui::Checkbox> _forEveryone = { nullptr };
|
|
|
|
object_ptr<Ui::Checkbox> _banUser = { nullptr };
|
|
|
|
object_ptr<Ui::Checkbox> _reportSpam = { nullptr };
|
|
|
|
object_ptr<Ui::Checkbox> _deleteAll = { nullptr };
|
2016-06-20 18:40:36 +03:00
|
|
|
|
2018-06-04 18:35:11 +03:00
|
|
|
Fn<void()> _deleteConfirmedCallback;
|
2018-01-26 18:40:11 +03:00
|
|
|
|
2016-06-20 18:40:36 +03:00
|
|
|
};
|
2016-07-08 19:59:46 +03:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
class ConfirmInviteBox : public BoxContent, public RPCSender {
|
2016-07-08 19:59:46 +03:00
|
|
|
public:
|
2017-06-02 14:46:02 +03:00
|
|
|
ConfirmInviteBox(QWidget*, const QString &title, bool isChannel, const MTPChatPhoto &photo, int count, const QVector<UserData*> &participants);
|
2017-12-05 12:43:18 +04:00
|
|
|
~ConfirmInviteBox();
|
2016-07-08 19:59:46 +03:00
|
|
|
|
|
|
|
protected:
|
2016-12-13 20:07:56 +03:00
|
|
|
void prepare() override;
|
|
|
|
|
2016-07-08 19:59:46 +03:00
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
|
|
|
|
private:
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::FlatLabel> _title;
|
|
|
|
object_ptr<Ui::FlatLabel> _status;
|
2016-07-08 19:59:46 +03:00
|
|
|
ImagePtr _photo;
|
2017-12-05 12:43:18 +04:00
|
|
|
std::unique_ptr<Ui::EmptyUserpic> _photoEmpty;
|
2016-07-08 19:59:46 +03:00
|
|
|
QVector<UserData*> _participants;
|
|
|
|
|
|
|
|
int _userWidth = 0;
|
|
|
|
|
|
|
|
};
|