diff options
author | Sergey Bolhovskoy <elzorfox@ya.ru> | 2016-03-29 06:30:50 +0000 |
---|---|---|
committer | Sergey Bolhovskoy <elzorfox@ya.ru> | 2016-03-29 06:30:50 +0000 |
commit | 22acdda86a4a1f1dfbecd7fa8b848487c8f816dc (patch) | |
tree | db0f251de89ca805fa4bc03f52ceb70a231869a4 | |
parent | 2d69f3e4cb933355d9424e7c73aa3b52bc220cbe (diff) |
VKontakte: oops
git-svn-id: http://svn.miranda-ng.org/main/trunk@16559 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | protocols/VKontakte/src/vk_dialogs.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/protocols/VKontakte/src/vk_dialogs.h b/protocols/VKontakte/src/vk_dialogs.h new file mode 100644 index 0000000000..f881e8f618 --- /dev/null +++ b/protocols/VKontakte/src/vk_dialogs.h @@ -0,0 +1,47 @@ +/*
+Copyright (c) 2013-16 Miranda NG project (http://miranda-ng.org)
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation version 2
+of the License.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "stdafx.h"
+#pragma once
+
+typedef CProtoDlgBase<CVkProto> CVkDlgBase;
+
+struct CAPTCHA_FORM_PARAMS
+{
+ HBITMAP bmp;
+ int w, h;
+ char Result[100];
+};
+
+class CaptchaForm : public CVkDlgBase
+{
+ CCtrlData m_instruction;
+ CCtrlEdit m_edtValue;
+ CCtrlButton m_btnOpenInBrowser;
+ CCtrlButton m_btnOk;
+ CAPTCHA_FORM_PARAMS* m_param;
+
+public:
+ CaptchaForm(CVkProto *proto, CAPTCHA_FORM_PARAMS* param);
+ void OnInitDialog();
+ INT_PTR DlgProc(UINT msg, WPARAM wParam, LPARAM lParam);
+ void OnDestroy();
+ void On_btnOpenInBrowser_Click(CCtrlButton*);
+ void On_btnOk_Click(CCtrlButton*);
+ void On_edtValue_Change(CCtrlEdit*);
+
+};
\ No newline at end of file |