diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2015-04-03 20:53:10 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2015-04-03 20:53:10 +0000 |
commit | 77633ec5799b374a1899d05ae69a2e5f978f2a7c (patch) | |
tree | 495918b4f9fe4afabd3327bd31ded2b51c99cc1d /protocols/Steam/src/steam_options.h | |
parent | 62d9ae35f2621f77a8f5c2bd34bef66553ac6036 (diff) |
Steam: moved to core ui
git-svn-id: http://svn.miranda-ng.org/main/trunk@12594 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_options.h')
-rw-r--r-- | protocols/Steam/src/steam_options.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_options.h b/protocols/Steam/src/steam_options.h new file mode 100644 index 0000000000..86bd7a183e --- /dev/null +++ b/protocols/Steam/src/steam_options.h @@ -0,0 +1,29 @@ +#ifndef _SKYPE_OPTIONS_H_
+#define _SKYPE_OPTIONS_H_
+
+class CSkypeOptionsMain : public CSkypeDlgBase
+{
+private:
+ typedef CSkypeDlgBase CSuper;
+
+ CCtrlEdit m_skypename;
+ CCtrlEdit m_password;
+ CCtrlEdit m_group;
+
+protected:
+ CSkypeOptionsMain(CSkypeProto *proto, int idDialog, HWND hwndParent = NULL);
+
+ void OnInitDialog();
+ void OnApply();
+
+public:
+ static CDlgBase *CreateAccountManagerPage(void *param, HWND owner)
+ {
+ CSkypeOptionsMain *page = new CSkypeOptionsMain((CSkypeProto*)param, IDD_ACCOUNT_MANAGER, owner);
+ page->Show();
+ }
+
+ static CDlgBase *CreateMainOptionsPage(void *param) { return new CSkypeOptionsMain((CSkypeProto*)param, IDD_OPTIONS_MAIN); }
+};
+
+#endif //_SKYPE_OPTIONS_H_
\ No newline at end of file |