/* 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 "boxes/abstract_box.h" #include "base/timer.h" #include "mtproto/sender.h" class PeerListBox; namespace Window { class SessionNavigation; } // namespace Window namespace Main { class Session; } // namespace Main namespace Ui { class ConfirmBox; class FlatLabel; class InputField; class PhoneInput; class UsernameInput; class Checkbox; template class RadioenumGroup; template class Radioenum; class LinkButton; class UserpicButton; } // namespace Ui constexpr auto kMaxBioLength = 70; enum class PeerFloodType { Send, InviteGroup, InviteChannel, }; [[nodiscard]] style::InputField CreateBioFieldStyle(); [[nodiscard]] QString PeerFloodErrorText( not_null session, PeerFloodType type); void ShowAddParticipantsError( const QString &error, not_null chat, const std::vector> &users); class AddContactBox : public Ui::BoxContent { public: AddContactBox(QWidget*, not_null session); AddContactBox( QWidget*, not_null session, QString fname, QString lname, QString phone); protected: void prepare() override; void paintEvent(QPaintEvent *e) override; void resizeEvent(QResizeEvent *e) override; void setInnerFocus() override; private: void submit(); void retry(); void save(); void updateButtons(); const not_null _session; object_ptr _first; object_ptr _last; object_ptr _phone; bool _retrying = false; bool _invertOrder = false; uint64 _contactId = 0; mtpRequestId _addRequest = 0; QString _sentName; }; class GroupInfoBox : public Ui::BoxContent { public: enum class Type { Group, Channel, Megagroup, }; GroupInfoBox( QWidget*, not_null navigation, Type type, const QString &title = QString(), Fn)> channelDone = nullptr); protected: void prepare() override; void setInnerFocus() override; void resizeEvent(QResizeEvent *e) override; private: void createChannel(const QString &title, const QString &description); void createGroup( not_null selectUsersBox, const QString &title, const std::vector> &users); void submitName(); void submit(); void checkInviteLink(); void channelReady(); void descriptionResized(); void updateMaxHeight(); const not_null _navigation; MTP::Sender _api; Type _type = Type::Group; QString _initialTitle; Fn)> _channelDone; object_ptr _photo = { nullptr }; object_ptr _title = { nullptr }; object_ptr _description = { nullptr }; // group / channel creation mtpRequestId _creationRequestId = 0; bool _creatingInviteLink = false; ChannelData *_createdChannel = nullptr; }; class SetupChannelBox final : public Ui::BoxContent { public: SetupChannelBox( QWidget*, not_null navigation, not_null channel, bool existing = false); void setInnerFocus() override; protected: void prepare() override; void keyPressEvent(QKeyEvent *e) 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: enum class Privacy { Public, Private, }; enum class UsernameResult { Ok, Invalid, Occupied, ChatsTooMuch, NA, Unknown, }; [[nodiscard]] UsernameResult parseError(const QString &error); void privacyChanged(Privacy value); void updateSelected(const QPoint &cursorGlobalPosition); void handleChange(); void check(); void save(); void updateFail(UsernameResult result); void checkFail(UsernameResult result); void firstCheckFail(UsernameResult result); void updateMaxHeight(); void showRevokePublicLinkBoxForEdit(); const not_null _navigation; const not_null _channel; MTP::Sender _api; bool _existing = false; bool _creatingInviteLink = false; std::shared_ptr> _privacyGroup; object_ptr> _public; object_ptr> _private; int32 _aboutPublicWidth, _aboutPublicHeight; Ui::Text::String _aboutPublic, _aboutPrivate; object_ptr _link; QRect _invitationLink; bool _linkOver = false; bool _tooMuchUsernames = false; mtpRequestId _saveRequestId = 0; mtpRequestId _checkRequestId = 0; QString _sentUsername, _checkUsername, _errorText, _goodText; base::Timer _checkTimer; }; class EditNameBox : public Ui::BoxContent { public: EditNameBox(QWidget*, not_null user); protected: void setInnerFocus() override; void prepare() override; void resizeEvent(QResizeEvent *e) override; private: void submit(); void save(); void saveSelfFail(const QString &error); const not_null _user; MTP::Sender _api; object_ptr _first; object_ptr _last; bool _invertOrder = false; mtpRequestId _requestId = 0; QString _sentName; }; class RevokePublicLinkBox final : public Ui::BoxContent { public: RevokePublicLinkBox( QWidget*, not_null session, Fn revokeCallback); protected: void prepare() override; void resizeEvent(QResizeEvent *e) override; private: const not_null _session; object_ptr _aboutRevoke; class Inner; QPointer _inner; int _innerTop = 0; Fn _revokeCallback; };