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
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
|
/*
Miranda NG: the free IM client for Microsoft* Windows*
Copyright (c) 2012-14 Miranda NG project (http://miranda-ng.org)
Copyright (c) 2000-05 Miranda ICQ/IM project,
all portions of this codebase are copyrighted to the people
listed in contributors.txt.
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.
*/
#include "commonheaders.h"
int hLangpack;
HINSTANCE g_hInst = 0;
CLIST_INTERFACE *pcli = NULL, coreCli;
HIMAGELIST himlCListClc = NULL;
LRESULT CALLBACK ContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
LRESULT CALLBACK ContactListControlWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
void RebuildEntireList(HWND hwnd, ClcData *dat);
void RebuildEntireListInternal(HWND hwnd, ClcData *dat, BOOL call_orig);
void SetGroupExpand(HWND hwnd, ClcData *dat, struct ClcGroup *group, int newState);
void ScrollTo( HWND hwnd, ClcData *dat, int desty, int noSmooth );
void RecalcScrollBar(HWND hwnd, ClcData *dat);
void LoadClcOptions(HWND hwnd, ClcData *dat, BOOL);
int GetRowHeight(ClcData *dat, int item);
void SortCLC(HWND hwnd, ClcData *dat, int useInsertionSort);
int ( *pfnGetRowHeight )(ClcData *dat, int item);
void ( *pfnSortCLC )( HWND hwnd, ClcData *dat, int useInsertionSort );
/////////////////////////////////////////////////////////////////////////////////////////
// external functions
void InitCustomMenus( void );
void PaintClc(HWND hwnd, ClcData *dat, HDC hdc, RECT * rcPaint);
int ClcOptInit(WPARAM wParam, LPARAM lParam);
int CluiOptInit(WPARAM wParam, LPARAM lParam);
int CListOptInit(WPARAM wParam, LPARAM lParam);
/////////////////////////////////////////////////////////////////////////////////////////
// dll stub
BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD dwReason, LPVOID reserved)
{
g_hInst = hInstDLL;
DisableThreadLibraryCalls(g_hInst);
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////////////////
// returns the plugin information
PLUGININFOEX pluginInfo = {
sizeof(pluginInfo),
__PLUGIN_NAME,
PLUGIN_MAKE_VERSION(__MAJOR_VERSION, __MINOR_VERSION, __RELEASE_NUM, __BUILD_NUM),
__DESCRIPTION,
__AUTHOR,
__AUTHOREMAIL,
__COPYRIGHT,
__AUTHORWEB,
UNICODE_AWARE,
// {53E095A3-2695-490A-9DAD-D20479093831}
{0x53e095a3, 0x2695, 0x490a, {0x9d, 0xad, 0xd2, 0x4, 0x79, 0x9, 0x38, 0x31}}
};
extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion)
{
return &pluginInfo;
}
/////////////////////////////////////////////////////////////////////////////////////////
// returns plugin's interfaces information
extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_CLIST, MIID_LAST};
/////////////////////////////////////////////////////////////////////////////////////////
// called when number of accounts has been changed
static int OnAccountsChanged(WPARAM wParam, LPARAM lParam)
{
himlCListClc = (HIMAGELIST)CallService(MS_CLIST_GETICONSIMAGELIST, 0, 0);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// called when all modules got loaded
static int OnModulesLoaded(WPARAM wParam, LPARAM lParam)
{
himlCListClc = (HIMAGELIST)CallService(MS_CLIST_GETICONSIMAGELIST, 0, 0);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// options iniatialization
static int OnOptsInit(WPARAM wParam, LPARAM lParam)
{
ClcOptInit(wParam, lParam);
CluiOptInit(wParam, lParam);
CListOptInit(wParam, lParam);
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// menu status services
static INT_PTR GetStatusMode(WPARAM wParam, LPARAM lParam)
{
return pcli->currentDesiredStatusMode;
}
/////////////////////////////////////////////////////////////////////////////////////////
// main clist initialization routine
extern "C" int __declspec(dllexport) CListInitialise()
{
mir_getCLI();
coreCli = *pcli;
pcli->hInst = g_hInst;
pcli->pfnPaintClc = PaintClc;
pcli->pfnContactListWndProc = ContactListWndProc;
pcli->pfnContactListControlWndProc = ContactListControlWndProc;
pcli->pfnRebuildEntireList = RebuildEntireList;
pcli->pfnSetGroupExpand = SetGroupExpand;
pcli->pfnRecalcScrollBar = RecalcScrollBar;
pcli->pfnScrollTo = ScrollTo;
pcli->pfnLoadClcOptions = LoadClcOptions;
pcli->pfnGetRowHeight = GetRowHeight;
pcli->pfnSortCLC = SortCLC;
CreateServiceFunction(MS_CLIST_GETSTATUSMODE, GetStatusMode);
HookEvent(ME_SYSTEM_MODULESLOADED, OnModulesLoaded);
HookEvent(ME_PROTO_ACCLISTCHANGED, OnAccountsChanged);
HookEvent(ME_OPT_INITIALISE, OnOptsInit);
InitCustomMenus();
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
// a plugin loader aware of CList exports will never call this.
extern "C" int __declspec(dllexport) Load()
{
return 1;
}
/////////////////////////////////////////////////////////////////////////////////////////
// a plugin unloader
extern "C" int __declspec(dllexport) Unload(void)
{
return 0;
}
/////////////////////////////////////////////////////////////////////////////////////////
TCHAR* MyDBGetContactSettingTString(MCONTACT hContact, char* module, char* setting, TCHAR* out, size_t len, TCHAR *def)
{
DBVARIANT dbv;
out[0] = _T('\0');
if (!db_get_ts(hContact, module, setting, &dbv)) {
if (dbv.type == DBVT_ASCIIZ)
MultiByteToWideChar(CP_ACP, 0, dbv.pszVal, -1, out, (int)len);
else if (dbv.type == DBVT_UTF8)
MultiByteToWideChar(CP_UTF8, 0, dbv.pszVal, -1, out, (int)len);
else if (dbv.type == DBVT_WCHAR)
lstrcpyn(out, dbv.pwszVal, (int)len);
else if (def != NULL)
lstrcpyn(out, def, (int)len);
db_free(&dbv);
}
else {
if (def != NULL)
lstrcpyn(out, def, (int)len);
}
return out;
}
#define DATA_BLOCK 128
typedef struct
{
TCHAR *text;
size_t allocated;
size_t used;
} StringHelper;
int CopyData(StringHelper *str, const TCHAR *text, size_t len)
{
size_t totalSize;
if (len == 0)
return 0;
if (text == NULL)
return 0;
totalSize = str->used + len + 1;
if (totalSize > str->allocated)
{
totalSize += DATA_BLOCK - (totalSize % DATA_BLOCK);
if (str->text != NULL)
{
TCHAR *tmp = (TCHAR *) mir_realloc(str->text, sizeof(TCHAR) * totalSize);
if (tmp == NULL)
{
mir_free(str->text);
return -1;
}
str->text = tmp;
}
else
{
str->text = (TCHAR *) mir_alloc(sizeof(TCHAR) * totalSize);
if (str->text == NULL)
{
return -2;
}
}
str->allocated = totalSize;
}
memmove(&str->text[str->used], text, sizeof(TCHAR) * len);
str->used += len;
str->text[str->used] = '\0';
return 0;
}
TCHAR * ParseText(const TCHAR *text,
const TCHAR **variables, size_t variablesSize,
const TCHAR **data, size_t dataSize)
{
size_t length = lstrlen(text);
size_t nextPos = 0;
StringHelper ret = {0};
size_t i;
// length - 1 because a % in last char will be a % and point
for (i = 0 ; i < length - 1 ; i++)
{
if (text[i] == _T('%'))
{
BOOL found = FALSE;
if (CopyData(&ret, &text[nextPos], i - nextPos))
return NULL;
if (text[i + 1] == _T('%'))
{
if (CopyData(&ret, _T("%"), 1))
return NULL;
i++;
found = TRUE;
}
else
{
size_t size = min(variablesSize, dataSize);
size_t j;
// See if can find it
for(j = 0 ; j < size ; j++)
{
size_t vlen = lstrlen(variables[j]);
if (_tcsnicmp(&text[i], variables[j], vlen) == 0)
{
if (CopyData(&ret, data[j], lstrlen(data[j])))
return NULL;
i += vlen - 1;
found = TRUE;
break;
}
}
}
if (found)
nextPos = i + 1;
else
nextPos = i;
}
}
if (nextPos < length)
if (CopyData(&ret, &text[nextPos], length - nextPos))
return NULL;
return ret.text;
}
LRESULT CALLBACK ContactListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg) {
case WM_NCCREATE:
{
break;
}
case WM_CREATE:
{
break;
}
}
return coreCli.pfnContactListWndProc(hwnd, msg, wParam, lParam);
}
LRESULT CALLBACK ContactListControlWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
ClcData *dat = (ClcData*)GetWindowLongPtr(hwnd, 0);
RECT r;
switch (msg) {
case WM_CREATE:
dat = (ClcData*)mir_calloc( sizeof(ClcData));
SetWindowLongPtr(hwnd, 0, (LONG_PTR) dat);
dat->hwnd_list = CreateWindow(_T("LISTBOX"), _T(""),
(WS_VISIBLE | WS_CHILD | LBS_NOINTEGRALHEIGHT | LBS_NOTIFY | LBS_WANTKEYBOARDINPUT | WS_VSCROLL),
0, 0, 0, 0, hwnd, NULL, g_hInst,0);
dat->need_rebuild = FALSE;
GetClientRect(hwnd, &r);
SetWindowPos(dat->hwnd_list, 0, r.left, r.top, r.right - r.left, r.bottom - r.top, SWP_NOZORDER | SWP_NOACTIVATE);
break;
case WM_SIZE:
GetClientRect(hwnd, &r);
SetWindowPos(dat->hwnd_list, 0, r.left, r.top, r.right - r.left, r.bottom - r.top, SWP_NOZORDER | SWP_NOACTIVATE);
break;
case WM_PRINTCLIENT:
case WM_PAINT:
if (dat->need_rebuild)
RebuildEntireListInternal(hwnd, (ClcData*)dat, FALSE);
// no break
case WM_VSCROLL:
case WM_MOUSEWHEEL:
case WM_KEYDOWN:
return DefWindowProc(hwnd, msg, wParam, lParam);
case INTM_SCROLLBARCHANGED:
return TRUE;
case WM_VKEYTOITEM:
{
int key = LOWORD(wParam);
if (key == VK_LEFT || key == VK_RIGHT || key == VK_RETURN || key == VK_DELETE || key == VK_F2) {
coreCli.pfnContactListControlWndProc(hwnd, WM_KEYDOWN, key, 0);
return dat->selection;
}
NMKEY nmkey;
nmkey.hdr.hwndFrom = hwnd;
nmkey.hdr.idFrom = GetDlgCtrlID(hwnd);
nmkey.hdr.code = NM_KEYDOWN;
nmkey.nVKey = key;
nmkey.uFlags = 0;
if ( SendMessage(GetParent(hwnd), WM_NOTIFY, 0, (LPARAM) & nmkey))
return -2;
}
return -1;
case WM_COMMAND:
if ((HANDLE) lParam != dat->hwnd_list || HIWORD(wParam) != LBN_SELCHANGE)
break;
dat->selection = SendMessage(dat->hwnd_list, LB_GETCURSEL, 0, 0);
KillTimer(hwnd, TIMERID_INFOTIP);
KillTimer(hwnd, TIMERID_RENAME);
dat->szQuickSearch[0] = 0;
pcli->pfnInvalidateRect(hwnd, NULL, FALSE);
pcli->pfnEnsureVisible(hwnd, (ClcData*)dat, dat->selection, 0);
UpdateWindow(hwnd);
break;
case WM_SETFOCUS:
case WM_ENABLE:
SetFocus(dat->hwnd_list);
break;
}
return coreCli.pfnContactListControlWndProc(hwnd, msg, wParam, lParam);
}
static int GetRealStatus(struct ClcContact *contact, int status)
{
int i;
char *szProto = contact->proto;
if (!szProto)
return status;
for (i = 0; i < pcli->hClcProtoCount; i++) {
if (!lstrcmpA(pcli->clcProto[i].szProto, szProto)) {
return pcli->clcProto[i].dwStatus;
}
}
return status;
}
TCHAR status_name[128];
TCHAR *GetStatusName(struct ClcContact *item)
{
int status;
status_name[0] = _T('\0');
if (item->hContact == NULL || item->proto == NULL)
return status_name;
// Get XStatusName
MyDBGetContactSettingTString(item->hContact, item->proto, "XStatusName", status_name, MAX_REGS(status_name), NULL);
if (status_name[0] != _T('\0'))
return status_name;
// Get status name
status = db_get_w(item->hContact, item->proto, "Status", ID_STATUS_OFFLINE);
lstrcpyn(status_name, pcli->pfnGetStatusModeDescription(status, GSMDF_TCHAR), MAX_REGS(status_name));
return status_name;
}
TCHAR status_message[256];
TCHAR *GetStatusMessage(struct ClcContact *item)
{
status_message[0] = _T('\0');
if (item->hContact == NULL || item->proto == NULL)
return status_message;
// Get XStatusMsg
MyDBGetContactSettingTString(item->hContact, item->proto, "XStatusMsg", status_message, MAX_REGS(status_message), NULL);
if (status_message[0] != _T('\0'))
return status_message;
// Get status message
MyDBGetContactSettingTString(item->hContact, "CList", "StatusMsg", status_message, MAX_REGS(status_message), NULL);
return status_message;
}
TCHAR proto_name[128];
TCHAR *GetProtoName(struct ClcContact *item)
{
PROTOACCOUNT *acc;
#ifdef UNICODE
char description[128];
#endif
proto_name[0] = '\0';
if (item->hContact == NULL || item->proto == NULL)
{
lstrcpyn(proto_name, TranslateT("Unknown Protocol"), MAX_REGS(proto_name));
return proto_name;
}
acc = ProtoGetAccount(item->proto);
if (acc == NULL)
{
#ifdef UNICODE
CallProtoService(item->proto, PS_GETNAME, sizeof(description),(LPARAM) description);
mir_sntprintf(proto_name, MAX_REGS(proto_name), L"%S", description);
#else
CallProtoService(item->proto, PS_GETNAME, sizeof(proto_name),(LPARAM) proto_name);
#endif
return proto_name;
}
lstrcpyn(proto_name, acc->tszAccountName, MAX_REGS(proto_name));
return proto_name;
}
void RebuildEntireListInternal(HWND hwnd, ClcData *tmp_dat, BOOL call_orig)
{
ClcData *dat = (ClcData*)tmp_dat;
struct ClcGroup *group;
struct ClcContact *item;
TCHAR tmp[1024];
TCHAR count[128];
TCHAR template_contact[1024];
TCHAR template_group[1024];
TCHAR template_divider[1024];
TCHAR template_info[1024];
TCHAR *text;
size_t size;
int selection = dat->selection;
BOOL has_focus = (GetFocus() == dat->hwnd_list || GetFocus() == hwnd);
if (call_orig)
coreCli.pfnRebuildEntireList(hwnd, (ClcData*)dat);
MyDBGetContactSettingTString(NULL, "CLC", "TemplateContact", template_contact, 1024, TranslateT("%name% [%status% %protocol%] %status_message%"));
MyDBGetContactSettingTString(NULL, "CLC", "TemplateGroup", template_group, 1024, TranslateT("Group: %name% %count% [%mode%]"));
MyDBGetContactSettingTString(NULL, "CLC", "TemplateDivider", template_divider, 1024, TranslateT("Divider: %s"));
MyDBGetContactSettingTString(NULL, "CLC", "TemplateInfo", template_info, 1024, TranslateT("Info: %s"));
SendMessage(dat->hwnd_list, WM_SETREDRAW, FALSE, 0);
// Reset content
SendMessage(dat->hwnd_list, LB_RESETCONTENT, 0, 0);
// Set font
SendMessage(dat->hwnd_list, WM_SETFONT, (WPARAM) dat->fontInfo[FONTID_CONTACTS].hFont, 0);
// Add all items to the list
group = &dat->list;
group->scanIndex = 0;
text = tmp;
size = MAX_REGS(tmp);
while(1)
{
if (group->scanIndex == group->cl.count)
{
group = group->parent;
if (group == NULL)
break;
text -= 2;
size += 2;
group->scanIndex++;
continue;
}
item = group->cl.items[group->scanIndex];
text[0] = _T('\0');
switch(item->type)
{
case CLCIT_GROUP:
{
char *szCounts = pcli->pfnGetGroupCountsText((ClcData*)dat, item);
const TCHAR *t[] = {
_T("%name%"),
_T("%count%"),
_T("%mode%")
};
const TCHAR *v[] = {
item->szText,
count,
item->group->expanded ? TranslateT("Expanded") : TranslateT("Collapsed")
};
TCHAR *txt;
if (szCounts[0] != '\0')
{
#ifdef UNICODE
mir_sntprintf(count, MAX_REGS(count), L"%S ", szCounts);
#else
mir_sntprintf(count, MAX_REGS(count), "%s ", szCounts);
#endif
}
else
{
count[0] = _T('\0');
}
txt = ParseText(template_group, t, MAX_REGS(t), v, MAX_REGS(v));
if (txt != NULL)
lstrcpyn(text, txt, (int)size);
mir_free(txt);
break;
}
case CLCIT_CONTACT:
{
char *szCounts = pcli->pfnGetGroupCountsText((ClcData*)dat, item);
const TCHAR *t[] = {
_T("%name%"),
_T("%status%"),
_T("%protocol%"),
_T("%status_message%")
};
const TCHAR *v[] = {
item->szText,
GetStatusName(item),
GetProtoName(item),
GetStatusMessage(item)
};
TCHAR *txt = ParseText(template_contact, t, MAX_REGS(t), v, MAX_REGS(v));
if (txt != NULL)
lstrcpyn(text, txt, (int)size);
mir_free(txt);
break;
}
case CLCIT_DIVIDER:
{
mir_sntprintf(text, size, template_divider, item->szText);
break;
}
case CLCIT_INFO:
{
mir_sntprintf(text, size, template_info, item->szText);
break;
}
}
SendMessage(dat->hwnd_list, LB_ADDSTRING, 0, (LPARAM) tmp);
if (item->type == CLCIT_GROUP && item->group->expanded)
{
group = item->group;
text[0] = _T(' ');
text[1] = _T(' ');
text += 2;
size -= 2;
group->scanIndex = 0;
continue;
}
group->scanIndex++;
}
SendMessage(dat->hwnd_list, WM_SETREDRAW, TRUE, 0);
InvalidateRect(dat->hwnd_list, NULL, TRUE);
dat->selection = selection;
SendMessage(dat->hwnd_list, LB_SETCURSEL, dat->selection, 0);
if (has_focus)
SetFocus(dat->hwnd_list);
dat->need_rebuild = FALSE;
}
void RebuildEntireList(HWND hwnd, ClcData *dat)
{
RebuildEntireListInternal(hwnd, dat, TRUE);
}
void SetGroupExpand(HWND hwnd, ClcData *tmp_dat, struct ClcGroup *group, int newState)
{
ClcData *dat = (ClcData*)tmp_dat;
coreCli.pfnSetGroupExpand(hwnd, tmp_dat, group, newState);
dat->need_rebuild = TRUE;
}
void ScrollTo(HWND hwnd, ClcData *dat, int desty, int noSmooth)
{
}
void RecalcScrollBar(HWND hwnd, ClcData *dat)
{
}
void LoadClcOptions(HWND hwnd, ClcData *dat, BOOL bFirst)
{
coreCli.pfnLoadClcOptions(hwnd, dat, bFirst);
dat->filterSearch = 0;
dat->rowHeight = SendMessage(dat->hwnd_list, LB_GETITEMHEIGHT, 0, 0);
}
int GetRowHeight(ClcData *tmp_dat, int item)
{
ClcData *dat = (ClcData*)tmp_dat;
dat->rowHeight = SendMessage(dat->hwnd_list, LB_GETITEMHEIGHT, 0, 0);
return dat->rowHeight;
}
void SortCLC(HWND hwnd, ClcData *tmp_dat, int useInsertionSort)
{
if ( tmp_dat->needsResort )
{
ClcData *dat = (ClcData*)tmp_dat;
pfnSortCLC(hwnd, tmp_dat, useInsertionSort);
dat->need_rebuild = TRUE;
}
}
|