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
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
|
#include "headers.h"
static BOOL populating = 0;
int Select = 0;
static ModuleTreeInfoStruct contacts_mtis = {CONTACT_ROOT_ITEM, 0};
static ModuleTreeInfoStruct settings_mtis = {CONTACT, 0};
int doContacts(HWND hwnd2Tree,HTREEITEM contactsRoot,ModuleSettingLL *modlist, HANDLE hSelectedContact, char *SelectedModule, char *SelectedSetting)
{
TVINSERTSTRUCT tvi;
char szProto[256];
HANDLE hContact;
HTREEITEM contact;
ModuleTreeInfoStruct *lParam;
struct ModSetLinkLinkItem *module;
int count = CallService(MS_DB_CONTACT_GETCOUNT, 0, 0);
int itemscount = 0;
int loaded, i = 0, icon = 0;
HWND hwnd = GetParent(hwnd2Tree);
int hItem = -1;
// char percent[96], title[64];
// mir_snprintf(title, sizeof(title),Translate("Loading contacts..."));
SetWindowText(hwnd2mainWindow, Translate("Loading contacts..."));
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
tvi.hInsertAfter = TVI_SORT;
tvi.item.cChildren = 1;
while (hContact && hwnd2mainWindow) // break after null contact
{
if (GetValue(hContact,"Protocol","p",szProto,SIZEOF(szProto)))
{
icon = GetProtoIcon(szProto);
loaded = (icon != DEF_ICON);
}
else
{
icon = DEF_ICON;
loaded = 0;
}
i++;
// filter
if ((loaded && Mode == MODE_UNLOADED) || (!loaded && Mode == MODE_LOADED))
{
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
continue;
}
// Caption
// mir_snprintf(percent,sizeof(percent),"%s %d%%",title,(int)(100*i/count));
// SetWindowText(hwnd2mainWindow, percent);
// add the contact
lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
lParam->hContact = hContact;
lParam->type = CONTACT;
tvi.item.mask = TVIF_TEXT|TVIF_CHILDREN|TVIF_PARAM|TVIF_IMAGE|TVIF_SELECTEDIMAGE;
tvi.item.lParam = (LPARAM)lParam;
tvi.hParent = contactsRoot;
if (hSelectedContact != hContact)
lParam->type |= EMPTY;
// contacts name
if (UOS)
{
DBVARIANT dbv ={0};
WCHAR nick[256];
WCHAR protoW[256]; // unicode proto
if (szProto[0])
a2u(szProto, protoW, SIZEOF(protoW));
else
protoW[0] = 0;
if (!szProto[0] || !loaded)
{
tvi.item.iSelectedImage = (tvi.item.iImage = 4);
if (protoW)
{
if (Order)
mir_snwprintf(nick, SIZEOF(nick), L"(%s) %s %s", protoW, GetContactName(hContact, szProto, 1), L"(UNLOADED)");
else
mir_snwprintf(nick, SIZEOF(nick), L"%s (%s) %s", GetContactName(hContact, szProto, 1), protoW, L"(UNLOADED)");
}
else
wcscpy(nick, nick_unknownW);
}
else
{
tvi.item.iSelectedImage = (tvi.item.iImage = icon); //GetProtoIcon(szProto, 7));
if (Order)
mir_snwprintf(nick, SIZEOF(nick), L"(%s) %s", protoW, GetContactName(hContact, szProto, 1));
else
mir_snwprintf(nick, SIZEOF(nick), L"%s (%s)", GetContactName(hContact, szProto, 1), protoW);
}
tvi.item.pszText = (char*)nick;
contact = TreeView_InsertItemW(hwnd2Tree, &tvi);
}
else
{
char nick[256];
if (!szProto[0] || !loaded)
{
tvi.item.iSelectedImage = (tvi.item.iImage = 4);
if (szProto[0])
{
if (Order)
mir_snprintf(nick, SIZEOF(nick), "(%s) %s %s", szProto, (char*)GetContactName(hContact, szProto, 0), "(UNLOADED)");
else
mir_snprintf(nick, SIZEOF(nick), "%s (%s) %s", (char*)GetContactName(hContact, szProto, 0), szProto, "(UNLOADED)");
}
else
strcpy(nick, nick_unknown);
}
else
{
tvi.item.iSelectedImage = (tvi.item.iImage = icon); //GetProtoIcon(szProto, 7));
if (Order)
mir_snprintf(nick, SIZEOF(nick), "(%s) %s", szProto, (char*)GetContactName(hContact, szProto, 0));
else
mir_snprintf(nick, SIZEOF(nick), "%s (%s)", (char*)GetContactName(hContact, szProto, 0), szProto);
}
tvi.item.pszText = nick;
contact = TreeView_InsertItem(hwnd2Tree, &tvi);
}
itemscount++;
if (hSelectedContact == hContact)
{
module = modlist->first;
while(module && hwnd2mainWindow)
{
if (module->name[0] && !IsModuleEmpty(hContact,module->name))
{
tvi.hParent = contact;
tvi.hInsertAfter = TVI_SORT;
tvi.item.mask = TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE|TVIF_PARAM;
tvi.item.pszText = module->name;
lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
lParam->hContact = hContact;
if (!module->known)
{
tvi.item.iImage = 5;
tvi.item.iSelectedImage = 6;
lParam->type = UNKNOWN_MODULE;
}
else
{
tvi.item.iImage = 1;
tvi.item.iSelectedImage = 2;
lParam->type = KNOWN_MODULE;
}
tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
module = (struct ModSetLinkLinkItem *)module->next;
}
hItem = findItemInTree(hwnd2Tree, hSelectedContact, SelectedModule);
}
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
}
if (hItem != -1)
{
TreeView_SelectItem(hwnd2Tree, (HTREEITEM)hItem);
TreeView_Expand(hwnd2Tree,hItem,TVE_EXPAND);
if (SelectedSetting[0]) SelectSetting(SelectedSetting);
}
// if (UOS)
// SetWindowText(hwnd, Translate("Database Editor++ (unicode mode)"));
// else
// SetWindowText(hwnd, Translate("Database Editor++ (ansi mode)"));
return itemscount;
}
void doItems(HWND hwnd2Tree,ModuleSettingLL *modlist, int count)
{
TVINSERTSTRUCT tvi;
TVITEM item ={0};
HANDLE hContact;
HTREEITEM contact;
ModuleTreeInfoStruct *lParam;
struct ModSetLinkLinkItem *module;
char percent[96], title[64];
HWND hwnd = GetParent(hwnd2Tree);
int i = 0;
mir_snprintf(title, SIZEOF(title), Translate("Loading modules..."));
item.mask = TVIF_STATE|TVIF_PARAM;
contact = TreeView_GetChild( hwnd2Tree, TVI_ROOT );
contact = TreeView_GetNextSibling(hwnd2Tree, contact);
contact = TreeView_GetChild(hwnd2Tree, contact);
while (contact && hwnd2mainWindow)
{
i++;
item.hItem = contact;
contact = TreeView_GetNextSibling(hwnd2Tree, contact);
if (TreeView_GetItem( hwnd2Tree, &item ) &&
item.lParam) // && item.state != TVE_EXPAND)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)item.lParam;
hContact = mtis->hContact;
if (hContact == NULL || mtis->type != (CONTACT|EMPTY))
continue;
else
mtis->type = CONTACT;
}
else continue;
// Caption
mir_snprintf(percent, SIZEOF(percent), "%s %d%%", title, (int)(100*i/count));
SetWindowText(hwnd, percent);
module = modlist->first;
while(module && hwnd2mainWindow)
{
if (module->name[0] && !IsModuleEmpty(hContact,module->name))
{
tvi.hParent = item.hItem;
tvi.hInsertAfter = TVI_SORT;
tvi.item.mask = TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE|TVIF_PARAM;
tvi.item.pszText = module->name;
lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
lParam->hContact = hContact;
if (!module->known)
{
tvi.item.iImage = 5;
tvi.item.iSelectedImage = 6;
lParam->type = UNKNOWN_MODULE;
}
else
{
tvi.item.iImage = 1;
tvi.item.iSelectedImage = 2;
lParam->type = KNOWN_MODULE;
}
tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
module = (struct ModSetLinkLinkItem *)module->next;
}
}
if (UOS)
SetWindowText(hwnd, Translate("Database Editor++ (unicode mode)"));
else
SetWindowText(hwnd, Translate("Database Editor++ (ansi mode)"));
}
int findItemInTree(HWND hwnd2Tree, HANDLE hContact, char* module)
/* the following code to go through the whole tree is nicked from codeguru..
http://www.codeguru.com/Cpp/controls/treeview/treetraversal/comments.php/c683/?thread=7680 */
{
TVITEM item;
char text[265];
HTREEITEM lastItem;
if (!TreeView_GetCount(hwnd2Tree)) return 0;
item.mask = TVIF_STATE|TVIF_PARAM|TVIF_TEXT;
item.hItem = TVI_ROOT;
item.pszText = text;
item.cchTextMax = 264;
do
{
do
{
lastItem = item.hItem;
if (lastItem != TVI_ROOT)
{
/* these next 2 lines are not from code guru..... */
if (TreeView_GetItem( hwnd2Tree, &item) && item.lParam)
{
if ((hContact == ((ModuleTreeInfoStruct *)item.lParam)->hContact) && (!module[0] || !mir_strcmp(module,text)))
{
//TreeView_SelectItem(hwnd2Tree,item.hItem);
return (int)item.hItem;
}
}
/* back to coduguru's code*/
}
} while ( (item.hItem = TreeView_GetChild( hwnd2Tree, lastItem )) );
while ( (! (item.hItem = TreeView_GetNextSibling( hwnd2Tree, lastItem ))) && (lastItem = item.hItem = TreeView_GetParent( hwnd2Tree, lastItem )) ) {}
} while ( item.hItem );
/*****************************************************************************/
return -1;
}
void freeTree(HWND hwnd2Tree, HANDLE hContact)
/* the following code to go through the whole tree is nicked from codeguru..
http://www.codeguru.com/Cpp/controls/treeview/treetraversal/comments.php/c683/?thread=7680 */
{
TVITEM item;
HTREEITEM lastItem;
if (!TreeView_GetCount(hwnd2Tree)) return;
item.mask = TVIF_STATE|TVIF_PARAM;
item.hItem = TVI_ROOT;
do
{
do
{
lastItem = item.hItem;
if (lastItem != TVI_ROOT)
{
TreeView_GetItem( hwnd2Tree, &item );
/* these next 2 lines are not from code guru..... */
if (item.lParam)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)item.lParam;
if (!hContact || (hContact == mtis->hContact))
{
if (hContact != NULL) {
TreeView_DeleteItem(hwnd2Tree,item.hItem);
mir_free(mtis);
} else
mtis->type = STUB;
}
}
/* back to coduguru's code*/
}
} while ( (item.hItem = TreeView_GetChild( hwnd2Tree, lastItem )) );
while ( (! (item.hItem = TreeView_GetNextSibling( hwnd2Tree, lastItem ))) && (lastItem = item.hItem = TreeView_GetParent( hwnd2Tree, lastItem )) ) {}
} while ( item.hItem );
/*****************************************************************************/
}
BOOL findAndRemoveDuplicates(HWND hwnd2Tree, HANDLE hContact, char* module)
/* the following code to go through the whole tree is nicked from codeguru..
http://www.codeguru.com/Cpp/controls/treeview/treetraversal/comments.php/c683/?thread=7680 */
{
TVITEM item;
HTREEITEM lastItem, prelastItem;
BOOL Result = 0;
char text[265];
if (!TreeView_GetCount(hwnd2Tree)) return Result;
item.mask = TVIF_STATE|TVIF_PARAM|TVIF_TEXT;
item.hItem = TVI_ROOT;
item.pszText = text;
item.cchTextMax = 264;
prelastItem = item.hItem;
do
{
do
{
lastItem = item.hItem;
if (lastItem != TVI_ROOT)
{
TreeView_GetItem( hwnd2Tree, &item );
/* these next lines are not from code guru..... */
if (item.lParam)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)item.lParam;
if (hContact == mtis->hContact && !mir_strcmp(text,module))
{
mir_free(mtis);
TreeView_DeleteItem(hwnd2Tree,item.hItem);
lastItem = prelastItem;
Result = 1;
}
else
prelastItem = lastItem;
}
/* back to coduguru's code*/
}
} while ( (item.hItem = TreeView_GetChild( hwnd2Tree, lastItem )) );
while ( (! (item.hItem = TreeView_GetNextSibling( hwnd2Tree, lastItem ))) && (lastItem = item.hItem = TreeView_GetParent( hwnd2Tree, lastItem )) ) {}
} while ( item.hItem );
/*****************************************************************************/
return Result;
}
void replaceTreeItem(HWND hwnd, HANDLE hContact, const char *module, const char *newModule)
{
int hItem = findItemInTree(hwnd, hContact, (char*)module);
HTREEITEM hParent;
if (hItem == -1) return;
hParent = TreeView_GetParent(hwnd,(HTREEITEM)hItem);
{
TVITEM item;
item.mask = TVIF_PARAM;
item.hItem = (HTREEITEM)hItem;
if (TreeView_GetItem(hwnd, &item))
mir_free((ModuleTreeInfoStruct *)item.lParam);
TreeView_DeleteItem(hwnd,item.hItem);
}
if (hParent && newModule)
{
TVINSERTSTRUCT tvi = {0};
ModuleTreeInfoStruct *lParam;
tvi.hParent = hParent;
tvi.hInsertAfter = TVI_SORT;
tvi.item.mask = TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE|TVIF_PARAM;
tvi.item.pszText = (char*)newModule;
lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
lParam->hContact = hContact;
lParam->type = IsModuleKnown((char*)newModule)?KNOWN_MODULE:UNKNOWN_MODULE;
if (lParam->type == UNKNOWN_MODULE)
{
tvi.item.iImage = 5;
tvi.item.iSelectedImage = 6;
}
else
{
tvi.item.iImage = 1;
tvi.item.iSelectedImage = 2;
}
tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd, &tvi);
}
}
void refreshTree(int restore)
{
UseKnownModList = DBGetContactSettingByte(NULL,modname,"UseKnownModList",0);
if (populating) return;
populating = 1;
forkthread(PopulateModuleTreeThreadFunc,0,(HWND)restore);
}
void __cdecl PopulateModuleTreeThreadFunc(LPVOID di)
{
TVINSERTSTRUCT tvi;
HWND hwnd2Tree = GetDlgItem(hwnd2mainWindow,IDC_MODULES);
char SelectedModule[256] = {0};
char SelectedSetting[256] = {0};
HANDLE hSelectedContact = hRestore;
HANDLE hContact;
HTREEITEM contact, contactsRoot;
int count;
// item lParams
ModuleTreeInfoStruct *lParam;
// module list
struct ModSetLinkLinkItem *module;
ModuleSettingLL modlist;
hRestore = NULL;
if (!hwnd2Tree) { msg(Translate("Module tree not found"),modFullname); return;}
Select = 0;
switch((int)di) {
case 1: // restore after rebuild
{
HTREEITEM item;
if (item = TreeView_GetSelection(hwnd2Tree))
{
TVITEM tvi = {0};
tvi.mask=TVIF_HANDLE|TVIF_PARAM|TVIF_TEXT;
tvi.pszText = SelectedModule;
tvi.cchTextMax = 255;
tvi.hItem=item;
TreeView_GetItem(hwnd2Tree, &tvi);
if (tvi.lParam)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)tvi.lParam;
hSelectedContact = mtis->hContact;
if (mtis->type == CONTACT) SelectedModule[0] = 0;
Select = 1;
}
}
break;
}
case 2: // restore saved
if (GetValue(NULL,modname,"LastModule",SelectedModule,SIZEOF(SelectedModule)))
{
hSelectedContact = (HANDLE)DBGetContactSettingDword(NULL,modname,"LastContact",(DWORD)INVALID_HANDLE_VALUE);
if (hSelectedContact != INVALID_HANDLE_VALUE)
Select = 1;
GetValue(NULL,modname,"LastSetting",SelectedSetting,SIZEOF(SelectedSetting));
}
break;
case 3: // restore from user menu
case 4: // jump from user menu
{
if (hSelectedContact && hSelectedContact != INVALID_HANDLE_VALUE)
{
Select = 1;
}
break;
}
} // switch
if ((int)di != 4) // do not rebuild on just going to another setting
{
if (!EnumModules(&modlist)) { msg(Translate("Error Loading Module List"),modFullname); return;}
// remove all items (incase there are items there...
freeTree(hwnd2Tree,0);
TreeView_DeleteAllItems(hwnd2Tree);
TreeView_SelectItem(hwnd2Tree,0);
//image list
TreeView_SetImageList(hwnd2Tree, himl, TVSIL_NORMAL);
/// contact root item
contacts_mtis.type = CONTACT_ROOT_ITEM;
tvi.item.lParam = (LPARAM)&contacts_mtis;
tvi.hParent = NULL;
tvi.item.mask = TVIF_TEXT|TVIF_CHILDREN|TVIF_STATE|TVIF_PARAM|TVIF_IMAGE|TVIF_SELECTEDIMAGE;
tvi.item.state = TVIS_BOLD;
tvi.item.stateMask = TVIS_BOLD;
tvi.item.cChildren = 1;
tvi.hInsertAfter = TVI_FIRST;
tvi.item.pszText = Translate("Contacts");
tvi.item.iImage = 3;
tvi.item.iSelectedImage = 3;
contactsRoot = TreeView_InsertItem(hwnd2Tree, &tvi);
// add the settings item
settings_mtis.type = STUB;
tvi.item.lParam = (LPARAM)&settings_mtis;
tvi.item.mask = TVIF_TEXT|TVIF_CHILDREN|TVIF_PARAM|TVIF_IMAGE|TVIF_SELECTEDIMAGE;
tvi.item.cChildren = 1;
tvi.hParent = NULL;
tvi.hInsertAfter = TVI_FIRST;
tvi.item.pszText = Translate("Settings");
tvi.item.iSelectedImage = (tvi.item.iImage = 0);
contact = TreeView_InsertItem(hwnd2Tree, &tvi);
// to fix bug with CHANGE NOTIFY on window activation
TreeView_SelectItem(hwnd2Tree, contact);
settings_mtis.type = CONTACT;
hContact = 0;
module = modlist.first;
while (module)
{
// set the module status type for the icon
module->known = IsModuleKnown(module->name);
if (!IsModuleEmpty(hContact,module->name))
{
tvi.hParent = contact;
tvi.hInsertAfter = TVI_SORT;
tvi.item.mask = TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE|TVIF_PARAM;
tvi.item.pszText = module->name;
lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
lParam->hContact = hContact;
if (!module->known)
{
tvi.item.iImage = 5;
tvi.item.iSelectedImage = 6;
lParam->type = UNKNOWN_MODULE;
}
else
{
tvi.item.iImage = 1;
tvi.item.iSelectedImage = 2;
lParam->type = KNOWN_MODULE;
}
tvi.item.lParam = (LPARAM)lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
module = (struct ModSetLinkLinkItem *)module->next;
}
if (DBGetContactSettingByte(NULL,modname,"ExpandSettingsOnOpen",0))
TreeView_Expand(hwnd2Tree,contact,TVE_EXPAND);
if (Select && hSelectedContact == NULL)
{
int hItem = findItemInTree(hwnd2Tree, hSelectedContact, SelectedModule);
if (hItem != -1)
{
TreeView_SelectItem(hwnd2Tree, (HTREEITEM)hItem);
TreeView_Expand(hwnd2Tree,hItem,TVE_EXPAND);
if (SelectedSetting[0]) SelectSetting(SelectedSetting);
}
Select = 0;
}
count = doContacts(hwnd2Tree,contactsRoot,&modlist, Select?hSelectedContact:NULL, SelectedModule, SelectedSetting);
Select = 0;
doItems(hwnd2Tree,&modlist,count);
FreeModuleSettingLL(&modlist);
}
if (Select)
{
int hItem = findItemInTree(hwnd2Tree, hSelectedContact, SelectedModule);
if (hItem != -1)
{
TreeView_SelectItem(hwnd2Tree, (HTREEITEM)hItem);
TreeView_Expand(hwnd2Tree,hItem,TVE_EXPAND);
if (SelectedSetting[0]) SelectSetting(SelectedSetting);
}
}
populating = 0;
}
static WNDPROC ModuleTreeLabelEditSubClass;
static LRESULT CALLBACK ModuleTreeLabelEditSubClassProc(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)
{
switch(msg) {
case WM_KEYUP:
switch (wParam)
{
case VK_RETURN:
TreeView_EndEditLabelNow(GetParent(hwnd),0);
return 0;
case VK_ESCAPE:
TreeView_EndEditLabelNow(GetParent(hwnd),1);
return 0;
}
break;
}
return CallWindowProc(ModuleTreeLabelEditSubClass,hwnd,msg,wParam,lParam);
}
void moduleListRightClick(HWND hwnd, WPARAM wParam,LPARAM lParam);
void moduleListWM_NOTIFY(HWND hwnd,UINT msg,WPARAM wParam,LPARAM lParam)// hwnd here is to the main window, NOT the treview
{
switch(((NMHDR*)lParam)->code)
{
case TVN_ITEMEXPANDINGA:
case TVN_ITEMEXPANDINGW:
if (populating && ((LPNMTREEVIEW)lParam)->action == TVE_EXPAND)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)((LPNMTREEVIEW)lParam)->itemNew.lParam;
if (mtis && (mtis->type == (CONTACT | EMPTY)))
{
TVINSERTSTRUCT tvi;
HTREEITEM item = {0};
ModuleTreeInfoStruct *_lParam;
HWND hwnd2Tree = GetDlgItem(hwnd2mainWindow,IDC_MODULES);
struct ModSetLinkLinkItem *module;
ModuleSettingLL modlist;
HANDLE hContact = mtis->hContact;
mtis->type = CONTACT;
if (!EnumModules(&modlist)) { msg(Translate("Error Loading Module List"),modFullname); break;}
module = modlist.first;
while(module && hwnd2mainWindow)
{
if (module->name[0] && !IsModuleEmpty(hContact,module->name))
{
tvi.hParent = ((LPNMTREEVIEW)lParam)->itemNew.hItem;
tvi.hInsertAfter = TVI_SORT;
tvi.item.mask = TVIF_TEXT|TVIF_IMAGE|TVIF_SELECTEDIMAGE|TVIF_PARAM;
tvi.item.pszText = module->name;
_lParam = (ModuleTreeInfoStruct *)mir_calloc(sizeof(ModuleTreeInfoStruct));
_lParam->hContact = hContact;
if (IsModuleKnown(module->name))
{
tvi.item.iImage = 5;
tvi.item.iSelectedImage = 6;
_lParam->type = KNOWN_MODULE;
}
else
{
tvi.item.iImage = 1;
tvi.item.iSelectedImage = 2;
_lParam->type = UNKNOWN_MODULE;
}
tvi.item.lParam = (LPARAM)_lParam;
TreeView_InsertItem(hwnd2Tree, &tvi);
}
module = (struct ModSetLinkLinkItem *)module->next;
}
FreeModuleSettingLL(&modlist);
}
}
break;
case TVN_SELCHANGEDA:
case TVN_SELCHANGEDW:
{
ModuleTreeInfoStruct *mtis;
LPNMTREEVIEW pnmtv = (LPNMTREEVIEW)lParam;
TVITEM tvi = {0};
char text[264];
HANDLE hContact;
HWND hwnd2Settings = GetDlgItem(hwnd, IDC_SETTINGS);
tvi.mask = TVIF_HANDLE|TVIF_PARAM|TVIF_TEXT;
tvi.hItem = pnmtv->itemNew.hItem;
tvi.pszText = text;
tvi.cchTextMax = 264;
TreeView_GetItem(pnmtv->hdr.hwndFrom,&tvi);
if (tvi.lParam)
{
mtis = (ModuleTreeInfoStruct *)tvi.lParam;
hContact = mtis->hContact;
if (mtis->type == STUB) break;
if (populating) Select = 0;
if (mtis->type == MODULE || mtis->type == UNKNOWN_MODULE)
{
SettingListInfo *info = (SettingListInfo*)GetWindowLongPtr(hwnd2Settings,GWLP_USERDATA);
BOOL refresh = 1;
if (info)
{
if (info->hContact == hContact &&
!mir_strcmp(info->module, text))
refresh = 0;
}
if (refresh)
PopulateSettings(hwnd2Settings, hContact, text);
}
else
if (((mtis->type & CONTACT) == CONTACT && hContact) ||
(mtis->type == CONTACT_ROOT_ITEM && !hContact))
{
char data[32], szProto[256];
int index, loaded, multi = 0;
LVITEM lvi = {0};
lvi.mask = LVIF_IMAGE|LVIF_TEXT|LVIF_PARAM;
lvi.iImage = 6;
ClearListview(hwnd2Settings);
SetWindowLongPtr(hwnd2Settings,GWLP_USERDATA, (LONG)NULL);
if (himl2) ListView_SetImageList(hwnd2Settings, himl2, LVSIL_SMALL);
if (mtis->type == CONTACT_ROOT_ITEM && !hContact)
{
multi = 1;
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDFIRST, 0, 0);
}
while(hContact && hwnd2mainWindow)
{
if (multi)
{
// filter
if (GetValue(hContact,"Protocol","p",szProto,SIZEOF(szProto)))
loaded = IsProtocolLoaded(szProto);
else
loaded = 0;
if ((loaded && Mode == MODE_UNLOADED) || (!loaded && Mode == MODE_LOADED))
{
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
continue;
}
}
lvi.iItem = 0;
lvi.pszText = (char*)GetContactName(hContact,NULL,UOS);
if (UOS)
index = ListView_InsertItemW(hwnd2Settings,&lvi);
else
index = ListView_InsertItem(hwnd2Settings,&lvi);
mir_snprintf(data, SIZEOF(data), "0x%08X (%ld)", hContact, hContact);
ListView_SetItemText(hwnd2Settings,index,1,data);
ListView_SetItemText(hwnd2Settings,index,2,Translate("HANDLE"));
ListView_SetItemText(hwnd2Settings,index,3,"0x0004 (4)");
if (!multi) break;
hContact = (HANDLE)CallService(MS_DB_CONTACT_FINDNEXT, (WPARAM)hContact, 0);
}
}
else
ClearListview(hwnd2Settings);
}
else
{
// clear any settings that may be there...
ClearListview(hwnd2Settings);
}
}
break; //TVN_SELCHANGED:
case NM_RCLICK:
if (((NMHDR*)lParam)->code == NM_RCLICK)
moduleListRightClick(hwnd,wParam,lParam);
break;
case TVN_BEGINLABELEDITA: // subclass it..
case TVN_BEGINLABELEDITW:
{
LPNMTVDISPINFO ptvdi = (LPNMTVDISPINFO) lParam;
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)ptvdi->item.lParam;
HWND hwnd2Edit = TreeView_GetEditControl(GetDlgItem(hwnd, IDC_MODULES));
if (!mtis->type || (mtis->type == CONTACT))
{
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, TRUE);
break;
}
ModuleTreeLabelEditSubClass = (WNDPROC)SetWindowLongPtr(hwnd2Edit, GWLP_WNDPROC, (LONG)ModuleTreeLabelEditSubClassProc);
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, FALSE);
}
break;
case TVN_ENDLABELEDITA:
case TVN_ENDLABELEDITW:
{
LPNMTVDISPINFO ptvdi = (LPNMTVDISPINFO) lParam;
TVITEM tvi = {0};
char text[264];
char *newtext;
ModuleTreeInfoStruct *mtis;
tvi.mask=TVIF_HANDLE|TVIF_TEXT|TVIF_PARAM;
tvi.hItem=ptvdi->item.hItem;
tvi.pszText = text;
tvi.cchTextMax = 264;
TreeView_GetItem(((LPNMHDR)lParam)->hwndFrom,&tvi);
mtis = (ModuleTreeInfoStruct *)ptvdi->item.lParam;
if (UOS)
newtext = u2a((WCHAR*)ptvdi->item.pszText);
else
newtext = mir_tstrdup(ptvdi->item.pszText);
if (!newtext || // edit control failed
!mtis->type || // its a root item
mtis->type == CONTACT || // its a contact
*newtext == 0) // empty string
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, FALSE);
else
{
if (mir_strcmp(tvi.pszText, newtext))
{
renameModule(tvi.pszText, newtext, mtis->hContact);
findAndRemoveDuplicates(((LPNMHDR)lParam)->hwndFrom,mtis->hContact,newtext);
if (TreeView_GetItem(((LPNMHDR)lParam)->hwndFrom,&tvi))
{
tvi.mask = TVIF_IMAGE|TVIF_SELECTEDIMAGE;
if (!IsModuleKnown(newtext))
{
tvi.iImage = 5;
tvi.iSelectedImage = 6;
}
else
{
tvi.iImage = 1;
tvi.iSelectedImage = 2;
}
TreeView_SetItem(((LPNMHDR)lParam)->hwndFrom, &tvi);
PopulateSettings(GetDlgItem(hwnd, IDC_SETTINGS), mtis->hContact, newtext);
}
}
SetWindowLongPtr(hwnd, DWLP_MSGRESULT, TRUE);
}
mir_free(newtext);
}
break;
}
}
void moduleListRightClick(HWND hwnd, WPARAM wParam,LPARAM lParam) // hwnd here is to the main window, NOT the treview
{
TVHITTESTINFO hti;
hti.pt.x=(short)LOWORD(GetMessagePos());
hti.pt.y=(short)HIWORD(GetMessagePos());
ScreenToClient(((LPNMHDR)lParam)->hwndFrom,&hti.pt);
if(TreeView_HitTest(((LPNMHDR)lParam)->hwndFrom,&hti))
{
if(hti.flags&TVHT_ONITEM)
{
TVITEM tvi = {0};
HMENU hMenu,hSubMenu;
int menuNumber;
char module[256];
tvi.mask=TVIF_HANDLE|TVIF_PARAM|TVIF_TEXT;
tvi.hItem=hti.hItem;
tvi.pszText = module;
tvi.cchTextMax = 255;
TreeView_GetItem(((LPNMHDR)lParam)->hwndFrom,&tvi);
if (tvi.lParam)
{
ModuleTreeInfoStruct *mtis = (ModuleTreeInfoStruct *)tvi.lParam;
HANDLE hContact = mtis->hContact;
GetCursorPos(&(hti.pt));
hMenu = LoadMenu(hInst, MAKEINTRESOURCE(IDR_CONTEXTMENU));
TranslateMenu(hMenu);
if (mtis->type == CONTACT && hContact) menuNumber = 2;
else if ((mtis->type == MODULE || mtis->type == UNKNOWN_MODULE) && !hContact) menuNumber = 1;
else if (mtis->type == CONTACT && !hContact) menuNumber = 3;
else if (mtis->type == CONTACT_ROOT_ITEM && !hContact) menuNumber = 4;
else if ((mtis->type == MODULE || mtis->type == UNKNOWN_MODULE) && hContact) menuNumber = 5;
else return;
hSubMenu = GetSubMenu(hMenu, menuNumber);
TranslateMenu(hSubMenu);
switch (menuNumber)
{
case 1: // null module
case 5: // contact module
{
// check if we r already watching the module
int i;
int watching = 0;
// check if the setting is being watched and if it is then check the menu item
if (WatchListArray.item)
for (i=0; i<WatchListArray.count; i++)
{
if (WatchListArray.item[i].module && (hContact == WatchListArray.item[i].hContact) )
{
if (!mir_strcmp(module, WatchListArray.item[i].module) && !WatchListArray.item[i].setting)
{
// yes so uncheck it
CheckMenuItem(hSubMenu, MENU_WATCH_ITEM, MF_CHECKED|MF_BYCOMMAND);
watching =1;
break;
}
}
}
switch (TrackPopupMenu(hSubMenu, TPM_RETURNCMD, hti.pt.x, hti.pt.y, 0, hwnd, NULL))
{
case MENU_RENAME_MOD:
TreeView_EditLabel(GetDlgItem(hwnd, IDC_MODULES),tvi.hItem);
break;
case MENU_DELETE_MOD:
if (deleteModule(module, hContact, 0))
{
TreeView_DeleteItem(((LPNMHDR)lParam)->hwndFrom,hti.hItem);
mir_free(mtis);
}
break;
case MENU_COPY_MOD:
copyModuleMenuItem(module, hContact);
break;
////////////////////////////////////////////////////////////////////// divider
case MENU_WATCH_ITEM:
if (!watching)
addSettingToWatchList(hContact,module,0);
else freeWatchListItem(i);
if (hwnd2watchedVarsWindow)
PopulateWatchedWindow(GetDlgItem(hwnd2watchedVarsWindow, IDC_VARS));
break;
case MENU_EXPORTMODULE:
exportDB(hContact, module);
break;
case MENU_EXPORTDB:
exportDB(INVALID_HANDLE_VALUE, module);
break;
case MENU_ADDKNOWN:
{
DBVARIANT dbv;
char *moduletemp = (char*)_alloca(strlen(module)*3);
unsigned int i;
moduletemp[0] = '\0';
for(i=0;i<strlen(module);i++)
{
if (module[i]==' ')
strcat(moduletemp,"\\ ");
else strncat(moduletemp,&module[i],1);
}
if (!DBGetContactSetting(NULL,modname,"CoreModules",&dbv) && dbv.type == DBVT_ASCIIZ)
{
int len = (int)strlen(dbv.pszVal) + 10 + (int)strlen(moduletemp);
char* temp = (char*)_alloca(len);
mir_snprintf(temp, len, "%s, %s", dbv.pszVal, moduletemp);
DBWriteContactSettingString(NULL,modname,"CoreModules",temp);
DBFreeVariant(&dbv);
}
else DBWriteContactSettingString(NULL,modname,"CoreModules",moduletemp);
RegisterSingleModule((WPARAM)module,0);
}
break;
}
}
break;
case 2: // contact
switch (TrackPopupMenu(hSubMenu, TPM_RETURNCMD, hti.pt.x, hti.pt.y, 0, hwnd, NULL))
{
case MENU_CLONE_CONTACT:
if (CloneContact(hContact))
refreshTree(1);
break;
case MENU_DELETE_CONTACT:
if (DBGetContactSettingByte(NULL,"CList", "ConfirmDelete",1))
{
char msg[1024];
mir_snprintf(msg, SIZEOF(msg), Translate("Are you sure you want to delete contact \"%s\"?"), module);
if (MessageBox(0,msg, Translate("Confirm Contact Delete"), MB_YESNO|MB_ICONEXCLAMATION) == IDYES)
{
CallService(MS_DB_CONTACT_DELETE, (WPARAM)hContact,0);
freeTree(((LPNMHDR)lParam)->hwndFrom,hContact);
TreeView_DeleteItem(((LPNMHDR)lParam)->hwndFrom,tvi.hItem);
}
}
else
{
CallService(MS_DB_CONTACT_DELETE, (WPARAM)hContact,0);
freeTree(((LPNMHDR)lParam)->hwndFrom,hContact);
TreeView_DeleteItem(((LPNMHDR)lParam)->hwndFrom,tvi.hItem);
}
break;
////////////////////////////////////////////////////////////////////// divider
case MENU_EXPORTCONTACT:
exportDB(hContact, 0);
break;
case MENU_IMPORTFROMTEXT:
ImportSettingsMenuItem(hContact);
break;
case MENU_IMPORTFROMFILE:
ImportSettingsFromFileMenuItem(hContact, "");
break;
////////////////////////////////////////////////////////////////////// divider
case MENU_ADD_MODULE:
{
HWND AddModhwnd = CreateDialogParam(hInst, MAKEINTRESOURCE(IDD_ADD_MODULE), hwnd, AddModDlgProc, (LPARAM)hContact);
char msg[1024];
mir_snprintf(msg, SIZEOF(msg), Translate("Add module to contact \"%s\""), module);
SetWindowText(AddModhwnd, module);
}
break;
}
break;
case 3: // NULL contact
switch (TrackPopupMenu(hSubMenu, TPM_RETURNCMD, hti.pt.x, hti.pt.y, 0, hwnd, NULL))
{
case MENU_ADD_MODULE:
{
HWND AddModhwnd = CreateDialogParam(hInst, MAKEINTRESOURCE(IDD_ADD_MODULE), hwnd, AddModDlgProc, (LPARAM)hContact);
char msg[1024];
mir_snprintf(msg, SIZEOF(msg), Translate("Add module to contact \"%s\""), module);
SetWindowText(AddModhwnd, module);
}
break;
case MENU_EXPORTCONTACT:
exportDB(NULL, 0);
break;
case MENU_IMPORTFROMTEXT:
ImportSettingsMenuItem(NULL);
break;
case MENU_IMPORTFROMFILE:
ImportSettingsFromFileMenuItem(NULL, "");
break;
}
break;
case 4: // Contacts root
switch (TrackPopupMenu(hSubMenu, TPM_RETURNCMD, hti.pt.x, hti.pt.y, 0, hwnd, NULL))
{
case MENU_EXPORTCONTACT:
exportDB(INVALID_HANDLE_VALUE, "");
break;
case MENU_IMPORTFROMTEXT:
ImportSettingsMenuItem(NULL);
break;
case MENU_IMPORTFROMFILE:
ImportSettingsFromFileMenuItem(NULL, "");
break;
}
break;
}
DestroyMenu(hMenu);
}
} // if (tvi.lParam)
} // if(hti.flags&TVHT_ONITEM)
}
|