tdesktop/Telegram/SourceFiles/boxes/username_box.h

67 lines
1.4 KiB
C++

/*
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"
namespace Ui {
class UsernameInput;
class LinkButton;
class FlatLabel;
} // namespace Ui
namespace Main {
class Session;
} // namespace Main
class UsernameBox : public Ui::BoxContent {
public:
UsernameBox(QWidget*, not_null<Main::Session*> session);
protected:
void prepare() override;
void setInnerFocus() override;
void paintEvent(QPaintEvent *e) override;
void resizeEvent(QResizeEvent *e) override;
private:
void updateFail(const QString &error);
void checkFail(const QString &error);
void save();
void check();
void changed();
void linkClick();
QString getName() const;
void updateLinkText();
const not_null<Main::Session*> _session;
const style::font &_font;
const style::margins &_padding;
const int _textCenterTop;
MTP::Sender _api;
object_ptr<Ui::UsernameInput> _username;
object_ptr<Ui::FlatLabel> _about;
object_ptr<Ui::LinkButton> _link;
mtpRequestId _saveRequestId = 0;
mtpRequestId _checkRequestId = 0;
QString _sentUsername, _checkUsername, _errorText, _goodText;
base::Timer _checkTimer;
};