62 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
	
		
			1.3 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 "mtproto/mtproto_rpc_sender.h"
 | |
| 
 | |
| namespace Ui {
 | |
| class UsernameInput;
 | |
| class LinkButton;
 | |
| } // namespace Ui
 | |
| 
 | |
| namespace Main {
 | |
| class Session;
 | |
| } // namespace Main
 | |
| 
 | |
| class UsernameBox : public Ui::BoxContent, public RPCSender {
 | |
| 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 onUpdateDone(const MTPUser &result);
 | |
| 	bool onUpdateFail(const RPCError &error);
 | |
| 
 | |
| 	void onCheckDone(const MTPBool &result);
 | |
| 	bool onCheckFail(const RPCError &error);
 | |
| 
 | |
| 	void save();
 | |
| 
 | |
| 	void check();
 | |
| 	void changed();
 | |
| 
 | |
| 	void linkClick();
 | |
| 
 | |
| 	QString getName() const;
 | |
| 	void updateLinkText();
 | |
| 
 | |
| 	const not_null<Main::Session*> _session;
 | |
| 
 | |
| 	object_ptr<Ui::UsernameInput> _username;
 | |
| 	object_ptr<Ui::LinkButton> _link;
 | |
| 
 | |
| 	mtpRequestId _saveRequestId = 0;
 | |
| 	mtpRequestId _checkRequestId = 0;
 | |
| 	QString _sentUsername, _checkUsername, _errorText, _goodText;
 | |
| 
 | |
| 	Ui::Text::String _about;
 | |
| 	object_ptr<QTimer> _checkTimer;
 | |
| 
 | |
| };
 | 
