From 22acdda86a4a1f1dfbecd7fa8b848487c8f816dc Mon Sep 17 00:00:00 2001 From: Sergey Bolhovskoy Date: Tue, 29 Mar 2016 06:30:50 +0000 Subject: VKontakte: oops git-svn-id: http://svn.miranda-ng.org/main/trunk@16559 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- protocols/VKontakte/src/vk_dialogs.h | 47 ++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 protocols/VKontakte/src/vk_dialogs.h (limited to 'protocols/VKontakte/src') 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 . +*/ + +#include "stdafx.h" +#pragma once + +typedef CProtoDlgBase 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 -- cgit v1.2.3