2014-10-22 22:39:03 +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-10-22 22:39:03 +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-10-22 22:39:03 +04:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-04-06 17:38:10 +03:00
|
|
|
#include "boxes/abstract_box.h"
|
2021-10-18 00:30:25 +03:00
|
|
|
#include "base/timer.h"
|
2020-06-11 20:09:46 +04:00
|
|
|
#include "mtproto/sender.h"
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2016-11-11 16:46:04 +03:00
|
|
|
namespace Ui {
|
2016-11-15 14:56:49 +03:00
|
|
|
class UsernameInput;
|
2016-11-11 16:46:04 +03:00
|
|
|
class LinkButton;
|
2022-02-11 12:09:20 +03:00
|
|
|
class FlatLabel;
|
2016-11-11 16:46:04 +03:00
|
|
|
} // namespace Ui
|
|
|
|
|
2019-08-06 17:40:08 +01:00
|
|
|
namespace Main {
|
|
|
|
class Session;
|
|
|
|
} // namespace Main
|
|
|
|
|
2020-06-11 20:09:46 +04:00
|
|
|
class UsernameBox : public Ui::BoxContent {
|
2014-10-22 22:39:03 +04:00
|
|
|
public:
|
2019-08-06 17:40:08 +01:00
|
|
|
UsernameBox(QWidget*, not_null<Main::Session*> session);
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
protected:
|
|
|
|
void prepare() override;
|
|
|
|
void setInnerFocus() override;
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
|
2015-04-02 13:33:19 +03:00
|
|
|
private:
|
2021-10-18 00:30:25 +03:00
|
|
|
void updateFail(const QString &error);
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2021-10-18 00:30:25 +03:00
|
|
|
void checkFail(const QString &error);
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2018-05-31 15:20:28 +03:00
|
|
|
void save();
|
|
|
|
|
|
|
|
void check();
|
|
|
|
void changed();
|
|
|
|
|
|
|
|
void linkClick();
|
|
|
|
|
2014-10-22 22:39:03 +04:00
|
|
|
QString getName() const;
|
2015-10-06 22:49:23 +03:00
|
|
|
void updateLinkText();
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2019-08-06 17:40:08 +01:00
|
|
|
const not_null<Main::Session*> _session;
|
2021-10-18 00:30:25 +03:00
|
|
|
const style::font &_font;
|
|
|
|
const style::margins &_padding;
|
|
|
|
const int _textCenterTop;
|
2020-06-11 20:09:46 +04:00
|
|
|
MTP::Sender _api;
|
2019-08-06 17:40:08 +01:00
|
|
|
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::UsernameInput> _username;
|
2022-02-11 12:09:20 +03:00
|
|
|
object_ptr<Ui::FlatLabel> _about;
|
2016-12-13 20:07:56 +03:00
|
|
|
object_ptr<Ui::LinkButton> _link;
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2016-12-09 21:56:01 +03:00
|
|
|
mtpRequestId _saveRequestId = 0;
|
|
|
|
mtpRequestId _checkRequestId = 0;
|
2016-12-20 16:03:51 +03:00
|
|
|
QString _sentUsername, _checkUsername, _errorText, _goodText;
|
2014-10-22 22:39:03 +04:00
|
|
|
|
2021-10-18 00:30:25 +03:00
|
|
|
base::Timer _checkTimer;
|
2016-08-16 19:53:10 +03:00
|
|
|
|
2014-10-22 22:39:03 +04:00
|
|
|
};
|