blob: 2b32ecbd9bea6871ba1b4e1d55f894a5ebdfbc15 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | #ifndef _OAUTH_H_
#define _OAUTH_H_
class COAuthDlg : public CDlgBase
{
	CCloudService *m_service;
	CCloudService::MyThreadFunc m_requestAccessTokenThread;
	CCtrlHyperlink m_authorize;
	CCtrlEdit m_code;
	CCtrlButton m_ok;
protected:
	bool OnInitDialog() override;
	void Code_OnChange(CCtrlBase*);
	void Ok_OnClick(CCtrlButton*);
public:
	COAuthDlg(CCloudService *service, const char *authUrl, CCloudService::MyThreadFunc requestAccessTokenThread);
};
#endif //_OAUTH_H_
 |