summaryrefslogtreecommitdiff
path: root/tools/IconPatcher/IconPatcher_v.1.0.iss
blob: e1937dbab669e38bc2bbcbc99306453f4e51909a (plain)
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
1136
1137
1138
1139
1140
1141
1142
1143
1144
; Patcher's features:
; • Icons' replacement in libraries and executables.
; • Sets of icons should be packed to the 7z archive.
; • 7z-archives icons should be in the same folder next to IconPatcher.exe.
; • It has English and Russian interface (automatically detected)
; • Intuitive graphical user interface.
; • Command line support. Command line parameters:
;    • /BIN = "path to Miranda32/64.exe". The exe-file path, related to which all archived files' paths would be calculated with respect to 'files from the archive to the resources' from the 'files Miranda'.
;    • /ARC = archive name without extension, for example, /ARC=Nova.
;    • /RES = list of archive folders to process, they will be marked in the patcher's UI. If you want to mark all folders, you can simply omit /RES parameter, or use /RES=* either.
;    • /SILENT = simplified setup mode. only the progress indicator will be displayed.
;    • /VERYSILENT = automated setup mode. Nothing is displayed at all.
;    • /LOG="log.txt" = creates a log-file" log.txt" near IconPatcher.exe. The parameter is used for tracking errors.
; • The relative folders structure in archives (for example, Icons\Proto_ICQ\*.ico) means that the folder specified via /BIN must have the subfolder Icons with the file Proto_ICQ.dll in it (possible extensions .exe, .dll, .mir).
; • The 'root' folder is for beautifulness only and doesn't repeat the original program's structure, it contains the .exe resources only.

; Âîçìîæíîñòè ïàò÷åðà:
; • Çàìåíà çíà÷êîâ â áèáëèîòåêàõ è èñïîëíÿåìûõ ôàéëàõ.
; • Íàáîðû çíà÷êîâ äîëæíû áûòü çàïàêîâàíû â àðõèâ 7z.
; • 7z-àðõèâû çíà÷êîâ äîëæíû ëåæàòü â îäíîé ïàïêå ðÿäîì ñ IconPatcher.exe.
; • Èìååò àíãëèéñêèé è ðóññêèé èíòåðôåéñ (îïðåäåëÿåòñÿ àâòîìàòè÷åñêè)
; • Èíòóèòèâíî ïîíÿòíûé ãðàôè÷åñêèé èíòåðôåéñ ïîëüçîâàòåëÿ.
; • Ïîääåðæêà êîìàíäíîé ñòðîêè. Ïàðàìåòðû êîìàíäíîé ñòðîêè:
;    • /BIN = "ïóòü ê Miranda32/64.exe". Ïóòü ê exe-ôàéëó, îòíîñèòåëüíî êîòîðîãî áóäóò ñîïîñòàâëÿòüñÿ 'ôàéëû èç àðõèâà ñ ðåñóðñàìè' ñ 'ôàéëàìè Miranda'.
;    • /ARC = èìÿ àðõèâà áåç ðàñøèðåíèÿ, íàïðèìåð, /ARC=Nova.
;    • /RES = ñïèñîê ïàïîê èç àðõèâà äëÿ îáðàáîòêè, íàïðèìåð, /RES=icons,plugins,root. Ýòî òî, ÷òî áóäåò îòìå÷åíî â èíòåðôåéñå ïàò÷åðà. Åñëè íóæíî îòìåòèòü âñå, òî ïàðàìåòð /RES ìîæíî ëèáî îïóñòèòü, ëèáî /RES=*.
;    • /SILENT = Óñòàíîâêà â óñêîðåííîì ðåæèìå. Îòîáðàæàåòñÿ äèàëîã ïðîãðåññà.
;    • /VERYSILENT = Óñòàíîâêà â óñêîðåííîì ðåæèìå. Íè÷åãî íå îòîáðàæàåòñÿ.
;    • /LOG="log.txt" = Ñîçäà¸ò log-ôàéë "log.txt" ðÿäîì ñ IconPatcher.exe. Ïàðàìåòð ïðèìåíÿåòñÿ ïðè îòñëåæèâàíèè îøèáîê.
; • Ñòðóêòóðà ïàïîê â àðõèâàõ, íàïðèìåð, Icons\Proto_ICQ\*.ico, îçíà÷àåò, ÷òî ïî ïóòè, óêàçàííîìó â /BIN äîëæíà áûòü ïàïêà Icons, â íåé ôàéë Proto_ICQ (âîçìîæíûõ ðàñøèðåíèé .exe, .dll, .mir).
; • Ïàïêà root äëÿ êðàñîòû è íå ïîâòîðÿåò îðèãèíàëüíóþ ñòðóêòóðó ïðîãðàììû, â íåé òîëüêî ðåñóðñû äëÿ exe.

#define AppName "IconPatcher"
#define AppFullName "Miranda icon patcher"
#define AppVerName "1.0"
#define AppPublisher "El Sanchez"

