blob: 993e50ce3ee1ec9a115b47ccf2a185e77a111a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
/*
Copyright (c) 2013-17 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;
////////////////////////////////// IDD_CAPTCHAFORM ////////////////////////////////////////
struct CAPTCHA_FORM_PARAMS
{
HBITMAP bmp;
int w, h;
char Result[100];
};
class CVkCaptchaForm : public CVkDlgBase
{
CCtrlData m_instruction;
CCtrlEdit m_edtValue;
CCtrlButton m_btnOpenInBrowser;
CCtrlButton m_btnOk;
CAPTCHA_FORM_PARAMS *m_param;
public:
CVkCaptchaForm(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*);
};
////////////////////////////////// IDD_WALLPOST ///////////////////////////////////////////
struct WALLPOST_FORM_PARAMS
{
wchar_t *pwszMsg;
wchar_t *pwszUrl;
wchar_t *pwszNick;
bool bFriendsOnly;
WALLPOST_FORM_PARAMS(wchar_t *nick) :
pwszNick(nick),
bFriendsOnly(false)
{
pwszMsg = pwszUrl = NULL;
}
~WALLPOST_FORM_PARAMS()
{
mir_free(pwszMsg);
mir_free(pwszUrl);
mir_free(pwszNick);
}
};
class CVkWallPostForm : public CVkDlgBase
{
CCtrlEdit m_edtMsg;
CCtrlEdit m_edtUrl;
CCtrlCheck m_cbOnlyForFriends;
CCtrlButton m_btnShare;
WALLPOST_FORM_PARAMS *m_param;
public:
CVkWallPostForm(CVkProto *proto, WALLPOST_FORM_PARAMS *param);
void OnInitDialog();
void OnDestroy();
void On_btnShare_Click(CCtrlButton*);
void On_edtValue_Change(CCtrlEdit*);
};
////////////////////////////////// IDD_INVITE /////////////////////////////////////////////
class CVkInviteChatForm : public CVkDlgBase
{
CCtrlButton m_btnOk;
CCtrlCombo m_cbxCombo;
public:
MCONTACT m_hContact;
CVkInviteChatForm(CVkProto *proto);
void OnInitDialog();
void btnOk_OnOk(CCtrlButton*);
};
////////////////////////////////// IDD_GC_CREATE //////////////////////////////////////////
class CVkGCCreateForm : public CVkDlgBase
{
CCtrlButton m_btnOk;
CCtrlClc m_clCList;
CCtrlEdit m_edtTitle;
public:
CVkGCCreateForm(CVkProto *proto);
void OnInitDialog();
void btnOk_OnOk(CCtrlButton*);
void FilterList(CCtrlClc*);
void ResetListOptions(CCtrlClc*);
};
|