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
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
|
/*
New Away System - plugin for Miranda IM
Copyright (c) 2005-2007 Chervov Dmitry
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; either version 2 of the License, or
(at your option) any later version.
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, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#pragma once
#include "Common.h"
#include "MsgTree.h"
#include "ContactList.h"
#include "statusmodes.h"
#define DB_STATUSMSG "StatusMsg"
#define DB_ENABLEREPLY "EnableReply"
#define DB_IGNOREREQUESTS "IgnoreRequests"
//#define DB_POPUPNOTIFY "UsePopups"
#define DB_UNK_CONTACT_PREFIX "Unk" // DB_ENABLEREPLY, DB_IGNOREREQUESTS and DB_POPUPNOTIFY settings prefix for not-on-list contacts
class _CWndUserData
{
public:
_CWndUserData(): MsgTree(NULL), CList(NULL) {}
CMsgTree *MsgTree;
CCList *CList;
};
class CWndUserData
{
public:
CWndUserData(HWND hWnd): hWnd(hWnd)
{
_ASSERT(hWnd);
dat = (_CWndUserData*)GetWindowLongPtr(hWnd, GWLP_USERDATA);
if (!dat)
{
dat = new _CWndUserData;
SetWindowLongPtr(hWnd, GWLP_USERDATA, (LONG_PTR)dat);
}
}
~CWndUserData()
{
_ASSERT(dat == (_CWndUserData*)GetWindowLongPtr(hWnd, GWLP_USERDATA));
if (!dat->MsgTree && !dat->CList) // TODO: Uninitialized Memory Read on closing the options dialog - fix it
{
SetWindowLongPtr(hWnd, GWLP_USERDATA, NULL);
delete dat; // TODO: memory leak - this is never executed - fix it
}
}
CMsgTree *GetMsgTree() {return dat->MsgTree;}
void SetMsgTree(CMsgTree *MsgTree) {dat->MsgTree = MsgTree;}
CCList *GetCList() {return dat->CList;}
void SetCList(CCList *CList) {dat->CList = CList;}
private:
HWND hWnd;
_CWndUserData *dat;
};
#define IL_SKINICON 0x80000000
#define IL_PROTOICON 0x40000000
#define ILI_NOICON (-1)
#define ILI_EVENT_MESSAGE 0
#define ILI_EVENT_URL 1
#define ILI_EVENT_FILE 2
#define ILI_PROTO_ONL 3
#define ILI_PROTO_AWAY 4
#define ILI_PROTO_NA 5
#define ILI_PROTO_OCC 6
#define ILI_PROTO_DND 7
#define ILI_PROTO_FFC 8
#define ILI_PROTO_INV 9
#define ILI_PROTO_OTP 10
#define ILI_PROTO_OTL 11
#define ILI_DOT 12
#define ILI_MSGICON 13
#define ILI_IGNORE 14
#define ILI_SOE_DISABLED 15
#define ILI_SOE_ENABLED 16
#define ILI_NEWMESSAGE 17
#define ILI_NEWCATEGORY 18
#define ILI_SAVE 19
#define ILI_SAVEASNEW 20
#define ILI_DELETE 21
#define ILI_SETTINGS 22
#define ILI_STATUS_OTHER 23
static int Icons[] = {
SKINICON_EVENT_MESSAGE | IL_SKINICON, SKINICON_EVENT_URL | IL_SKINICON, SKINICON_EVENT_FILE | IL_SKINICON,
ID_STATUS_ONLINE | IL_PROTOICON, ID_STATUS_AWAY | IL_PROTOICON, ID_STATUS_NA | IL_PROTOICON, ID_STATUS_OCCUPIED | IL_PROTOICON, ID_STATUS_DND | IL_PROTOICON, ID_STATUS_FREECHAT | IL_PROTOICON, ID_STATUS_INVISIBLE | IL_PROTOICON, ID_STATUS_ONTHEPHONE | IL_PROTOICON, ID_STATUS_OUTTOLUNCH | IL_PROTOICON,
IDI_DOT, IDI_MSGICON, IDI_IGNORE, IDI_SOE_ENABLED, IDI_SOE_DISABLED, IDI_NEWMESSAGE, IDI_NEWCATEGORY, IDI_SAVE, IDI_SAVEASNEW, IDI_DELETE, IDI_SETTINGS, IDI_STATUS_OTHER
};
class CIconList
{
public:
~CIconList()
{
int i;
for (i = 0; i < IconList.GetSize(); i++)
{
if (IconList[i])
{
DestroyIcon(IconList[i]);
}
}
}
HICON& operator [] (int nIndex) {return IconList[nIndex];}
void ReloadIcons()
{
int cxIcon = GetSystemMetrics(SM_CXSMICON);
int cyIcon = GetSystemMetrics(SM_CYSMICON);
int i;
for (i = 0; i < SIZEOF(Icons); i++)
{
if (IconList.GetSize() > i && IconList[i])
{
DestroyIcon(IconList[i]);
}
if (Icons[i] & IL_SKINICON)
{
IconList.SetAtGrow(i) = (HICON)CopyImage(LoadSkinnedIcon(Icons[i] & ~IL_SKINICON), IMAGE_ICON, cxIcon, cyIcon, LR_COPYFROMRESOURCE);
} else if (Icons[i] & IL_PROTOICON)
{
IconList.SetAtGrow(i) = (HICON)CopyImage(LoadSkinnedProtoIcon(NULL, Icons[i] & ~IL_PROTOICON), IMAGE_ICON, cxIcon, cyIcon, LR_COPYFROMRESOURCE);
} else
{
IconList.SetAtGrow(i) = (HICON)LoadImage(g_hInstance, MAKEINTRESOURCE(Icons[i]), IMAGE_ICON, cxIcon, cyIcon, 0);
}
}
}
private:
TMyArray<HICON> IconList;
};
extern CIconList g_IconList;
class CProtoStates;
class CProtoState
{
public:
CProtoState(const char* szProto, CProtoStates* Parent): szProto(szProto), Parent(Parent), Status(szProto, Parent), AwaySince(szProto, Parent) {}
class CStatus
{
public:
CStatus(const char* szProto, CProtoStates* GrandParent): szProto(szProto), GrandParent(GrandParent), Status(ID_STATUS_OFFLINE) {}
CStatus& operator = (int Status);
operator int() {return Status;}
friend class CProtoState;
private:
int Status;
CString szProto;
CProtoStates* GrandParent;
} Status;
class CAwaySince
{
public:
CAwaySince(const char* szProto, CProtoStates* GrandParent): szProto(szProto), GrandParent(GrandParent) {Reset();}
void Reset();
operator LPSYSTEMTIME() {return &AwaySince;}
friend class CProtoState;
private:
SYSTEMTIME AwaySince;
CString szProto;
CProtoStates* GrandParent;
} AwaySince;
class CCurStatusMsg
{
public:
CCurStatusMsg() {*this = NULL;}
CCurStatusMsg& operator = (TCString Msg)
{
CurStatusMsg = Msg;
SYSTEMTIME st;
GetLocalTime(&st);
SystemTimeToFileTime(&st, (LPFILETIME)&LastUpdateTime); // i'm too lazy to declare FILETIME structure and then copy its data to absolutely equivalent ULARGE_INTEGER structure, so we'll just pass a pointer to the ULARGE_INTEGER directly ;-P
return *this;
}
operator TCString() {return CurStatusMsg;}
DWORD GetUpdateTimeDifference()
{
ULARGE_INTEGER CurTime;
SYSTEMTIME st;
GetLocalTime(&st);
SystemTimeToFileTime(&st, (LPFILETIME)&CurTime);
return (DWORD)((CurTime.QuadPart - LastUpdateTime.QuadPart) / 10000); // in milliseconds
}
private:
TCString CurStatusMsg;
ULARGE_INTEGER LastUpdateTime;
} CurStatusMsg;
class CTempMsg
{ // we use temporary messages to keep user-defined per-protocol messages intact, when changing messages through MS_NAS_SETSTATE, or when autoaway becomes active etc.. temporary messages are automatically resetted when protocol status changes
public:
CTempMsg(): iIsSet(0) {}
CTempMsg& operator = (TCString Msg) {this->Msg = Msg; iIsSet = true; return *this;}
operator TCString()
{
_ASSERT(iIsSet);
return Msg;
}
void Unset() {iIsSet = false;}
int IsSet() {return iIsSet;}
private:
int iIsSet; // as we need TempMsg to support every possible value, including NULL and "", we'll use this variable to specify whether TempMsg is set
TCString Msg;
} TempMsg;
void SetParent(CProtoStates* Parent)
{
this->Parent = Parent;
Status.GrandParent = Parent;
AwaySince.GrandParent = Parent;
}
CString &GetProto() {return szProto;}
//NightFox: fix?
//private:
public:
CString szProto;
CProtoStates* Parent;
};
class CProtoStates // this class stores all protocols' dynamic data
{
public:
CProtoStates() {}
CProtoStates(const CProtoStates &States) {*this = States;}
CProtoStates& operator = (const CProtoStates& States)
{
ProtoStates = States.ProtoStates;
int i;
for (i = 0; i < ProtoStates.GetSize(); i++)
{
ProtoStates[i].SetParent(this);
}
return *this;
}
CProtoState& operator[](const char *szProto)
{
int i;
for (i = 0; i < ProtoStates.GetSize(); i++)
{
if (ProtoStates[i].GetProto() == szProto)
{
return ProtoStates[i];
}
}
if (!szProto) // we need to be sure that we have _all_ protocols in the list, before dealing with global status, so we're adding them here.
{
int ProtoCount;
PROTOCOLDESCRIPTOR **proto;
CallService(MS_PROTO_ENUMACCOUNTS, (WPARAM)&ProtoCount, (LPARAM)&proto);
int i;
for (i = 0; i < ProtoCount; i++)
{
if (proto[i]->type == PROTOTYPE_PROTOCOL)
{
(*this)[proto[i]->szName]; // add a protocol if it isn't in the list yet
}
}
}
return ProtoStates[ProtoStates.AddElem(CProtoState(szProto, this))];
}
friend class CProtoState;
friend class CProtoState::CStatus;
friend class CProtoState::CAwaySince;
private:
CProtoState& operator[](int nIndex) {return ProtoStates[nIndex];}
int GetSize() {return ProtoStates.GetSize();}
TMyArray<CProtoState> ProtoStates;
};
extern CProtoStates g_ProtoStates;
static struct
{
int Status;
char *Setting;
} StatusSettings[] = {
ID_STATUS_OFFLINE, "Off",
ID_STATUS_ONLINE, "Onl",
ID_STATUS_AWAY, "Away",
ID_STATUS_NA, "Na",
ID_STATUS_DND, "Dnd",
ID_STATUS_OCCUPIED, "Occ",
ID_STATUS_FREECHAT, "Ffc",
ID_STATUS_INVISIBLE, "Inv",
ID_STATUS_ONTHEPHONE, "Otp",
ID_STATUS_OUTTOLUNCH, "Otl",
ID_STATUS_IDLE, "Idle"
};
class CProtoSettings
{
public:
CProtoSettings(const char *szProto = NULL, int iStatus = 0): szProto(szProto), Status(iStatus, szProto)
{
Autoreply.Parent = this;
}
CString ProtoStatusToDBSetting(const char *Prefix, int MoreOpt_PerStatusID = 0)
{
if (!MoreOpt_PerStatusID || g_MoreOptPage.GetDBValueCopy(MoreOpt_PerStatusID))
{
int i;
for (i = 0; i < SIZEOF(StatusSettings); i++)
{
if (Status == StatusSettings[i].Status)
{
return szProto ? (CString(Prefix) + "_" + szProto + "_" + StatusSettings[i].Setting) : (CString(Prefix) + StatusSettings[i].Setting);
}
}
}
return szProto ? (CString(Prefix) + "_" + szProto) : CString(Prefix);
}
class CAutoreply
{
public:
CAutoreply& operator = (const int Value)
{
CString Setting(Parent->szProto ? Parent->ProtoStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPROTOSETTINGS) : DB_ENABLEREPLY);
if (db_get_b(NULL, MOD_NAME, Setting, VAL_USEDEFAULT) == Value)
{
return *this; // prevent deadlocks when calling UpdateSOEButtons
}
if (Value != VAL_USEDEFAULT)
{
db_set_b(NULL, MOD_NAME, Setting, Value != 0);
} else
{
db_unset(NULL, MOD_NAME, Setting);
}
/*if (!Parent->szProto)
{
UpdateSOEButtons();
}*/
return *this;
}
operator int() {return db_get_b(NULL, MOD_NAME, Parent->szProto ? Parent->ProtoStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPROTOSETTINGS) : DB_ENABLEREPLY, Parent->szProto ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY);}
int IncludingParents() // takes into account global data also, if per-protocol setting is not defined
{
_ASSERT(Parent->szProto);
int Value = *this;
return (Value == VAL_USEDEFAULT) ? CProtoSettings(NULL).Autoreply : Value;
}
friend class CProtoSettings;
private:
CProtoSettings *Parent;
} Autoreply;
class CStatus
{
public:
CStatus(int iStatus = 0, const char *szProto = NULL): Status(iStatus), szProto(szProto) {}
CStatus& operator = (int Status) {this->Status = Status; return *this;}
operator int()
{
if (!Status)
{
Status = g_ProtoStates[szProto].Status;
}
return Status;
}
private:
int Status;
const char *szProto;
} Status;
void SetMsgFormat(int Flags, TCString Message);
TCString GetMsgFormat(int Flags, int *pOrder = NULL);
//NightFox: fix?
//private:
public:
const char *szProto;
};
__inline CString StatusToDBSetting(int Status, const char *Prefix, int MoreOpt_PerStatusID = 0)
{
if (!MoreOpt_PerStatusID || g_MoreOptPage.GetDBValueCopy(MoreOpt_PerStatusID))
{
int i;
for (i = 0; i < SIZEOF(StatusSettings); i++)
{
if (Status == StatusSettings[i].Status)
{
return CString(Prefix) + StatusSettings[i].Setting;
}
}
}
return CString(Prefix);
}
__inline CString ContactStatusToDBSetting(int Status, const char *Prefix, int MoreOpt_PerStatusID, MCONTACT hContact)
{
if (hContact == INVALID_CONTACT_ID)
{ // it's a not-on-list contact
return CString(DB_UNK_CONTACT_PREFIX) + Prefix;
}
if (hContact)
{
StatusToDBSetting(Status, Prefix, MoreOpt_PerStatusID);
}
return CString(Prefix);
}
class CContactSettings
{
public:
CContactSettings(int iStatus = 0, MCONTACT _hContact = NULL): Status(iStatus, hContact), hContact(_hContact)
{
Ignore.Parent = this;
Autoreply.Parent = this;
// PopupNotify.Parent = this;
}
CString ContactStatusToDBSetting(const char *Prefix, int MoreOpt_PerStatusID = 0)
{
return ::ContactStatusToDBSetting((hContact != INVALID_CONTACT_ID) ? Status : NULL, Prefix, MoreOpt_PerStatusID, hContact);
}
class CIgnore
{
public:
CIgnore& operator = (const int Value)
{
CString Setting(Parent->ContactStatusToDBSetting(DB_IGNOREREQUESTS, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS));
MCONTACT hContact = (Parent->hContact != INVALID_CONTACT_ID) ? Parent->hContact : NULL;
if (Value)
{
db_set_b(hContact, MOD_NAME, Setting, 1);
} else
{
db_unset(hContact, MOD_NAME, Setting);
}
return *this;
}
operator int() {return db_get_b((Parent->hContact != INVALID_CONTACT_ID) ? Parent->hContact : NULL, MOD_NAME, Parent->ContactStatusToDBSetting(DB_IGNOREREQUESTS, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS), 0);}
friend class CContactSettings;
private:
CContactSettings *Parent;
} Ignore;
class CAutoreply
{
public:
CAutoreply& operator = (const int Value)
{
CString Setting(Parent->ContactStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS));
MCONTACT hContact = (Parent->hContact != INVALID_CONTACT_ID) ? Parent->hContact : NULL;
if (db_get_b(hContact, MOD_NAME, Setting, VAL_USEDEFAULT) == Value)
return *this; // prevent deadlocks when calling UpdateSOEButtons
if (Value != VAL_USEDEFAULT)
db_set_b(hContact, MOD_NAME, Setting, Value != 0);
else
db_unset(hContact, MOD_NAME, Setting);
return *this;
}
operator int() {return db_get_b((Parent->hContact != INVALID_CONTACT_ID) ? Parent->hContact : NULL, MOD_NAME, Parent->ContactStatusToDBSetting(DB_ENABLEREPLY, IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS), Parent->hContact ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY);}
int IncludingParents(const char *szProtoOverride = NULL) // takes into account protocol and global data also, if per-contact setting is not defined
{
_ASSERT((Parent->hContact && Parent->hContact != INVALID_CONTACT_ID) || szProtoOverride); // we need either correct protocol or a correct hContact to determine its protocol
int Value = *this;
if (Value == VAL_USEDEFAULT)
{
const char *szProto = (Parent->hContact && Parent->hContact != INVALID_CONTACT_ID) ? (const char*)CallService(MS_PROTO_GETCONTACTBASEPROTO, (WPARAM)Parent->hContact, 0) : szProtoOverride;
return CProtoSettings(szProto).Autoreply.IncludingParents();
}
return Value;
}
int GetNextToggleValue()
{
switch ((int)*this)
{
case VAL_USEDEFAULT: return 0; break;
case 0: return 1; break;
default: return Parent->hContact ? VAL_USEDEFAULT : AUTOREPLY_DEF_REPLY; break;
}
}
int Toggle() {return *this = GetNextToggleValue();}
friend class CContactSettings;
private:
CContactSettings *Parent;
} Autoreply;
/* class CPopupNotify
{
public:
CPopupNotify& operator = (const int Value)
{
//CString Setting(Parent->ContactStatusToDBSetting(DB_POPUPNOTIFY, 0)); //IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS
MCONTACT hContact = (Parent->hContact != INVALID_HANDLE_VALUE) ? Parent->hContact : NULL;
if (db_get_b(hContact, MOD_NAME, Setting, VAL_USEDEFAULT) == Value)
{
return *this; // prevent deadlocks when calling UpdateSOEButtons
}
if (Value != VAL_USEDEFAULT)
{
db_set_b(hContact, MOD_NAME, Setting, Value != 0);
} else
{
db_unset(hContact, MOD_NAME, Setting);
}
if (!Parent->hContact)
{
//UpdateSOEButtons();
}
return *this;
}
operator int() {return db_get_b((Parent->hContact != INVALID_HANDLE_VALUE) ? Parent->hContact : NULL, MOD_NAME, Parent->ContactStatusToDBSetting(DB_POPUPNOTIFY, 0), Parent->hContact ? VAL_USEDEFAULT : POPUP_DEF_USEPOPUPS);} //IDC_MOREOPTDLG_PERSTATUSPERSONALSETTINGS
int IncludingParents() // takes into account protocol and global data also, if per-contact setting is not defined
{
int Value = *this;
if (Value == VAL_USEDEFAULT)
{ // PopupNotify setting is not per-status
return CContactSettings(ID_STATUS_ONLINE).PopupNotify;
}
return Value;
}
friend class CContactSettings;
private:
CContactSettings *Parent;
} PopupNotify;
*/
class CStatus
{
public:
CStatus(int iStatus = 0, MCONTACT _hContact = NULL): Status(iStatus), hContact(_hContact) {}
CStatus& operator = (int Status) {this->Status = Status; return *this;}
operator int()
{
if (!Status)
{
_ASSERT(hContact != INVALID_CONTACT_ID);
char *szProto = hContact ? GetContactProto(hContact) : NULL;
Status = (szProto || !hContact) ? g_ProtoStates[szProto].Status : ID_STATUS_AWAY;
}
return Status;
}
friend class CPopupNotify;
friend class CAutoreply;
private:
int Status;
MCONTACT hContact;
} Status;
void SetMsgFormat(int Flags, TCString Message);
TCString GetMsgFormat(int Flags, int *pOrder = NULL, char *szProtoOverride = NULL);
//NightFox: fix?
//private:
public:
MCONTACT hContact;
};
|