diff options
author | aunsane <aunsane@gmail.com> | 2017-04-16 01:32:19 +0300 |
---|---|---|
committer | aunsane <aunsane@gmail.com> | 2017-04-16 01:32:58 +0300 |
commit | 0b9fa1d90f8d0aff7118837ceb1211b578a5a9c8 (patch) | |
tree | 3b8be7b839a98a3a52a38d713c2d708ada015510 /plugins/CloudFile/src/oauth.h | |
parent | 008fb731e3e3b587f596afba1cfe7446de7f0cac (diff) |
CloudFile: initial commit
- Dropbox (worked)
- Yandex.Disk (worked)
- GDrive (not worked)
Diffstat (limited to 'plugins/CloudFile/src/oauth.h')
-rw-r--r-- | plugins/CloudFile/src/oauth.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/CloudFile/src/oauth.h b/plugins/CloudFile/src/oauth.h new file mode 100644 index 0000000000..434927f791 --- /dev/null +++ b/plugins/CloudFile/src/oauth.h @@ -0,0 +1,22 @@ +#ifndef _OAUTH_H_ +#define _OAUTH_H_ + +class COAuthDlg : public CDlgBase +{ +private: + CCloudService *m_service; + pThreadFuncOwner m_requestAccessTokenThread; + + CCtrlHyperlink m_auth; + CCtrlEdit m_code; + CCtrlButton m_ok; + +protected: + void Code_OnChange(CCtrlBase*); + void Ok_OnClick(CCtrlButton*); + +public: + COAuthDlg(CCloudService *service, const char *authUrl, pThreadFuncOwner requestAccessTokenThread); +}; + +#endif //_OAUTH_H_
\ No newline at end of file |