[Setup]
AppName={#AppName}
AppVerName={#AppVerName}
DefaultDirName={tmp}
CreateAppDir=no
Uninstallable=no
CreateUninstallRegKey=no
DisableWelcomePage=yes
DisableReadyPage=yes
DisableFinishedPage=yes
ShowLanguageDialog=no
OutputBaseFilename={#AppName}
SetupIconFile={res}\icon.ico
VersionInfoVersion={#AppVerName}
VersionInfoDescription={#AppFullName}
AppPublisher={#AppPublisher}
PrivilegesRequired=lowest
IconResource=plugin:{res}\plugin.ico|done:{res}\done.ico|skip:{res}\skip.ico|error:{res}\error.ico

[Languages]
Name: en; MessagesFile: compiler:default.isl,{res}\iconpatcher_en.isl
Name: ru; MessagesFile: compiler:Languages\russian.isl,{res}\iconpatcher_ru.isl

[Files]
Source: {res}\7-zip32.dll; Flags: dontcopy

[Code]
#define A = (Defined UNICODE) ? "W" : "A"
const
  SZ_ERROR = 1;
  SZ_DLLERROR = 3;
  LOAD_LIBRARY_AS_DATAFILE = $2;
  RT_ICON = 3;
  RT_GROUP_ICON = (RT_ICON + 11);
  GENERIC_READ = $80000000;
  FILE_SHARE_READ = $0001;
  OPEN_EXISTING = $0003;
  INVALID_HANDLE_VALUE = (-1);
  PAGE_READONLY = $0002;
  FILE_MAP_READ = $0004;
  GWL_STYLE = (-16);
  GWL_EXSTYLE = (-20);
  TVS_CHECKBOXES = $0100;
  WS_EX_COMPOSITED = $02000000;
  TV_FIRST = $1100;
  TVM_GETIMAGELIST = (TV_FIRST + 8);
  TVSIL_STATE = 2;
  ILC_COLOR32 = $0020;
  SHGFI_ICON = $0100;
  SHGFI_SMALLICON = $0001;
  SHGFI_OPENICON = $0002;
  DI_NORMAL = $3;
  IMAGE_ICON = 1;
  BI_RGB = $0;
  DIB_RGB_COLORS = 0;

type
  INDIVIDUALINFO = record
    dwOriginalSize: DWORD;
    dwCompressedSize: DWORD;
    dwCRC: DWORD;
    uFlag: UINT;
    uOSType: UINT;
    wRatio: WORD;
    wDate: WORD;
    wTime: WORD;
  #ifdef UNICODE
    szFileName: array [0..512] of AnsiChar;
  #else
    szFileName: array [0..512] of Char;
  #endif
    dummy1: array [0..2] of Byte;
  #ifdef UNICODE
    szAttribute: array [0..7] of AnsiChar;
    szMode: array [0..7] of AnsiChar;
  #else
    szAttribute: array [0..7] of Char;
    szMode: array [0..7] of Char;
  #endif
  end;

  SHFILEINFO = record
    hIcon: HICON;
    iIcon: Integer;
    dwAttributes: DWORD;
    szDisplayName: array [0..259] of Char;
    szTypeName: array [0..79] of Char;
  end;

  BITMAPINFOHEADER = record
    biSize: DWORD;
    biWidth: Longint;
    biHeight: Longint;
    biPlanes: WORD;
    biBitCount: WORD;
    biCompression: DWORD;
    biSizeImage: DWORD;
    biXPelsPerMeter: Longint;
    biYPelsPerMeter: Longint;
    biClrUsed: DWORD;
    biClrImportant: DWORD;
  end;

  RGBQUAD = record
    rgbBlue: Byte;
    rgbGreen: Byte;
    rgbRed: Byte;
    rgbReserved: Byte;
  end;

  BITMAPINFO = record
    bmiHeader: BITMAPINFOHEADER;
    bmiColors: array of RGBQUAD;
  end;

  ICONDIRENTRY = record
    bWidth: Byte;
    bHeight: Byte;
    bColorCount: Byte;
    bReserved: Byte;
    wPlanes: WORD;
    wBitCount: WORD;
    dwBytesInRes: DWORD;
    dwImageOffset: DWORD;
  end;

  ICONDIR = record
    idReserved: WORD;
    idType: WORD;
    idCount: WORD;
    idEntries: array [0..0] of ICONDIRENTRY;
  end;

  GRPICONDIRENTRY = record
    bWidth: Byte;
    bHeight: Byte;
    bColorCount: Byte;
    bReserved: Byte;
    wPlanes: WORD;
    wBitCount: WORD;
    dwBytesInRes: DWORD;
    nID: WORD;
  end;

  GRPICONDIR = record
    idReserved: WORD;
    idType: WORD;
    idCount: WORD;
    idEntries: array [0..255] of GRPICONDIRENTRY;
  end;

  TUpdateResItem = record
    szName: string;
    wLanguage: WORD;
    lpIconDir: Longint;
  end;

  TUpdateResHelper = record
    Items: array of TUpdateResItem;
    IconList: TStringList;
  end;

function SevenZipOpenArchive(const hwnd: HWND; szFileName: AnsiString; const dwMode: DWORD): THandle; external 'SevenZipOpenArchive@files:7-zip32.dll stdcall';
function SevenZipCloseArchive(harc: THandle): Integer; external 'SevenZipCloseArchive@files:7-zip32.dll stdcall';
function SevenZipFindFirst(harc: THandle; szWildName: AnsiString; var lpSubInfo: INDIVIDUALINFO): Integer; external 'SevenZipFindFirst@files:7-zip32.dll stdcall';
function SevenZipFindNext(harc: THandle; var lpSubInfo: INDIVIDUALINFO): Integer; external 'SevenZipFindNext@files:7-zip32.dll stdcall';
function SevenZipCheckArchive(szFileName: AnsiString; const iMode: Integer): BOOL; external 'SevenZipCheckArchive@files:7-zip32.dll stdcall';
function SevenZip(const hwnd: HWND; szCmdLine, szOutput: AnsiString; const dwSize: DWORD): Integer; external 'SevenZip@files:7-zip32.dll stdcall';
function SevenZipSetOwnerWindowEx(hwnd: HWND; lpArcProc: Longint): BOOL; external 'SevenZipSetOwnerWindowEx@files:7-zip32.dll stdcall';
function SevenZipKillOwnerWindowEx(hwnd: HWND): BOOL; external 'SevenZipKillOwnerWindowEx@files:7-zip32.dll stdcall';

function RtlMoveMemoryWORD(var Destination: WORD; const Source: Longint; len: Integer): Integer; external 'RtlMoveMemory@kernel32.dll stdcall';
function RtlMoveMemoryGRPIDE(var Destination: GRPICONDIRENTRY; const Source: Longint; len: Integer): Integer; external 'RtlMoveMemory@kernel32.dll stdcall';
function RtlMoveMemoryIDE(var Destination: ICONDIRENTRY; const Source: Longint; len: Integer): Integer; external 'RtlMoveMemory@kernel32.dll stdcall';
function RtlMoveMemoryBI(var Destination: BITMAPINFOHEADER; const Source: Longint; len: Integer): Integer; external 'RtlMoveMemory@kernel32.dll stdcall';

function LoadLibraryEx(lpFileName: string; hFile: THandle; dwFlags: DWORD): THandle; external 'LoadLibraryEx{#A}@kernel32.dll stdcall';
function FreeLibrary(hModule: THandle): BOOL; external 'FreeLibrary@kernel32.dll stdcall';

function BeginUpdateResource(pFileName: string; bDeleteExistingResources: BOOL): THandle; external 'BeginUpdateResource{#A}@kernel32.dll stdcall';
function UpdateResource(hUpdate: THandle; lpType, lpName: Longint; wLanguage: WORD; lpData: Longint; cbData: DWORD): BOOL; external 'UpdateResource{#A}@kernel32.dll stdcall';
function UpdateResourcePtr(hUpdate: THandle; lpType, lpName: Longint; wLanguage: WORD; var lpData: GRPICONDIR; cbData: DWORD): BOOL; external 'UpdateResource{#A}@kernel32.dll stdcall';
function EndUpdateResource(hUpdate: THandle; fDiscard: BOOL): BOOL; external 'EndUpdateResource{#A}@kernel32.dll stdcall';

function EnumResourceNames(hModule: THandle; lpszType, lpEnumFunc, lParam: Longint): BOOL; external 'EnumResourceNames{#A}@kernel32.dll stdcall';
function EnumResourceLanguages(hModule: THandle; lpType, lpName, lpEnumFunc, lParam: Longint): BOOL; external 'EnumResourceLanguages{#A}@kernel32.dll stdcall';

function LoadImage(hInst: THandle; lpszName: string; uType: UINT; cxDesired, cyDesired: Integer; fuLoad: UINT): THandle; external 'LoadImage{#A}@user32.dll stdcall';
function LoadResource(hModule, hResInfo: THandle): THandle; external 'LoadResource@kernel32.dll stdcall';
function LockResource(hResData: THandle): Longint; external 'LockResource@kernel32.dll stdcall';
function FindResource(hModule: THandle; lpName, lpType: Longint): THandle; external 'FindResource{#A}@kernel32.dll stdcall';

function CreateFile(lpFileName: string; dwDesiredAccess, dwShareMode: DWORD; lpSecurityAttributes: Longint; dwCreationDisposition, dwFlagsAndAttributes: DWORD; hTemplateFile: THandle): THandle; external 'CreateFile{#A}@kernel32.dll stdcall';
function CreateFileMapping(hFile: THandle; lpAttributes: Longint; flProtect, dwMaximumSizeHigh, dwMaximumSizeLow: DWORD; lpName: String): THandle; external 'CreateFileMapping{#A}@kernel32.dll stdcall';
function MapViewOfFile(hFileMappingObject: THandle; dwDesiredAccess, dwFileOffsetHigh, dwFileOffsetLow, dwNumberOfBytesToMap: DWORD): Longint; external 'MapViewOfFile@kernel32.dll stdcall';
function UnmapViewOfFile(lpBaseAddress: Longint): BOOL; external 'UnmapViewOfFile@kernel32.dll stdcall';
function CloseHandle(hObject: THandle): BOOL; external 'CloseHandle@kernel32.dll stdcall';

function GetWindowLong(hWnd: HWND; nIndex: Integer): Longint; external 'GetWindowLong{#A}@user32.dll stdcall';
function SetWindowLong(hWnd: HWND; nIndex: Integer; dwNewLong: Longint): Longint; external 'SetWindowLong{#A}@user32.dll stdcall';

function ImageList_Create(cx, cy: Integer; flags: UINT; cInitial, cGrow: Integer): HIMAGELIST; external 'ImageList_Create@comctl32.dll stdcall';
function ImageList_Add(himl: HIMAGELIST; hbmImage, hbmMask: HBITMAP): Integer; external 'ImageList_Add@comctl32.dll stdcall';
function ImageList_GetIconSize(himl: HIMAGELIST; out cx, cy: Integer): BOOL; external 'ImageList_GetIconSize@comctl32.dll stdcall';

function SHGetFileInfo(pszPath: string; dwFileAttributes: DWORD; var psfi: SHFILEINFO; cbFileInfo, uFlags: UINT): DWORD; external 'SHGetFileInfo{#A}@shell32.dll stdcall';
function DestroyIcon(hIcon: HICON): BOOL; external 'DestroyIcon@user32.dll stdcall';
function DrawIconEx(hdc: Longint; xLeft, yTop: Integer; hIcon: HICON; cxWidth, cyWidth: Integer; istepIfAniCur: UINT; hbrFlickerFreeDraw: Longint; diFlags: UINT): BOOL; external 'DrawIconEx@user32.dll stdcall';

function CreateDIBSection(hdc: THandle; const pbmi: BITMAPINFO; iUsage: UINT; out ppvBits: Longint; hSection: THandle; dwOffset: DWORD): HBITMAP; external 'CreateDIBSection@gdi32.dll stdcall';

function ShowWindow(hWnd: HWND; nCmdShow: Integer): BOOL; external 'ShowWindow@user32.dll stdcall';

var
  UpdateForm: TForm;
  StatusBar: TStatusBar;
  ProgressBar: TNewProgressBar;
  BrowseButton: TNewButton;
  BrowseEdit: TEdit;
  SelectArchiveComboBox: TComboBox;
  SelectResButton, PatchButton: TNewButton;
  SelectResTreeView: TTreeView;
  ResourcesList: TStringList;
  ResHelper: TUpdateResHelper;

///////////////////////////////////////////////////////////////////
function CharArrayToString(const AChar: array of AnsiChar): string;
var
  i: Integer;
begin
  Result := '';
  while AChar[i] <> #0 do
  begin
    Insert(AChar[i], Result, Length(Result) + 1);
    i := i + 1;
  end;
end;

///////////////////////////////////////////////////////
function IsParameter(const Parameter: string): Boolean;
var
  i: Integer;
begin
  for i := 2 to ParamCount do
    if CompareText(Parameter, ParamStr(i)) = 0 then
    begin
      Result := True;
      Break;
    end;
end;

//////////////////////////////
function DisplayHelp: Boolean;
var
  i: Integer;
begin
  for i := 2 to ParamCount do
    if CompareText('/?', ParamStr(i)) = 0 then
    begin
      MsgBoxEx(0, FmtMessage(CustomMessage('cmHelpMsg'), [ExtractFileName(ExpandConstant('{srcexe}'))]), FmtMessage(CustomMessage('cmHelpMsgCaption'), ['{#AppName}']), MB_OK, Application.Icon.Handle, 0);
      Result := True;
      Break;
    end;
end;

//////////////////////////////
function CheckSource: Boolean;
var
  FR: TFindRec;
  FileName: AnsiString;
  hArc: THandle;
  lpSubInfo: INDIVIDUALINFO;
begin
  Log(CustomMessage('cmLogFindResource7ZipFile1a'));
  ResourcesList := TStringList.Create;
  ResourcesList.Sorted := True;
  if FindFirst(ExpandConstant('{src}\*.7z'), FR) then
  try
    repeat
      FileName := ExpandConstant(Format('{src}\%s', [FR.Name]));
      if SevenZipCheckArchive(FileName, 0) then
      begin
        Log(FmtMessage(CustomMessage('cmLogResource7ZipFile'), [FR.Name]));
        ResourcesList.AddObject(FileName, TStringList.Create);
        with TStringList(ResourcesList.Objects[ResourcesList.Count - 1] as TStringList) do
        begin
          Sorted := True;
          hArc := SevenZipOpenArchive(0, ResourcesList[ResourcesList.Count - 1], 0);
          if hArc <> 0 then
          begin
            if SevenZipFindFirst(hArc, '*.ico', lpSubInfo) = 0 then
            begin
              Add(CharArrayToString(lpSubInfo.szFileName));
              while SevenZipFindNext(hArc, lpSubInfo) = 0 do
                Add(CharArrayToString(lpSubInfo.szFileName));
            end;
            SevenZipCloseArchive(hArc);
          end;
          Log(FmtMessage(CustomMessage('cmLogResource7ZipFileContent'), [CommaText]));
        end;
      end;
    until not FindNext(FR);
  finally
    FindClose(FR);
  end;
  Result := (ResourcesList.Count > 0);
  if not Result then
    MsgBox(CustomMessage('cmFileNotFound'), mbError, MB_OK);
  Log(CustomMessage('cmLogFindResource7ZipFile1b'));
end;

//////////////////////////////////////////////////////////////////////////////////
function ExtractArchive(const FileName, OutputDir, AddParam: AnsiString): Integer;
var
  Params: AnsiString;
begin
  Result := SZ_ERROR;
  Params := Format('e "%s" -o"%s" "%s" -y -hide', [FileName, OutputDir, AddParam]);
  CharToOemBuff(Params);
  try
    SevenZipSetOwnerWindowEx(UpdateForm.Handle, 0);
    Result := SevenZip(UpdateForm.Handle, Params, '', 0);
  finally
    SevenZipKillOwnerWindowEx(UpdateForm.Handle);
  except
    Result := SZ_DLLERROR;
  end;
end;

///////////////////////////////////
function GetFreeIconIndex: Integer;
var
  i: Integer;
begin
  Result := 1;
  while ResHelper.IconList.Find(Padz(IntToStr(Result), 5), i) do
    Inc(Result);
  ResHelper.IconList.Add(Padz(IntToStr(Result), 5));
end;

/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function EnumResLangProc(hModule: THandle; lpszType, lpszName: Longint; wIDLanguage: WORD; lParam: Longint): BOOL;
begin
  ResHelper.Items[lParam].wLanguage := wIDLanguage;
  Result := False;
end;

//////////////////////////////////////////////////////////////////////////////////////
function EnumResNameProc(hModule: THandle; lpszType, lpszName, lParam: Longint): BOOL;
var
  ResName: string;
  bUpdate: Boolean;
  R, Res, hFile, hMapObject: THandle;
  lpGroupIconDir: Longint;
  idCount: WORD;
  grpide: GRPICONDIRENTRY;
  i, n: Integer;
begin
  Result := True;

  { resource name }
  if lpszName shr $10 > 0 then
    ResName := CastIntegerToString(lpszName)
  else
    ResName := IntToStr(lpszName);
  bUpdate := FileExists(ExpandConstant(Format('{tmp}\resources\%s.ico', [ResName])));

  { load group icon resource }
  R := FindResource(hModule, lpszName, lpszType);
  if R = 0 then Exit;
  Res := LoadResource(hModule, R);
  if Res = 0 then Exit;
  lpGroupIconDir := LockResource(Res);
  if lpGroupIconDir = 0 then Exit;
  RtlMoveMemoryWORD(idCount, lpGroupIconDir + 4{offset idCount}, SizeOf(idCount));
  if idCount = 0 then Exit;

  if bUpdate then
  begin
    { update resource helper }
    n := GetArrayLength(ResHelper.Items);
    SetArrayLength(ResHelper.Items, n + 1);
    if lpszName shr $10 > 0 then
      ResHelper.Items[n].szName := CastIntegerToString(lpszName)
    else
      ResHelper.Items[n].szName := Format('%d', [lpszName]);
    EnumResourceLanguages(hModule, lpszType, lpszName, CallBackAddr('EnumResLangProc'), n);

    { delete 'RT_GROUP_ICON' }
    if not UpdateResource(lParam, lpszType, lpszName, ResHelper.Items[n].wLanguage, 0, 0) then Exit;

    { delete the RT_ICON icon resources that belonged to 'RT_GROUP_ICON' }
    for i := 0 to idCount - 1 do
    begin
      RtlMoveMemoryGRPIDE(grpide, lpGroupIconDir + 6{offset idEntries} + i * SizeOf(grpide), SizeOf(grpide));
      if not UpdateResource(lParam, RT_ICON, grpide.nID, ResHelper.Items[n].wLanguage, 0, 0) then Exit;
    end;

    { open icon resource }
    hFile := CreateFile(ExpandConstant(Format('{tmp}\resources\%s.ico', [ResName])), GENERIC_READ, FILE_SHARE_READ, 0, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
    if hFile = INVALID_HANDLE_VALUE then Exit;
    try
      hMapObject := CreateFileMapping(hFile, 0, PAGE_READONLY, 0, 0, '');
      if hMapObject = 0 then Exit;
      ResHelper.Items[n].lpIconDir := MapViewOfFile(hMapObject, FILE_MAP_READ, 0, 0, 0);
      if ResHelper.Items[n].lpIconDir = 0 then Exit;
    finally
      CloseHandle(hMapObject);
      CloseHandle(hFile);
    end;
  end
  else
  begin
    { add nonupdatable icon ordinals }
    for i := 0 to idCount - 1 do
    begin
      RtlMoveMemoryGRPIDE(grpide, lpGroupIconDir + 6{offset idEntries} + i * SizeOf(grpide), SizeOf(grpide));
      ResHelper.IconList.Add(Padz(IntToStr(grpide.nID), 5));
    end;
  end;
end;

//////////////////////////////////////////////////////////////
function UpdateFileResources(const FileName: string): Boolean;
var
  H, M: THandle;
  i, j: Integer;
  idCount: WORD;
  lpGrpData: GRPICONDIR;
  cbGrpData: DWORD;
  grpide: GRPICONDIRENTRY;
  ide: ICONDIRENTRY;
  bih: BITMAPINFOHEADER;
begin
  M := LoadLibraryEx(FileName, 0, LOAD_LIBRARY_AS_DATAFILE);
  if M = 0 then Exit;
  H := BeginUpdateResource(FileName, False);
  if H = 0 then Exit;
  try
    { enum resources }
    EnumResourceNames(M, RT_GROUP_ICON, CallbackAddr('EnumResNameProc'), H);

    { update the resources }
    for i := 0 to GetArrayLength(ResHelper.Items) - 1 do
    begin
      { check IconDir }
      Result := (ResHelper.Items[i].lpIconDir <> 0);
      if not Result then Exit;

      { build the new group icon resource }
      RtlMoveMemoryWORD(idCount, ResHelper.Items[i].lpIconDir + 4{offset idCount}, SizeOf(idCount));
      cbGrpData := 6{offset idEntries} + idCount * SizeOf(grpide);
      lpGrpData.idReserved := 0;
      lpGrpData.idType := 1;
      lpGrpData.idCount := idCount;
      for j := 0 to idCount - 1 do
      begin
        RtlMoveMemoryIDE(ide, ResHelper.Items[i].lpIconDir + 6{offset idEntries} + j * SizeOf(ide), SizeOf(ide));
        RtlMoveMemoryBI(bih, ResHelper.Items[i].lpIconDir + ide.dwImageOffset, SizeOf(bih));
        lpGrpData.idEntries[j].bWidth := ide.bWidth;
        lpGrpData.idEntries[j].bHeight := ide.bHeight;
        if (bih.biClrUsed = 0) and (bih.biBitCount < 9) then
          lpGrpData.idEntries[j].bColorCount := 1 shl bih.biBitCount
        else
          lpGrpData.idEntries[j].bColorCount := bih.biClrUsed;
        lpGrpData.idEntries[j].bReserved := ide.bReserved;
        lpGrpData.idEntries[j].wPlanes := bih.biPlanes;
        lpGrpData.idEntries[j].wBitCount := bih.biBitCount;
        lpGrpData.idEntries[j].dwBytesInRes := ide.dwBytesInRes;
        lpGrpData.idEntries[j].nID := GetFreeIconIndex;

        { update 'MAINICON' }
        with ResHelper.Items[i] do
          if not UpdateResource(H, RT_ICON, lpGrpData.idEntries[j].nID, wLanguage, lpIconDir + ide.dwImageOffset, ide.dwBytesInRes) then Continue;
      end;

      { update group }
      with ResHelper.Items[i] do
        if not UpdateResourcePtr(H, RT_GROUP_ICON, StrToIntDef(szName, CastStringToInteger(szName)), wLanguage, lpGrpData, cbGrpData) then Continue;

      { free memory }
      UnmapViewOfFile(ResHelper.Items[i].lpIconDir);
    end;
  finally
    FreeLibrary(M);
    if Result then
      Result := EndUpdateResource(H, not Result);
    SetArrayLength(ResHelper.Items, 0);
    ResHelper.IconList.Clear;
  end;
end;

//////////////////////////////
procedure UpdateResourcesProc;
var
  RootPath, RootDir, DirName, FileName, OutputDir, AddParam: AnsiString;
  ItemText: AnsiString;
  i, ResultCode: Integer;
begin
  { ResHelper }
  Log(CustomMessage('cmLogUpdateResources1a'));
  ResHelper.IconList := TStringList.Create;
  ResHelper.IconList.Sorted := True;
  ResHelper.IconList.Duplicates := dupIgnore;

  { update UI }
  UpdateForm.Enabled := False;
  ProgressBar.Max := 0;
  SelectResTreeView.Selected := SelectResTreeView.TopItem;
  for i := 0 to SelectResTreeView.Items.Count - 1 do
    if (SelectResTreeView.Items[i].Level = 1) and (SelectResTreeView.Items[i].StateIndex = 2) then
      ProgressBar.Max := ProgressBar.Max + 1;

  { prepare }
  RootPath := ExtractFileDir(BrowseEdit.Text);
  OutputDir := ExpandConstant('{tmp}\resources');
  for i := 0 to SelectResTreeView.Items.Count - 1 do
  begin
    ItemText := SelectResTreeView.Items[i].Text;
    SelectResTreeView.Items[i].Selected := True;
    if (SelectResTreeView.Items[i].StateIndex = 1) and (SelectResTreeView.Items[i].Level = 1) then
      SelectResTreeView.Items[i].StateIndex := 4
    else if SelectResTreeView.Items[i].StateIndex = 2 then
    begin
      if SelectResTreeView.Items[i].Level = 0 then
        RootDir := ItemText
      else if SelectResTreeView.Items[i].Level = 1 then
      begin
        { update UI }
        ProgressBar.Position := ProgressBar.Position + 1;

        { extract files }
        FileName := ResourcesList[SelectArchiveComboBox.ItemIndex];
        AddParam := Format('%s\%s\*.ico', [RootDir, ItemText]);
        Log(FmtMessage(CustomMessage('cmLogExtractResource7ZipFile'), [ExtractFileName(ItemText), ExtractFileName(FileName)]));
        ResultCode := ExtractArchive(FileName, OutputDir, AddParam);
        Log(FmtMessage(CustomMessage('cmLogResultCode'), [IntToStr(ResultCode)]));
        if ResultCode = 0 then
        begin
          { get file }
          case Lowercase(RootDir) of
            'root':
              DirName := RootPath;
          else
            DirName := Format('%s\%s', [RootPath, RootDir]);
          end;
            FileName := FileSearch(ItemText + '.exe', DirName);
          if FileName = '' then
            FileName := FileSearch(ItemText + '.dll', DirName);
          if FileName = '' then
            FileName := FileSearch(ItemText + '.mir', DirName);

          { update UI }
          StatusBar.Panels[0].Text := FmtMessage(CustomMessage('cmStatusLabelCaption1a'), [ExtractFileName(FileName)]);
          StatusBar.Refresh;

          { update resources in file }
          if FileExists(FileName) then
          begin
            if UpdateFileResources(FileName) then
            begin
              SelectResTreeView.Items[i].StateIndex := 3; // ok
              Log(FmtMessage(CustomMessage('cmLogUpdateFileResourcesStatus1a'), [ExtractFileName(FileName)]));
            end
            else
            begin
              SelectResTreeView.Items[i].StateIndex := 5; // error
              Log(FmtMessage(CustomMessage('cmLogUpdateFileResourcesStatus1b'), [ExtractFileName(FileName)]));
            end;
          end
          else
          begin
            SelectResTreeView.Items[i].StateIndex := 4;   // skip
            Log(FmtMessage(CustomMessage('cmLogUpdateFileResourcesStatus1c'), [Format('%0:s.exe, %0:s.dll, %0:s.mir', [ItemText])]));
          end;

          { cleanup }
          DelTree(OutputDir + '\*.ico', False, True, False);
        end;
      end;
    end;
  end;

  { update UI }
  SelectResButton.Caption := CustomMessage('cmSelectResButtonCaption1c');
  PatchButton.Enabled := False;
  StatusBar.Panels[0].Text := CustomMessage('cmStatusLabelCaption1b');
  ProgressBar.Position := 0;
  UpdateForm.Enabled := True;

  { cleanup }
  ResHelper.IconList.Free;
  Log(CustomMessage('cmLogUpdateResources1b'));
end;

/////////////////////////////////////////
procedure ButtonOnClick(Sender: TObject);
var
  i: Integer;
  FileName: string;
begin
  with TNewButton(Sender as TNewButton) do
  case Sender of
    SelectResButton:
      begin
        case Caption of
          CustomMessage('cmSelectResButtonCaption1a'):
            begin
              Caption := CustomMessage('cmSelectResButtonCaption1b');
              for i := 0 to SelectResTreeView.Items.Count - 1 do
                SelectResTreeView.Items[i].StateIndex := 2;
            end;
          CustomMessage('cmSelectResButtonCaption1b'):
            begin
              Caption := CustomMessage('cmSelectResButtonCaption1a');
              for i := 0 to SelectResTreeView.Items.Count - 1 do
                SelectResTreeView.Items[i].StateIndex := 1;
            end;
          CustomMessage('cmSelectResButtonCaption1c'):
            begin
              PatchButton.Enabled := FileExists(BrowseEdit.Text) and (ResourcesList.Count > 0);
              Caption := CustomMessage('cmSelectResButtonCaption1b');
              for i := 0 to SelectResTreeView.Items.Count - 1 do
                SelectResTreeView.Items[i].StateIndex := 2;
            end;
        end;
      end;
    BrowseButton:
      if GetOpenFileName(CustomMessage('cmBinariesPath'), FileName, '', CustomMessage('cmFilter'), 'Miranda??.exe') then
      begin
        BrowseEdit.Text := FileName;
        PatchButton.Enabled := FileExists(BrowseEdit.Text) and (ResourcesList.Count > 0);
        case SelectResButton.Caption of
          CustomMessage('cmSelectResButtonCaption1c'):
            begin
              SelectResButton.Caption := CustomMessage('cmSelectResButtonCaption1b');
              for i := 0 to SelectResTreeView.Items.Count - 1 do
                SelectResTreeView.Items[i].StateIndex := 2;
            end;
        end;
      end;
    PatchButton:
      begin
        Log(FmtMessage(CustomMessage('cmLogSelectedBinaryFile'), [BrowseEdit.Text]));
        Log(FmtMessage(CustomMessage('cmLogSelectedResource7ZipFile'), [SelectArchiveComboBox.Text]));
        UpdateResourcesProc;
      end;
  end;
end;

//////////////////////////////////////////////
procedure BrowseEditOnChange(Sender: TObject);
begin
  with TEdit(Sender as TEdit) do
  begin
    if FileExists(Text) then
      Font.Color := clDefault
    else
      Font.Color := clRed;
  end;
  PatchButton.Enabled := FileExists(BrowseEdit.Text) and (ResourcesList.Count > 0);
end;

/////////////////////////////////////////////////////////
procedure SelectArchiveComboBoxOnChange(Sender: TObject);
var
  FileList, TempList: TStringList;
  FileName, DirName, PrevFileName, PrevDirName: string;
  i, Index: Integer;
  bCheck: Boolean;
begin
  with SelectResTreeView do
  begin
    if SelectArchiveComboBox.ItemIndex = -1 then Exit;
    Items.Clear;
    TempList := TStringList.Create;
    TempList.Sorted := True;
    TempList.CommaText := Lowercase(ExpandConstant('{param:RES|*}'));
    FileList := TStringList(ResourcesList.Objects[SelectArchiveComboBox.ItemIndex] as TStringList);
    for i := 0 to FileList.Count - 1 do
    begin
      DirName := ExtractFileDir(ExtractFileDir(FileList[i]));
      FileName := ExtractFileName(ExtractFileDir(FileList[i]));
      if DirName <> '' then
      begin
        if DirName <> PrevDirName then
        begin
          PrevDirName := DirName;
          bCheck := (Trim(TempList.Text) = '*') or TempList.Find(Lowercase(DirName), Index);
          Items.Add(Selected, DirName).Selected := True;
          if bCheck then
            Selected.StateIndex := 2
          else
            Selected.StateIndex := 1;
        end;
        if FileName <> PrevFileName then
        begin
          PrevFileName := FileName;
          Items.AddChild(Selected, FileName).StateIndex := Selected.StateIndex;
        end;
      end;
    end;
    Selected := Items[0];
    TempList.Free;

    { update UI }
    PatchButton.Enabled := FileExists(BrowseEdit.Text) and (ResourcesList.Count > 0);
    case SelectResButton.Caption of
      CustomMessage('cmSelectResButtonCaption1c'):
        begin
          SelectResButton.Caption := CustomMessage('cmSelectResButtonCaption1b');
          for i := 0 to Items.Count - 1 do
            Items[i].StateIndex := 2;
        end;
    end;
  end;
end;

//////////////////////////////////////////////////////////////////////////////////////////////
procedure StatusBarOnDrawPanel(StatusBar: TStatusBar; Panel: TStatusPanel; const Rect: TRect);
begin
  ProgressBar.SetBounds(Rect.Left, Rect.Top, Rect.Right - Rect.Left, Rect.Bottom - Rect.Top);
  StatusBar.OnDrawPanel := nil;
end;

//////////////////////////////////////////////////////////////////////
procedure TreeViewOnGetImageIndex(Sender: TObject; Node: TTreeNode);
begin
  with Node do
  begin
    if Level = 0 then
    begin
      if HasChildren and Expanded then
        ImageIndex := 1
      else
        ImageIndex := 0;
    end
    else if Level = 1 then
      ImageIndex := 2;
  end;
end;

///////////////////////////////////////////////////////////////////////
procedure TreeViewOnGetSelectedIndex(Sender: TObject; Node: TTreeNode);
begin
  with Node do
  begin
    if Level = 0 then
    begin
      if HasChildren and Expanded then
        SelectedIndex := 1
      else
        SelectedIndex := 0;
    end
    else if Level = 1 then
      SelectedIndex := 2;
  end;
end;

////////////////////////////////////////////////////////////////////////////////////////////////////////
procedure TreeViewOnMouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
var
  TreeView: TTreeView;
  CurNode, FindNode, ParentNode: TTreeNode;
begin
  if Button <> mbLeft then Exit;
  TreeView := TTreeView(Sender as TTreeView);
  CurNode := TreeView.GetNodeAt(X, Y);
  if htOnStateIcon in TreeView.GetHitTestInfoAt(X, Y) then
  with CurNode do
  begin
    if StateIndex = 2 then
      StateIndex := 1
    else
      StateIndex := 2;
    if (Level = 0) and HasChildren then
    begin
      FindNode := GetFirstChild;
      while Assigned(FindNode) do
      begin
        FindNode.StateIndex := StateIndex;
        FindNode := GetNextChild(FindNode);
      end;
    end
    else if (Level = 1) then
    begin
      FindNode := CurNode;
      while Assigned(FindNode.GetPrevSibling) do
        FindNode := FindNode.GetPrevSibling;
      if StateIndex = 1 then
      begin
        ParentNode := FindNode.GetPrev;
        while Assigned(FindNode) do
        begin
          if FindNode.StateIndex = 2 then Exit;
          FindNode := GetNextChild(FindNode);
        end;
        ParentNode.StateIndex := StateIndex;
      end
      else
        FindNode.GetPrev.StateIndex := 2;
    end;
  end;
end;

///////////////////////////////////////////////////////////////////////////////////////////////////
procedure AddIconToImageList(const himl: HIMAGELIST; const hIcon: HICON; const bFreeIcon: Boolean);
var
  bi: BITMAPINFO;
  lpvBits: Longint;
  cx, cy: Integer;
begin
  with TBitmap.Create do
  try
    if not ImageList_GetIconSize(himl, cx, cy) then Exit;
    Width := ScaleX(cx);
    Height := ScaleY(cy);
    bi.bmiHeader.biSize := SizeOf(bi.bmiHeader);
    bi.bmiHeader.biWidth := Width;
    bi.bmiHeader.biHeight := Height;
    bi.bmiHeader.biPlanes := 1;
    bi.bmiHeader.biBitCount := 32;
    bi.bmiHeader.biCompression := BI_RGB;
    bi.bmiHeader.biSizeImage := Width * Height * 4;
    SetArrayLength(bi.bmiColors, Width * Height);
    Handle := CreateDIBSection(Canvas.Handle, bi, DIB_RGB_COLORS, lpvBits, 0, 0);
    DrawIconEx(Canvas.Handle, Width - Height, 0, hIcon, Height, Height, 0, 0, DI_NORMAL);
    ImageList_Add(himl, Handle, 0);
  finally
    Free;
    if bFreeIcon then
      DestroyIcon(hIcon);
  end;
end;

procedure UpdateFormOnActivate(Sender: TObject);
begin
  ShowWindow(Application.Handle, SW_HIDE);
  SetWindowLong(Application.Handle, GWL_EXSTYLE, GetWindowLong(Application.Handle, GWL_EXSTYLE) or $80) ;
  ShowWindow(Application.Handle, SW_SHOW);
end;

///////////////////////////
procedure CreateUpdateForm;
var
  MainPanel, BrowsePanel, ButtonPanel: TPanel;
  i: Integer;
  shfi: SHFILEINFO;
  hStateImgList: THandle;
  hIcon: HICON;
begin
  Application.Title := '{#AppName} {#AppVerName}';

  { UpdateForm }
  UpdateForm := TForm.Create(Application);
  with UpdateForm do
  begin
    Width := ScaleX(370);
    Height := ScaleY(400);
    BorderStyle := bsSingle;
    Caption := '{#AppName} {#AppVerName}';
    Position := poDesktopCenter;
  end;

  { StatusBar }
  StatusBar := TStatusBar.Create(UpdateForm);
  with StatusBar do
  begin
    Parent := UpdateForm;
    Align := alBottom;
    ThemeBackground := False;
    Panels.Add;
    Panels[0].Width := 2 * UpdateForm.ClientWidth div 3;
    Panels[0].Bevel := pbNone;
    Panels.Add;
    Panels[1].Style := psOwnerDraw;
    Panels[1].Bevel := pbNone;
    OnDrawPanel := @StatusBarOnDrawPanel;
  end;

  { ProgressBar }
  ProgressBar := TNewProgressBar.Create(UpdateForm);
  with ProgressBar do
  begin
    Parent := StatusBar;
  end;

  { MainPanel }
  MainPanel := TPanel.Create(UpdateForm);
  with MainPanel do
  begin
    Parent := UpdateForm;
    Align := alClient;
    BevelOuter := bvNone;
  end;

  { Bevel }
  with TBevel.Create(UpdateForm) do
  begin
    Parent := UpdateForm;
    Align := alBottom;
    Shape := bsTopLine;
    Style := bsLowered;
    Height := 1;
  end;

  { BinariesPath }
  with TStatusBar.Create(UpdateForm) do
  begin
    Parent := MainPanel;
    Height := ScaleY(21);
    Align := alTop;
    ThemeBackground := False;
    Panels.Add;
    Panels[0].Bevel := pbNone;
    Panels[0].Text := CustomMessage('cmBinariesPath');
  end;

  { BrowsePanel }
  BrowsePanel := TPanel.Create(UpdateForm);
  with BrowsePanel do
  begin
    Parent := MainPanel;
    Top := Parent.ClientHeight;
    Align := alTop;
    BevelOuter := bvNone;
  end;

  { BrowseButton }
  BrowseButton := TNewButton.Create(UpdateForm);
  with BrowseButton do
  begin
    Parent := BrowsePanel;
    Align := alRight;
    Height := ScaleY(21);
    Width := Height;
    BrowsePanel.Height := Height;
    Caption := '...';
    OnClick := @ButtonOnClick;
  end;

  { BrowseEdit }
  BrowseEdit := TEdit.Create(UpdateForm);
  with BrowseEdit do
  begin
    Parent := BrowsePanel;
    Top := (BrowseButton.Height - Height) div 2;
    Width := Parent.ClientWidth - Parent.ClientHeight;
    ReadOnly := True;
    if FileExists(ExpandConstant('{param:BIN}')) then
      Text := ExpandConstant('{param:BIN}');
    OnChange := @BrowseEditOnChange;
  end;

  { SelectArchive }
  with TStatusBar.Create(UpdateForm) do
  begin
    Parent := MainPanel;
    Top := Parent.ClientHeight;
    Height := ScaleY(24);
    Align := alTop;
    ThemeBackground := False;
    Panels.Add;
    Panels[0].Bevel := pbNone;
    Panels[0].Text := CustomMessage('cmSelectArchive');
  end;

  { SelectArchiveComboBox }
  SelectArchiveComboBox := TComboBox.Create(UpdateForm);
  with SelectArchiveComboBox do
  begin
    Parent := MainPanel;
    Top := Parent.ClientHeight;
    Align := alTop;
    Style := csDropDownList;
    for i := 0 to ResourcesList.Count - 1 do
      Items.Add(ExtractFileName(ResourcesList[i]));
    ResourcesList.Find(ExpandFileName(ExpandConstant('{param:ARC}.7z')), i);
    ItemIndex := i;
    OnChange := @SelectArchiveComboBoxOnChange;
  end;

  { SelectResources }
  with TStatusBar.Create(UpdateForm) do
  begin
    Parent := MainPanel;
    Top := Parent.ClientHeight;
    Height := ScaleY(24);
    Align := alTop;
    ThemeBackground := False;
    Panels.Add;
    Panels[0].Bevel := pbNone;
    Panels[0].Text := CustomMessage('cmSelectResources');
  end;

  { ButtonPanel }
  ButtonPanel := TPanel.Create(UpdateForm);
  with ButtonPanel do
  begin
    Parent := MainPanel;
    Align := alBottom;
    BevelOuter := bvNone;
  end;

  { SelectResButton }
  SelectResButton := TNewButton.Create(UpdateForm);
  with SelectResButton do
  begin
    Parent := ButtonPanel;
    Align := alLeft;
    ButtonPanel.Height := Height;
    Caption := CustomMessage('cmSelectResButtonCaption1b');
    OnClick := @ButtonOnClick;
  end;

  { PatchButton }
  PatchButton := TNewButton.Create(UpdateForm);
  with PatchButton do
  begin
    Parent := ButtonPanel;
    Align := alRight;
    Caption := CustomMessage('cmPatchButtonCaption');
    OnClick := @ButtonOnClick;
  end;

  { SelectResTreeView }
  SelectResTreeView := TTreeView.Create(UpdateForm);
  with SelectResTreeView do
  begin
    Parent := MainPanel;
    Align := alClient;
    ReadOnly := True;
    HideSelection := False;
    SetWindowLong(Handle, GWL_STYLE, GetWindowLong(Handle, GWL_STYLE) or TVS_CHECKBOXES);
    SetWindowLong(Handle, GWL_EXSTYLE, GetWindowLong(Handle, GWL_EXSTYLE) or WS_EX_COMPOSITED);

    { create imagelist }
    Images := TImageList.Create(UpdateForm);
    Images.Handle := ImageList_Create(ScaleX(18), ScaleY(16), ILC_COLOR32, 0, 0);
    if SHGetFileInfo(ExpandConstant('{tmp}'), 0, shfi, SizeOf(shfi), SHGFI_ICON or SHGFI_SMALLICON) <> 0 then
      AddIconToImageList(Images.Handle, shfi.hIcon, False);
    if SHGetFileInfo(ExpandConstant('{tmp}'), 0, shfi, SizeOf(shfi), SHGFI_ICON or SHGFI_SMALLICON or SHGFI_OPENICON) <> 0 then
      AddIconToImageList(Images.Handle, shfi.hIcon, False);
    hIcon := LoadImage(HInstance, '_IS_PLUGIN', IMAGE_ICON, 0, 0, 0);
    if hIcon <> 0 then
      AddIconToImageList(Images.Handle, hIcon, True);

    { state imagelist }
    hStateImgList := SendMessage(Handle, TVM_GETIMAGELIST, TVSIL_STATE, 0);
    if hStateImgList <> 0 then
    begin
      hIcon := LoadImage(HInstance, '_IS_DONE', IMAGE_ICON, 0, 0, 0);
      if hIcon <> 0 then
        AddIconToImageList(hStateImgList, hIcon, False);
      hIcon := LoadImage(HInstance, '_IS_SKIP', IMAGE_ICON, 0, 0, 0);
      if hIcon <> 0 then
        AddIconToImageList(hStateImgList, hIcon, False);
      hIcon := LoadImage(HInstance, '_IS_ERROR', IMAGE_ICON, 0, 0, 0);
      if hIcon <> 0 then
        AddIconToImageList(hStateImgList, hIcon, False);
      StateImages := TImageList.Create(UpdateForm);
      StateImages.Handle := hStateImgList;
    end;

    OnGetImageIndex := @TreeViewOnGetImageIndex;
    OnGetSelectedIndex := @TreeViewOnGetSelectedIndex;
    OnMouseDown := @TreeViewOnMouseDown;
    SelectArchiveComboBoxOnChange(SelectArchiveComboBox);
  end;

  { do work }
  try
    if IsParameter('/SILENT') then
    begin
      MainPanel.Hide;
      UpdateForm.ClientHeight := StatusBar.Height;
      UpdateForm.Show;
      if PatchButton.Enabled then
        PatchButton.Click;
      Exit;
    end
    else if IsParameter('/VERYSILENT') then
    begin
      ShowWindow(Application.Handle, SW_HIDE);
      if PatchButton.Enabled then
        PatchButton.Click;
      Exit;
    end
    else
      UpdateForm.ShowModal;
  finally
    { cleanup }
    for i := 0 to ResourcesList.Count - 1 do
      TStringList(ResourcesList.Objects[i] as TStringList).Free;
    ResourcesList.Free;
    UpdateForm.Free;
  end;
end;

//////////////////////////////////
function InitializeSetup: Boolean;
begin
  Result := False;
  if not DisplayHelp then
    if CheckSource then
      CreateUpdateForm;
end;