2014-10-22 18:39:03 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 10:23:14 +00:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2018-01-03 10:23:14 +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"
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2016-11-11 13:46:04 +00:00
|
|
|
namespace Ui {
|
2016-11-15 11:56:49 +00:00
|
|
|
class UsernameInput;
|
2016-11-11 13:46:04 +00:00
|
|
|
class LinkButton;
|
|
|
|
} // namespace Ui
|
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
class UsernameBox : public BoxContent, public RPCSender {
|
2014-10-22 18:39:03 +00:00
|
|
|
public:
|
2016-12-13 17:07:56 +00:00
|
|
|
UsernameBox(QWidget*);
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
protected:
|
|
|
|
void prepare() override;
|
|
|
|
void setInnerFocus() override;
|
|
|
|
|
|
|
|
void paintEvent(QPaintEvent *e) override;
|
|
|
|
void resizeEvent(QResizeEvent *e) override;
|
|
|
|
|
2015-04-02 10:33:19 +00:00
|
|
|
private:
|
2014-10-22 18:39:03 +00:00
|
|
|
void onUpdateDone(const MTPUser &result);
|
|
|
|
bool onUpdateFail(const RPCError &error);
|
|
|
|
|
|
|
|
void onCheckDone(const MTPBool &result);
|
|
|
|
bool onCheckFail(const RPCError &error);
|
|
|
|
|
2018-05-31 12:20:28 +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
|
|
|
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<Ui::UsernameInput> _username;
|
|
|
|
object_ptr<Ui::LinkButton> _link;
|
2014-10-22 18:39:03 +00:00
|
|
|
|
2016-12-09 18:56:01 +00:00
|
|
|
mtpRequestId _saveRequestId = 0;
|
|
|
|
mtpRequestId _checkRequestId = 0;
|
2016-12-20 13:03:51 +00:00
|
|
|
QString _sentUsername, _checkUsername, _errorText, _goodText;
|
2014-10-22 18:39:03 +00:00
|
|
|
|
|
|
|
Text _about;
|
2016-12-13 17:07:56 +00:00
|
|
|
object_ptr<QTimer> _checkTimer;
|
2016-08-16 16:53:10 +00:00
|
|
|
|
2014-10-22 18:39:03 +00:00
|
|
|
};
|