tdesktop/Telegram/SourceFiles/boxes/add_contact_box.h

278 lines
5.8 KiB
C
Raw Normal View History

/*
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
2017-04-06 14:38:10 +00:00
#include "boxes/abstract_box.h"
#include "base/timer.h"
2017-07-18 15:15:02 +00:00
#include "mtproto/sender.h"
class PeerListBox;
2019-07-25 18:55:11 +00:00
namespace Window {
class SessionNavigation;
} // namespace Window
2019-07-24 11:45:24 +00:00
namespace Main {
class Session;
} // namespace Main
namespace Ui {
2021-10-18 22:28:08 +00:00
class ConfirmBox;
class FlatLabel;
class InputField;
class PhoneInput;
class UsernameInput;
class Checkbox;
template <typename Enum>
class RadioenumGroup;
template <typename Enum>
class Radioenum;
class LinkButton;
class UserpicButton;
} // namespace Ui
2019-07-24 11:45:24 +00:00
constexpr auto kMaxBioLength = 70;
enum class PeerFloodType {
Send,
InviteGroup,
InviteChannel,
};
2019-07-24 11:45:24 +00:00
[[nodiscard]] style::InputField CreateBioFieldStyle();
2019-07-24 11:45:24 +00:00
[[nodiscard]] QString PeerFloodErrorText(
not_null<Main::Session*> session,
PeerFloodType type);
void ShowAddParticipantsError(
const QString &error,
not_null<PeerData*> chat,
const std::vector<not_null<UserData*>> &users);
2019-09-18 11:19:05 +00:00
class AddContactBox : public Ui::BoxContent {
public:
2019-07-24 11:45:24 +00:00
AddContactBox(QWidget*, not_null<Main::Session*> session);
2019-07-24 11:13:51 +00:00
AddContactBox(
QWidget*,
2019-07-24 11:45:24 +00:00
not_null<Main::Session*> session,
2019-07-24 11:13:51 +00:00
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();
2019-07-24 11:45:24 +00:00
const not_null<Main::Session*> _session;
object_ptr<Ui::InputField> _first;
object_ptr<Ui::InputField> _last;
object_ptr<Ui::PhoneInput> _phone;
bool _retrying = false;
bool _invertOrder = false;
uint64 _contactId = 0;
mtpRequestId _addRequest = 0;
QString _sentName;
};
2015-09-21 20:57:42 +00:00
2019-11-27 08:02:56 +00:00
class GroupInfoBox : public Ui::BoxContent {
2015-10-11 08:37:24 +00:00
public:
enum class Type {
Group,
Channel,
Megagroup,
};
GroupInfoBox(
QWidget*,
2019-07-25 18:55:11 +00:00
not_null<Window::SessionNavigation*> navigation,
Type type,
const QString &title = QString(),
Fn<void(not_null<ChannelData*>)> channelDone = nullptr);
protected:
void prepare() override;
void setInnerFocus() override;
void resizeEvent(QResizeEvent *e) override;
2015-10-11 08:37:24 +00:00
private:
void createChannel(const QString &title, const QString &description);
void createGroup(
not_null<PeerListBox*> selectUsersBox,
const QString &title,
const std::vector<not_null<PeerData*>> &users);
void submitName();
void submit();
void checkInviteLink();
void channelReady();
void descriptionResized();
2015-10-11 08:37:24 +00:00
void updateMaxHeight();
2019-07-25 18:55:11 +00:00
const not_null<Window::SessionNavigation*> _navigation;
2019-11-27 08:02:56 +00:00
MTP::Sender _api;
2019-07-24 11:13:51 +00:00
Type _type = Type::Group;
QString _initialTitle;
Fn<void(not_null<ChannelData*>)> _channelDone;
2015-10-11 08:37:24 +00:00
object_ptr<Ui::UserpicButton> _photo = { nullptr };
object_ptr<Ui::InputField> _title = { nullptr };
object_ptr<Ui::InputField> _description = { nullptr };
2015-10-11 08:37:24 +00:00
// group / channel creation
mtpRequestId _creationRequestId = 0;
bool _creatingInviteLink = false;
ChannelData *_createdChannel = nullptr;
2015-10-11 08:37:24 +00:00
};
class SetupChannelBox final : public Ui::BoxContent {
2015-10-11 08:37:24 +00:00
public:
2019-07-24 11:13:51 +00:00
SetupChannelBox(
QWidget*,
2019-07-25 18:55:11 +00:00
not_null<Window::SessionNavigation*> navigation,
2019-07-24 11:13:51 +00:00
not_null<ChannelData*> channel,
bool existing = false);
2015-10-11 08:37:24 +00:00
void setInnerFocus() override;
2015-10-11 08:37:24 +00:00
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;
2015-10-11 08:37:24 +00:00
private:
enum class Privacy {
Public,
Private,
};
2021-11-27 21:49:17 +00:00
enum class UsernameResult {
Ok,
Invalid,
Occupied,
ChatsTooMuch,
NA,
Unknown,
};
[[nodiscard]] UsernameResult parseError(const QString &error);
void privacyChanged(Privacy value);
2015-10-11 08:37:24 +00:00
void updateSelected(const QPoint &cursorGlobalPosition);
void handleChange();
void check();
void save();
2015-10-11 08:37:24 +00:00
2021-11-27 21:49:17 +00:00
void updateFail(UsernameResult result);
2015-10-11 08:37:24 +00:00
2021-11-27 21:49:17 +00:00
void checkFail(UsernameResult result);
void firstCheckFail(UsernameResult result);
2015-10-11 08:37:24 +00:00
void updateMaxHeight();
void showRevokePublicLinkBoxForEdit();
2019-07-25 18:55:11 +00:00
const not_null<Window::SessionNavigation*> _navigation;
2019-07-24 11:13:51 +00:00
const not_null<ChannelData*> _channel;
MTP::Sender _api;
2019-07-24 11:13:51 +00:00
bool _existing = false;
2021-10-12 12:50:18 +00:00
bool _creatingInviteLink = false;
2015-10-11 08:37:24 +00:00
std::shared_ptr<Ui::RadioenumGroup<Privacy>> _privacyGroup;
object_ptr<Ui::Radioenum<Privacy>> _public;
object_ptr<Ui::Radioenum<Privacy>> _private;
2015-10-11 08:37:24 +00:00
int32 _aboutPublicWidth, _aboutPublicHeight;
2019-06-12 13:26:04 +00:00
Ui::Text::String _aboutPublic, _aboutPrivate;
object_ptr<Ui::UsernameInput> _link;
2015-10-11 08:37:24 +00:00
QRect _invitationLink;
bool _linkOver = false;
bool _tooMuchUsernames = false;
2015-10-11 08:37:24 +00:00
mtpRequestId _saveRequestId = 0;
mtpRequestId _checkRequestId = 0;
2015-10-11 08:37:24 +00:00
QString _sentUsername, _checkUsername, _errorText, _goodText;
base::Timer _checkTimer;
2015-10-11 08:37:24 +00:00
};
class EditNameBox : public Ui::BoxContent {
2015-10-06 19:49:23 +00:00
public:
EditNameBox(QWidget*, not_null<UserData*> user);
2015-10-06 19:49:23 +00:00
protected:
void setInnerFocus() override;
void prepare() override;
void resizeEvent(QResizeEvent *e) override;
2015-10-06 19:49:23 +00:00
private:
void submit();
void save();
void saveSelfFail(const QString &error);
2015-10-06 19:49:23 +00:00
const not_null<UserData*> _user;
MTP::Sender _api;
2015-10-06 19:49:23 +00:00
object_ptr<Ui::InputField> _first;
object_ptr<Ui::InputField> _last;
2015-10-06 19:49:23 +00:00
bool _invertOrder = false;
2015-10-06 19:49:23 +00:00
mtpRequestId _requestId = 0;
2015-10-06 19:49:23 +00:00
QString _sentName;
2015-10-06 19:49:23 +00:00
};
class RevokePublicLinkBox final : public Ui::BoxContent {
public:
2019-07-24 11:13:51 +00:00
RevokePublicLinkBox(
QWidget*,
2019-07-24 11:45:24 +00:00
not_null<Main::Session*> session,
2019-07-24 11:13:51 +00:00
Fn<void()> revokeCallback);
protected:
void prepare() override;
void resizeEvent(QResizeEvent *e) override;
private:
2019-07-24 11:45:24 +00:00
const not_null<Main::Session*> _session;
2019-07-24 11:13:51 +00:00
object_ptr<Ui::FlatLabel> _aboutRevoke;
class Inner;
QPointer<Inner> _inner;
int _innerTop = 0;
Fn<void()> _revokeCallback;
2015-09-21 20:57:42 +00:00
};