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
|
{$INCLUDE compilers.inc}
unit mircontacts;
interface
uses
Windows,
m_api;
//----- Contact info -----
function GetContactStatus(hContact:TMCONTACT):integer;
//----- Contact type check -----
function IsChat(hContact:TMCONTACT):bool;
function IsMirandaUser(hContact:TMCONTACT):integer; // >0=Miranda; 0=Not miranda; -1=unknown
//----- Save / Load contact -----
function LoadContact(group,setting:PAnsiChar):TMCONTACT;
function SaveContact(hContact:TMCONTACT;group,setting:PAnsiChar):integer;
function FindContactHandle(Proto:PAnsiChar;const dbv:TDBVARIANT;is_chat:boolean=false):TMCONTACT;
//----- Another functions -----
function GetCListSelContact:TMCONTACT;
function WndToContact(wnd:HWND):TMCONTACT; overload;
function WndToContact:TMCONTACT; overload;
procedure ShowContactDialog(hContact:TMCONTACT;DblClk:boolean=true;anystatus:boolean=true);
//----- List of contacts (combobox) -----
procedure FillContactList(list:HWND;filter:boolean=true;format:PWideChar=nil);
function FindContact (list:HWND;contact:TMCONTACT):integer;
implementation
uses
messages,
common, syswin, datetime,
dbsettings;
//----- Contact info -----
function GetContactStatus(hContact:TMCONTACT):integer;
var
szProto:PAnsiChar;
begin
szProto:=Proto_GetBaseAccountName(hContact);
if szProto=nil then
result:=ID_STATUS_OFFLINE
else
result:=DBReadWord(hContact,szProto,'Status',ID_STATUS_OFFLINE);
end;
//----- Contact type check -----
function IsChat(hContact:TMCONTACT):bool;
begin
result:=DBReadByte(hContact,Proto_GetBaseAccountName(hContact),'ChatRoom',0)=1;
end;
function IsMirandaUser(hContact:TMCONTACT):integer; // >0=Miranda; 0=Not miranda; -1=unknown
var
sz:PAnsiChar;
begin
sz:=DBReadString(hContact,Proto_GetBaseAccountName(hContact),'MirVer');
if sz<>nil then
begin
result:=int_ptr(StrPos(sz,'Miranda'));
mFreeMem(sz);
end
else
result:=-1;
end;
function IsContactActive(hContact:TMCONTACT;Proto:PAnsiChar=nil):integer;
var
p:PPROTOACCOUNT;
name: array [0..31] of AnsiChar;
begin
if db_get_static(hContact,'Protocol','p',@name,SizeOf(name))=0 then
begin
result:=0;
p:=Proto_GetAccount(@name);
if p=nil then
result:=-2 // deleted
else if (not p^.bIsEnabled) or p^.bDynDisabled then
result:=-1; // disabled
if (result=0) and (DBReadByte(hContact,strCList,'Hidden',0)=0) then
begin
result:=255;
if db_mc_getMeta(hContact)<>0 then
result:=2;
if StrCmp(Proto_GetBaseAccountName(hContact),META_PROTO)=0 then
result:=1;
end;
if Proto<>nil then
StrCopy(Proto,@name);
end
else
begin
result:=-2;
if Proto<>nil then
Proto^:=#0;
end;
end;
//----- Save / Load contact -----
const
opt_cproto = 'cproto';
opt_cuid = 'cuid';
opt_ischat = 'ischat';
function FindContactHandle(Proto:PAnsiChar;const dbv:TDBVARIANT;is_chat:boolean=false):TMCONTACT;
var
uid:PAnsiChar;
ldbv:TDBVARIANT;
hContact:TMCONTACT;
pw:PWideChar;
begin
result:=0;
uid:=nil;
if not is_chat then
begin
uid:=Proto_GetUniqueId(Proto);
if uid=nil then exit;
end;
hContact:=db_find_first();
while hContact<>0 do
begin
if DBReadSetting(hContact,Proto,uid,@ldbv)=0 then
begin
if dbv._type=ldbv._type then
begin
case dbv._type of
// DBVT_DELETED: ;
DBVT_BYTE : if dbv.bVal=ldbv.bVal then result:=hContact;
DBVT_WORD : if dbv.wVal=ldbv.wVal then result:=hContact;
DBVT_DWORD : if dbv.dVal=ldbv.dVal then result:=hContact;
DBVT_UTF8,
DBVT_ASCIIZ : if StrCmp (dbv.szVal.A,ldbv.szVal.A)=0 then result:=hContact;
DBVT_WCHAR : if StrCmpW(dbv.szVal.W,ldbv.szVal.W)=0 then result:=hContact;
DBVT_BLOB : begin
if dbv.cpbVal = ldbv.cpbVal then
begin
if CompareMem(dbv.pbVal,ldbv.pbVal,dbv.cpbVal) then
result:=hContact;
end;
end;
end;
end;
db_free(@ldbv);
end;
// added 2011.04.20
if result<>0 then break;
hContact:=db_find_next(hContact);
end;
end;
function LoadContact(group,setting:PAnsiChar):TMCONTACT;
var
p,Proto:PAnsiChar;
section:array [0..63] of AnsiChar;
dbv:TDBVARIANT;
is_chat:boolean;
begin
p:=StrCopyE(section,setting);
StrCopy(p,opt_cproto); Proto :=DBReadString(0,group,section);
StrCopy(p,opt_ischat); is_chat:=DBReadByte (0,group,section,0)<>0;
StrCopy(p,opt_cuid );
if is_chat then
dbv.szVal.W:=DBReadUnicode(0,group,section,@dbv)
else
DBReadSetting(0,group,section,@dbv);
result:=FindContactHandle(Proto,dbv,is_chat);
mFreeMem(Proto);
if not is_chat then
db_free(@dbv)
else
mFreeMem(dbv.szVal.W);
end;
function SaveContact(hContact:TMCONTACT;group,setting:PAnsiChar):integer;
var
p,Proto,uid:PAnsiChar;
cws:TDBVARIANT;
section:array [0..63] of AnsiChar;
pw:PWideChar;
is_chat:boolean;
begin
result:=0;
Proto:=Proto_GetBaseAccountName(hContact);
if Proto<>nil then
begin
p:=StrCopyE(section,setting);
uid:=Proto_GetUniqueId(Proto);
if uid<>nil then
begin
if DBReadSetting(hContact,Proto,uid,@cws)=0 then
begin
StrCopy(p,opt_cuid); DBWriteSetting(0,group,section,@cws);
db_free(@cws);
result:=1;
end;
end;
if result<>0 then
begin
StrCopy(p,opt_cproto); DBWriteString(0,group,section,Proto);
StrCopy(p,opt_ischat); DBWriteByte (0,group,section,ord(is_chat));
end;
end;
end;
//----- Another functions -----
function GetCListSelContact:TMCONTACT;
begin
result:=SendMessageW(cli^.hwndContactTree,CLM_GETSELECTION,0,0);
end;
function WndToContact(wnd:HWND):TMCONTACT;
var
hContact:TMCONTACT;
mwod:TMessageWindowData;
begin
wnd:=GetParent(wnd);
hContact:=db_find_first();
while hContact<>0 do
begin
if Srmm_GetWindowData(hContact,@mwod)=0 then
begin
if mwod.hwndWindow=wnd then
begin
result:=hContact;
exit;
end
end;
hContact:=db_find_next(hContact);
end;
result:=0;
end;
function WndToContact:TMCONTACT; overload;
var
wnd:HWND;
begin
wnd:=GetFocus;
if wnd=0 then
wnd:=WaitFocusedWndChild(GetForegroundWindow);
if wnd<>0 then
result:=WndToContact(wnd)
else
result:=0;
if result=0 then
result:=GetCListSelContact;
end;
procedure ShowContactDialog(hContact:TMCONTACT;DblClk:boolean=true;anystatus:boolean=true);
var
pc:array [0..127] of AnsiChar;
begin
if (hContact<>0) and (db_is_contact(hContact)<>0) then
begin
if StrCopy(pc,Proto_GetBaseAccountName(hContact))<>nil then
if DblClk or (DBReadByte(hContact,pc,'ChatRoom',0)=1) then // chat room
begin
if not anystatus then
begin
anystatus:=(Proto_GetStatus(pc)<>ID_STATUS_OFFLINE);
end;
if anystatus then
begin
Clist_ContactDoubleClicked(hContact);
// if chat exist, open chat
// else create new session
end;
end
else
CallService(MS_MSG_SENDMESSAGE,hContact,0);
end;
end;
//----- List of contacts -----
const
defformat = '%name% - %uid% (%account%:%group%)';
procedure FillContactList(list:HWND; filter:boolean=true;format:PWideChar=nil);
var
hContact:TMCONTACT;
buf:array [0..511] of WideChar;
buf1:array [0..63] of WideChar;
p:PWideChar;
uid:PAnsiChar;
ldbv:TDBVARIANT;
acc:PAnsiChar;
lName,
lGroup,
lAccount,
lUID:boolean;
begin
if format=nil then format:=defformat;
SendMessage(list,CB_RESETCONTENT,0,0);
hContact:=db_find_first();
lName :=StrPosW(format,'%name%')<>nil;
lGroup :=StrPosW(format,'%group%')<>nil;
lAccount:=StrPosW(format,'%account%')<>nil;
lUID :=StrPosW(format,'%uid%')<>nil;
while hContact<>0 do
begin
if ((not filter) and ((IsContactActive(hContact)+1)>=0)) or // + disabled (not deleted)
(filter and (IsContactActive(hContact) >=0)) then
begin
StrCopyW(buf,format);
if lName then
StrReplaceW(buf,'%name%', Clist_GetContactDisplayName(hContact,0));
if lGroup then
begin
p:=DBReadUnicode(hContact,strCList,'Group',nil);
StrReplaceW(buf,'%group%',p);
mFreeMem(p);
end;
if lAccount then
begin
acc:=Proto_GetBaseAccountName(hContact);
StrReplaceW(buf,'%account%',FastAnsiToWideBuf(acc,buf1));
end
else
acc:=nil;
if lUID then
begin
if acc=nil then
acc:=Proto_GetBaseAccountName(hContact);
uid:=Proto_GetUniqueId(acc);
if uid<>nil then
begin
if DBReadSetting(hContact,acc,uid,@ldbv)=0 then
begin
case ldbv._type of
DBVT_DELETED: p:='[deleted]';
DBVT_BYTE : p:=IntToStr(buf1,ldbv.bVal);
DBVT_WORD : p:=IntToStr(buf1,ldbv.wVal);
DBVT_DWORD : p:=IntToStr(buf1,ldbv.dVal);
DBVT_UTF8 : UTF8ToWide(ldbv.szVal.A,p);
DBVT_ASCIIZ : AnsiToWide(ldbv.szVal.A,p,Langpack_GetDefaultCodePage);
DBVT_WCHAR : p:=ldbv.szVal.W;
DBVT_BLOB : p:='blob';
end;
StrReplaceW(buf,'%uid%',p);
if ldbv._type in [DBVT_UTF8,DBVT_ASCIIZ] then
mFreeMem(p);
db_free(@ldbv);
end;
end;
StrReplaceW(buf,'%uid%',nil);
end;
SendMessage(list,CB_SETITEMDATA,
SendMessageW(list,CB_ADDSTRING,0,tlparam(@buf)),
hContact);
end;
hContact:=db_find_next(hContact);
end;
end;
function FindContact(list:HWND;contact:TMCONTACT):integer;
var
j:integer;
begin
result:=0;
j:=SendMessage(list,CB_GETCOUNT,0,0);
while j>0 do
begin
dec(j);
if TMCONTACT(SendMessage(list,CB_GETITEMDATA,j,0))=contact then
begin
result:=j;
break;
end;
end;
end;
end.
|