summaryrefslogtreecommitdiff
path: root/plugins/CloudFile/src/oauth.h
blob: 7c71cf005ce0acb53aaae2c18665267ff94d4c05 (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:
	void OnInitDialog() override;

	void Code_OnChange(CCtrlBase*);
	void Ok_OnClick(CCtrlButton*);

public:
	COAuthDlg(CCloudService *service, const char *authUrl, CCloudService::MyThreadFunc requestAccessTokenThread);
};

#endif //_OAUTH_H_