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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
/*
Copyright (C) 2005 Ricardo Pescuma Domenecci
This is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public
License along with this file; see the file license.txt. If
not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA.
*/
#include "stdafx.h"
CDlgBase *pSetNickDialog = nullptr, *pSetStatusMessageDialog = nullptr;
// Set nickname ///////////////////////////////////////////////////////////////////////////////////
class CSetNickDialog : public CDlgBase
{
int m_protonum;
CCtrlEdit m_edtNickname;
public:
CSetNickDialog(int protoparam) :
CDlgBase(g_plugin, IDD_SETNICKNAME),
m_edtNickname(this, IDC_NICKNAME)
{
m_protonum = protoparam;
}
bool OnInitDialog() override
{
m_edtNickname.SendMsg(EM_LIMITTEXT, MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE - 1, 0);
if (m_protonum == -1) {
Window_SetSkinIcon_IcoLib(m_hwnd, SKINICON_OTHER_MIRANDA);
// All protos have the same nick?
if (protocols.getCount() > 0) {
wchar_t *nick = protocols[0].nickname;
bool foundDefNick = true;
for (int i = 1; foundDefNick && i < protocols.getCount(); i++) {
if (mir_wstrcmpi(protocols[i].nickname, nick) != 0) {
foundDefNick = false;
break;
}
}
if (foundDefNick)
if (mir_wstrcmpi(protocols.default_nick, nick) != 0)
mir_wstrcpy(protocols.default_nick, nick);
}
m_edtNickname.SetText(protocols.default_nick);
m_edtNickname.SendMsg(EM_LIMITTEXT, MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE, 0);
}
else {
auto &proto = protocols[m_protonum];
wchar_t tmp[128];
mir_snwprintf(tmp, TranslateT("Set my nickname for %s"), proto.description);
SetWindowText(m_hwnd, tmp);
HICON hIcon = (HICON)CallProtoService(proto.name, PS_LOADICON, PLI_PROTOCOL, 0);
if (hIcon != nullptr) {
SendMessage(m_hwnd, WM_SETICON, ICON_BIG, (LPARAM)hIcon);
DestroyIcon(hIcon);
}
m_edtNickname.SetText(proto.nickname);
m_edtNickname.SendMsg(EM_LIMITTEXT, min(MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE, proto.GetNickMaxLength()), 0);
}
return true;
}
bool OnApply() override
{
wchar_t tmp[MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE];
m_edtNickname.GetText(tmp, _countof(tmp));
if (m_protonum == -1)
protocols.SetNicks(tmp);
else
protocols[m_protonum].SetNick(tmp);
return true;
}
void OnDestroy() override
{
if (pSetNickDialog == this)
pSetNickDialog = nullptr;
}
};
INT_PTR PluginCommand_SetMyNicknameUI(WPARAM, LPARAM lParam)
{
char *proto = (char *)lParam;
int proto_num = -1;
if (proto != nullptr) {
for (auto &it: protocols) {
if (mir_strcmpi(it->name, proto) == 0) {
proto_num = protocols.indexOf(&it);
break;
}
}
if (proto_num == -1)
return -1;
if (!protocols[proto_num].CanSetNick())
return -2;
}
if (pSetNickDialog == nullptr) {
pSetNickDialog = new CSetNickDialog(proto_num);
pSetNickDialog->Show();
}
else {
SetForegroundWindow(pSetNickDialog->GetHwnd());
SetFocus(pSetNickDialog->GetHwnd());
}
return 0;
}
INT_PTR PluginCommand_SetMyNickname(WPARAM wParam, LPARAM lParam)
{
char *proto = (char *)wParam;
if (proto != nullptr) {
for (auto &it : protocols) {
if (mir_strcmpi(it->name, proto) == 0) {
if (!it->CanSetNick())
return -2;
it->SetNick((wchar_t *)lParam);
return 0;
}
}
return -1;
}
protocols.SetNicks((wchar_t *)lParam);
return 0;
}
INT_PTR PluginCommand_GetMyNickname(WPARAM wParam, LPARAM lParam)
{
wchar_t *ret = (wchar_t *)lParam;
if (ret == nullptr)
return -1;
char *proto = (char *)wParam;
if (proto == nullptr) {
mir_wstrncpy(ret, protocols.default_nick, MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE);
return 0;
}
else {
Protocol *protocol = protocols.GetByName(proto);
if (protocol != nullptr) {
mir_wstrncpy(ret, protocol->nickname, MS_MYDETAILS_GETMYNICKNAME_BUFFER_SIZE);
return 0;
}
return -1;
}
}
// Set avatar /////////////////////////////////////////////////////////////////////////////////////
INT_PTR PluginCommand_SetMyAvatarUI(WPARAM, LPARAM lParam)
{
char *proto = (char *)lParam;
int proto_num = -1;
if (proto != nullptr) {
for (auto &it : protocols)
if (mir_strcmpi(it->name, proto) == 0) {
proto_num = protocols.indexOf(&it);
break;
}
if (proto_num == -1)
return -1;
if (!protocols[proto_num].CanSetAvatar())
return -2;
}
if (proto_num == -1)
protocols.SetAvatars(nullptr);
else
protocols[proto_num].SetAvatar(nullptr);
return 0;
}
INT_PTR PluginCommand_SetMyAvatar(WPARAM wParam, LPARAM lParam)
{
char *proto = (char *)wParam;
if (proto != nullptr) {
for (auto &it: protocols) {
if (mir_strcmpi(it->name, proto) == 0) {
if (!it->CanSetAvatar())
return -2;
it->SetAvatar((wchar_t *)lParam);
return 0;
}
}
return -1;
}
protocols.SetAvatars((wchar_t *)lParam);
return 0;
}
INT_PTR PluginCommand_GetMyAvatar(WPARAM wParam, LPARAM lParam)
{
wchar_t *ret = (wchar_t *)lParam;
char *proto = (char *)wParam;
if (ret == nullptr)
return -1;
if (proto == nullptr) {
mir_wstrncpy(ret, protocols.default_avatar_file, MS_MYDETAILS_GETMYAVATAR_BUFFER_SIZE);
return 0;
}
for (auto &it: protocols) {
if (mir_strcmpi(it->name, proto) == 0) {
if (!it->CanGetAvatar())
return -2;
it->GetAvatar();
if (mir_wstrlen(it->avatar_file))
mir_wstrncpy(ret, it->avatar_file, MS_MYDETAILS_GETMYAVATAR_BUFFER_SIZE);
else
ret[0] = '\0';
return 0;
}
}
return -1;
}
static LRESULT CALLBACK StatusMsgEditSubclassProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_CHAR:
if (wParam == 0x0a && (GetKeyState(VK_CONTROL) & 0x8000) != 0) {
PostMessage(GetParent(hwnd), WM_COMMAND, IDOK, 0);
return 0;
}
break;
}
return mir_callNextSubclass(hwnd, StatusMsgEditSubclassProc, msg, wParam, lParam);
}
struct SetStatusMessageData
{
int status;
int proto_num;
};
class CSetStatusMessageDialog : public CDlgBase
{
SetStatusMessageData *m_data;
CCtrlEdit m_edtStatusMessage;
public:
CSetStatusMessageDialog(int protoparam, int statusparam) :
CDlgBase(g_plugin, IDD_SETSTATUSMESSAGE),
m_edtStatusMessage(this, IDC_STATUSMESSAGE)
{
m_data = (SetStatusMessageData *)mir_alloc(sizeof(SetStatusMessageData));
m_data->proto_num = protoparam;
m_data->status = statusparam;
}
bool OnInitDialog() override
{
m_edtStatusMessage.SendMsg(EM_LIMITTEXT, MS_MYDETAILS_GETMYSTATUSMESSAGE_BUFFER_SIZE - 1, 0);
mir_subclassWindow(m_edtStatusMessage.GetHwnd(), StatusMsgEditSubclassProc);
if (m_data->proto_num >= 0) {
auto &proto = protocols[m_data->proto_num];
HICON hIcon = (HICON)CallProtoService(proto.name, PS_LOADICON, PLI_PROTOCOL, 0);
if (hIcon != nullptr) {
SendMessage(m_hwnd, WM_SETICON, ICON_BIG, (LPARAM)hIcon);
DestroyIcon(hIcon);
}
wchar_t title[256];
mir_snwprintf(title, TranslateT("Set my status message for %s"), proto.description);
SetWindowText(m_hwnd, title);
m_edtStatusMessage.SetText(proto.GetStatusMsg());
}
else if (m_data->status != 0) {
Window_SetProtoIcon_IcoLib(m_hwnd, nullptr, m_data->status);
wchar_t title[256];
mir_snwprintf(title, TranslateT("Set my status message for %s"), Clist_GetStatusModeDescription(m_data->status, 0));
SetWindowText(m_hwnd, title);
m_edtStatusMessage.SetText(protocols.GetDefaultStatusMsg(m_data->status));
}
else {
Window_SetSkinIcon_IcoLib(m_hwnd, SKINICON_OTHER_MIRANDA);
m_edtStatusMessage.SetText(protocols.GetDefaultStatusMsg());
}
return true;
}
bool OnApply() override
{
wchar_t tmp[MS_MYDETAILS_GETMYSTATUSMESSAGE_BUFFER_SIZE];
m_edtStatusMessage.GetText(tmp, _countof(tmp));
if (m_data->proto_num >= 0)
protocols[m_data->proto_num].SetStatusMsg(tmp);
else if (m_data->status == 0)
protocols.SetStatusMsgs(tmp);
else
protocols.SetStatusMsgs(m_data->status, tmp);
return true;
}
void OnDestroy() override
{
mir_free(m_data);
Window_FreeIcon_IcoLib(m_hwnd);
if (pSetStatusMessageDialog == this)
pSetStatusMessageDialog = nullptr;
}
};
INT_PTR PluginCommand_SetMyStatusMessageUI(WPARAM wParam, LPARAM lParam)
{
int status = (int)wParam;
char *proto_name = (char *)lParam;
int proto_num = -1;
Protocol *proto = nullptr;
if (status != 0 && (status < ID_STATUS_OFFLINE || status > ID_STATUS_MAX))
return -10;
if (proto_name != nullptr) {
for (auto &it: protocols) {
if (mir_strcmpi(it->name, proto_name) == 0) {
proto_num = protocols.indexOf(&it);
break;
}
}
if (proto_num == -1)
return -1;
if (protocols.CanSetStatusMsgPerProtocol() && !proto->CanSetStatusMsg())
return -2;
}
else if (ServiceExists(MS_SIMPLESTATUSMSG_CHANGESTATUSMSG)) {
if (status != 0)
CallService(MS_SIMPLESTATUSMSG_CHANGESTATUSMSG, status, (LPARAM)proto_name);
else if (proto != nullptr)
CallService(MS_SIMPLESTATUSMSG_CHANGESTATUSMSG, proto->status, (LPARAM)proto_name);
else
CallService(MS_SIMPLESTATUSMSG_CHANGESTATUSMSG, protocols.GetGlobalStatus(), NULL);
return 0;
} // fallthrough
if (proto == nullptr || proto->status != ID_STATUS_OFFLINE) {
if (pSetStatusMessageDialog == nullptr) {
pSetStatusMessageDialog = new CSetStatusMessageDialog(proto_num, status);
pSetStatusMessageDialog->Show();
}
else {
SetForegroundWindow(pSetStatusMessageDialog->GetHwnd());
SetFocus(pSetStatusMessageDialog->GetHwnd());
}
return 0;
}
return -3;
}
INT_PTR PluginCommand_CycleThroughtProtocols(WPARAM wParam, LPARAM)
{
db_set_b(0, "MyDetails", "CicleThroughtProtocols", (uint8_t)wParam);
LoadOptions();
return 0;
}
|