tdesktop/Telegram/SourceFiles/boxes/username_box.h

67 lines
1.4 KiB
C
Raw Normal View History

2014-10-22 18:39:03 +00:00
/*
This file is part of Telegram Desktop,
the official desktop application for the Telegram messaging service.
2014-10-22 18:39:03 +00:00
For license and copyright information please follow this link:
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
2014-10-22 18:39:03 +00:00
*/
#pragma once
2017-04-06 14:38:10 +00:00
#include "boxes/abstract_box.h"
2021-10-17 21:30:25 +00:00
#include "base/timer.h"
#include "mtproto/sender.h"
2014-10-22 18:39:03 +00:00
namespace Ui {
class UsernameInput;
class LinkButton;
class FlatLabel;
} // namespace Ui
2019-08-06 16:40:08 +00:00
namespace Main {
class Session;
} // namespace Main
class UsernameBox : public Ui::BoxContent {
2014-10-22 18:39:03 +00:00
public:
2019-08-06 16:40:08 +00:00
UsernameBox(QWidget*, not_null<Main::Session*> session);
2014-10-22 18:39:03 +00:00
protected:
void prepare() override;
void setInnerFocus() override;
void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
private:
2021-10-17 21:30:25 +00:00
void updateFail(const QString &error);
2014-10-22 18:39:03 +00:00
2021-10-17 21:30:25 +00:00
void checkFail(const QString &error);
2014-10-22 18:39:03 +00:00
void save();
void check();
void changed();
void linkClick();
2014-10-22 18:39:03 +00:00
QString getName() const;
2015-10-06 19:49:23 +00:00
void updateLinkText();
2014-10-22 18:39:03 +00:00
2019-08-06 16:40:08 +00:00
const not_null<Main::Session*> _session;
2021-10-17 21:30:25 +00:00
const style::font &_font;
const style::margins &_padding;
const int _textCenterTop;
MTP::Sender _api;
2019-08-06 16:40:08 +00:00
object_ptr<Ui::UsernameInput> _username;
object_ptr<Ui::FlatLabel> _about;
object_ptr<Ui::LinkButton> _link;
2014-10-22 18:39:03 +00:00
mtpRequestId _saveRequestId = 0;
mtpRequestId _checkRequestId = 0;
QString _sentUsername, _checkUsername, _errorText, _goodText;
2014-10-22 18:39:03 +00:00
2021-10-17 21:30:25 +00:00
base::Timer _checkTimer;
2014-10-22 18:39:03 +00:00
};