summaryrefslogtreecommitdiff
path: root/protocols/SkypeWeb/src/skype_options.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-04-03 18:25:32 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-04-03 18:25:32 +0000
commit2dda26c2d63fb543d06f046a5908ba43a5fd716e (patch)
tree6de64e4a536951e696ddb82b0dad8739938a1f58 /protocols/SkypeWeb/src/skype_options.h
parentba077766bc39745326b3bbe65b5382fcc5bc2f51 (diff)
SkypeWeb: moved to core ui
git-svn-id: http://svn.miranda-ng.org/main/trunk@12590 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_options.h')
-rw-r--r--protocols/SkypeWeb/src/skype_options.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_options.h b/protocols/SkypeWeb/src/skype_options.h
new file mode 100644
index 0000000000..56d08aedd8
--- /dev/null
+++ b/protocols/SkypeWeb/src/skype_options.h
@@ -0,0 +1,30 @@
+#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();
+ return page;
+ }
+
+ static CDlgBase *CreateOptionsPage(void *param) { return new CSkypeOptionsMain((CSkypeProto*)param, IDD_OPTIONS_MAIN); }
+};
+
+#endif //_SKYPE_OPTIONS_H_ \ No newline at end of file