// // This file is part of Kepka, // an unofficial desktop version of Telegram messaging app, // see https://github.com/procxx/kepka // // Kepka is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // It is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // In addition, as a special exception, the copyright holders give permission // to link the code of portions of this program with the OpenSSL library. // // Full license: https://github.com/procxx/kepka/blob/master/LICENSE // Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org // Copyright (c) 2017- Kepka Contributors, https://github.com/procxx // #pragma once #include "boxes/abstract_box.h" #include "history/history.h" namespace Ui { class Checkbox; class FlatLabel; } // namespace Ui class InformBox; class ConfirmBox : public BoxContent, public ClickHandlerHost { public: ConfirmBox(QWidget *, const QString &text, FnMut confirmedCallback = FnMut(), FnMut cancelledCallback = FnMut()); ConfirmBox(QWidget *, const QString &text, const QString &confirmText, FnMut confirmedCallback = FnMut(), FnMut cancelledCallback = FnMut()); ConfirmBox(QWidget *, const QString &text, const QString &confirmText, const style::RoundButton &confirmStyle, FnMut confirmedCallback = FnMut(), FnMut cancelledCallback = FnMut()); ConfirmBox(QWidget *, const QString &text, const QString &confirmText, const QString &cancelText, FnMut confirmedCallback = FnMut(), FnMut cancelledCallback = FnMut()); ConfirmBox(QWidget *, const QString &text, const QString &confirmText, const style::RoundButton &confirmStyle, const QString &cancelText, FnMut confirmedCallback = FnMut(), FnMut cancelledCallback = FnMut()); void updateLink(); // If strict cancel is set the cancelledCallback is only called if the cancel button was pressed. void setStrictCancel(bool strictCancel) { _strictCancel = strictCancel; } // ClickHandlerHost interface void clickHandlerActiveChanged(const ClickHandlerPtr &p, bool active) override; void clickHandlerPressedChanged(const ClickHandlerPtr &p, bool pressed) override; protected: void prepare() override; 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; void leaveEventHook(QEvent *e) override; private: struct InformBoxTag {}; ConfirmBox(const InformBoxTag &, const QString &text, const QString &doneText, Fn closedCallback); FnMut generateInformCallback(Fn closedCallback); friend class InformBox; void confirmed(); void init(const QString &text); void textUpdated(); QString _confirmText; QString _cancelText; const style::RoundButton &_confirmStyle; bool _informative = false; Text _text; int _textWidth = 0; int _textHeight = 0; void updateHover(); QPoint _lastMousePos; bool _confirmed = false; bool _cancelled = false; bool _strictCancel = false; FnMut _confirmedCallback; FnMut _cancelledCallback; }; class InformBox : public ConfirmBox { public: InformBox(QWidget *, const QString &text, Fn closedCallback = Fn()); InformBox(QWidget *, const QString &text, const QString &doneText, Fn closedCallback = Fn()); }; class MaxInviteBox : public BoxContent { public: MaxInviteBox(QWidget *, not_null channel); protected: void prepare() override; void paintEvent(QPaintEvent *e) override; void resizeEvent(QResizeEvent *e) override; void mouseMoveEvent(QMouseEvent *e) override; void mousePressEvent(QMouseEvent *e) override; void leaveEventHook(QEvent *e) override; private: void updateSelected(const QPoint &cursorGlobalPosition); not_null _channel; Text _text; qint32 _textWidth, _textHeight; QRect _invitationLink; bool _linkOver = false; QPoint _lastMousePos; }; class ConvertToSupergroupBox : public BoxContent, public RPCSender { public: ConvertToSupergroupBox(QWidget *, ChatData *chat); protected: void prepare() override; void keyPressEvent(QKeyEvent *e) override; void paintEvent(QPaintEvent *e) override; private: void convertToSupergroup(); void convertDone(const MTPUpdates &updates); bool convertFail(const RPCError &error); ChatData *_chat; Text _text, _note; qint32 _textWidth, _textHeight; }; class PinMessageBox : public BoxContent, public RPCSender { public: PinMessageBox(QWidget *, ChannelData *channel, MsgId msgId); protected: void prepare() override; void resizeEvent(QResizeEvent *e) override; void keyPressEvent(QKeyEvent *e) override; private: void pinMessage(); void pinDone(const MTPUpdates &updates); bool pinFail(const RPCError &error); ChannelData *_channel; MsgId _msgId; object_ptr _text; object_ptr _notify = {nullptr}; mtpRequestId _requestId = 0; }; class DeleteMessagesBox : public BoxContent, public RPCSender { public: DeleteMessagesBox(QWidget *, HistoryItem *item, bool suggestModerateActions); DeleteMessagesBox(QWidget *, const SelectedItemSet &selected); protected: void prepare() override; void resizeEvent(QResizeEvent *e) override; void keyPressEvent(QKeyEvent *e) override; private: void deleteAndClear(); QVector _ids; bool _singleItem = false; UserData *_moderateFrom = nullptr; ChannelData *_moderateInChannel = nullptr; bool _moderateBan = false; bool _moderateDeleteAll = false; object_ptr _text = {nullptr}; object_ptr _forEveryone = {nullptr}; object_ptr _banUser = {nullptr}; object_ptr _reportSpam = {nullptr}; object_ptr _deleteAll = {nullptr}; }; class ConfirmInviteBox : public BoxContent, public RPCSender { public: ConfirmInviteBox(QWidget *, const QString &title, bool isChannel, const MTPChatPhoto &photo, int count, const QVector &participants); protected: void prepare() override; void resizeEvent(QResizeEvent *e) override; void paintEvent(QPaintEvent *e) override; private: object_ptr _title; object_ptr _status; ImagePtr _photo; EmptyUserpic _photoEmpty; QVector _participants; int _userWidth = 0; };