diff options
author | MikalaiR <nikolay.romanovich@narod.ru> | 2015-07-15 14:46:10 +0000 |
---|---|---|
committer | MikalaiR <nikolay.romanovich@narod.ru> | 2015-07-15 14:46:10 +0000 |
commit | 5604a6276fe755bcc0731d6a2ff944271aa07e75 (patch) | |
tree | ba3038dd652e8737339d1909107d7fad69efe4c7 /protocols/SkypeWeb/src/skype_dialogs.h | |
parent | 6ffdb6d86ef448bd95ec9065bd624cf15593a044 (diff) |
SkypeWeb: Chat create dialog -> core ui
git-svn-id: http://svn.miranda-ng.org/main/trunk@14568 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeWeb/src/skype_dialogs.h')
-rw-r--r-- | protocols/SkypeWeb/src/skype_dialogs.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/protocols/SkypeWeb/src/skype_dialogs.h b/protocols/SkypeWeb/src/skype_dialogs.h index cf6f5df671..d7be605e94 100644 --- a/protocols/SkypeWeb/src/skype_dialogs.h +++ b/protocols/SkypeWeb/src/skype_dialogs.h @@ -74,5 +74,27 @@ public: CSkypeInviteDlg(CSkypeProto *proto);
};
+class CSkypeGCCreateDlg : public CSkypeDlgBase
+{
+private:
+ typedef CSkypeDlgBase CSuper;
+ CCtrlButton m_ok;
+ CCtrlButton m_cancel;
+ CCtrlClc m_clc;
+
+protected:
+
+ void OnInitDialog();
+ void btnOk_OnOk(CCtrlButton*);
+ void FilterList(CCtrlClc*);
+ void ResetListOptions(CCtrlClc*);
+
+
+public:
+
+ std::vector<MCONTACT> m_hContacts;
+ CSkypeGCCreateDlg(CSkypeProto *proto);
+};
+
#endif //_SKYPE_DIALOGS_H_
\ No newline at end of file |