forked from abc874/ca2018
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Settings_dialog.dfm
1278 lines (1278 loc) · 32.5 KB
/
Settings_dialog.dfm
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
object FSettings: TFSettings
Left = 378
Top = 243
BorderIcons = []
Caption = 'Settings'
ClientHeight = 359
ClientWidth = 784
Color = clBtnFace
Constraints.MinHeight = 350
Constraints.MinWidth = 590
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
Font.Pitch = fpVariable
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
ShowHint = True
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object pgSettings: TPageControl
Left = 0
Top = 0
Width = 784
Height = 333
ActivePage = tabUserData
Align = alClient
MultiLine = True
Style = tsFlatButtons
TabOrder = 0
object tabUserData: TTabSheet
Caption = 'General'
ImageIndex = 4
DesignSize = (
776
302)
object lblUsername: TLabel
Left = 20
Top = 6
Width = 102
Height = 13
Alignment = taRightJustify
Caption = 'User Name (optional):'
end
object lblUserID: TLabel
Left = 39
Top = 33
Width = 83
Height = 13
Alignment = taRightJustify
Caption = 'User ID (random):'
end
object lblFramesSize: TLabel
Left = 29
Top = 60
Width = 93
Height = 13
Alignment = taRightJustify
Caption = 'Frame preview size:'
end
object lblFramesSizex_nl: TLabel
Left = 156
Top = 60
Width = 19
Height = 13
AutoSize = False
Caption = 'px x'
end
object lblFramesCount: TLabel
Left = 20
Top = 87
Width = 102
Height = 13
Alignment = taRightJustify
Caption = 'Frame preview count:'
end
object lblFramesSizeChangeHint: TLabel
Left = 226
Top = 60
Width = 114
Height = 13
Caption = '(change requires restart)'
end
object lblFramesCountChangeHint: TLabel
Left = 226
Top = 87
Width = 114
Height = 13
Caption = '(change requires restart)'
end
object lblSmallSkip: TLabel
Left = 50
Top = 114
Width = 72
Height = 13
Alignment = taRightJustify
Caption = 'Small skip time:'
end
object lblLargeSkip: TLabel
Left = 49
Top = 141
Width = 74
Height = 13
Alignment = taRightJustify
Caption = 'Large skip time:'
end
object lblSmallSkipSecs: TLabel
Left = 156
Top = 114
Width = 15
Height = 14
AutoSize = False
Caption = 's'
end
object lblLargeSkipSecs: TLabel
Left = 156
Top = 141
Width = 15
Height = 14
AutoSize = False
Caption = 's'
end
object lblFramesSizey_nl: TLabel
Left = 208
Top = 60
Width = 11
Height = 13
Alignment = taCenter
AutoSize = False
Caption = 'px'
end
object lblNetTimeout: TLabel
Left = 43
Top = 168
Width = 80
Height = 13
Alignment = taRightJustify
Caption = 'Network timeout:'
end
object lblNetTimeoutSecs: TLabel
Left = 156
Top = 168
Width = 15
Height = 14
AutoSize = False
Caption = 's'
end
object lblLanguage: TLabel
Left = 72
Top = 202
Width = 51
Height = 13
Alignment = taRightJustify
Caption = 'Language:'
end
object lblLanguageChangeHint: TLabel
Left = 568
Top = 203
Width = 114
Height = 13
Anchors = [akTop, akRight]
Caption = '(change requires restart)'
end
object edtUserName_nl: TEdit
Left = 128
Top = 3
Width = 639
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
object edtUserID_nl: TEdit
Left = 128
Top = 30
Width = 639
Height = 21
Anchors = [akLeft, akTop, akRight]
Color = clBtnFace
ReadOnly = True
TabOrder = 1
end
object edtFrameWidth_nl: TEdit
Left = 128
Top = 57
Width = 26
Height = 21
AutoSize = False
MaxLength = 3
TabOrder = 2
Text = '180'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object edtFrameHeight_nl: TEdit
Left = 180
Top = 57
Width = 26
Height = 21
AutoSize = False
MaxLength = 3
TabOrder = 3
Text = '135'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object edtFrameCount_nl: TEdit
Left = 128
Top = 84
Width = 26
Height = 21
AutoSize = False
MaxLength = 2
TabOrder = 4
Text = '12'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object rgCutMode: TRadioGroup
Left = 492
Top = 60
Width = 275
Height = 45
Hint =
'Cut out: New file is everything except cuts.'#13#10'Trim: New file is ' +
'sum of cuts.'
Caption = 'Default Cut Mode'
Columns = 2
ItemIndex = 1
Items.Strings = (
'Cut out'
'Trim')
ParentShowHint = False
ShowHint = True
TabOrder = 10
end
object edtLargeSkip_nl: TEdit
Left = 128
Top = 138
Width = 26
Height = 21
AutoSize = False
MaxLength = 2
TabOrder = 6
Text = '25'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object edtSmallSkip_nl: TEdit
Left = 128
Top = 111
Width = 26
Height = 21
AutoSize = False
MaxLength = 2
TabOrder = 5
Text = '2'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object edtNetTimeout_nl: TEdit
Left = 128
Top = 165
Width = 26
Height = 21
AutoSize = False
MaxLength = 2
TabOrder = 7
Text = '20'
OnExit = edtFrameWidth_nlExit
OnKeyPress = edtProxyPort_nlKeyPress
end
object cmbLanguage_nl: TComboBox
Left = 128
Top = 199
Width = 435
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
ItemIndex = 0
TabOrder = 14
Text = ' Standard'
Items.Strings = (
' Standard')
end
object cbAutoMuteOnSeek: TJvCheckBox
Left = 227
Top = 139
Width = 110
Height = 17
Caption = 'Auto mute on seek'
TabOrder = 8
LinkedControls = <>
end
object cbExceptionLogging: TJvCheckBox
Left = 227
Top = 166
Width = 105
Height = 17
Caption = 'Exception logging'
TabOrder = 9
LinkedControls = <>
end
object cbNoRateSuccMsg: TJvCheckBox
Left = 486
Top = 139
Width = 166
Height = 17
Caption = 'Suppress rating done message'
TabOrder = 12
LinkedControls = <>
end
object cbNoWarnUseRate: TJvCheckBox
Left = 486
Top = 166
Width = 186
Height = 17
Caption = 'Suppress rating proposed message'
TabOrder = 13
LinkedControls = <>
end
object cbNewNextFrameMethod: TJvCheckBox
Left = 486
Top = 112
Width = 153
Height = 17
Caption = 'Use new next frame method'
TabOrder = 11
LinkedControls = <>
end
end
object tabSaveMovie: TTabSheet
Caption = 'Save movie'
ImageIndex = 1
DesignSize = (
776
302)
object lblCutMovieExtension: TLabel
Left = 3
Top = 68
Width = 190
Height = 13
Caption = 'Automatically insert before file extension:'
WordWrap = True
end
object rgSaveCutMovieMode: TRadioGroup
Left = 3
Top = 3
Width = 765
Height = 56
Anchors = [akLeft, akTop, akRight]
Caption = 'Save cut movie:'
ItemIndex = 0
Items.Strings = (
'with source movie'
'always in this directory:')
TabOrder = 0
end
object edtCutMovieSaveDir_nl: TEdit
Left = 142
Top = 34
Width = 584
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object edtCutMovieExtension_nl: TEdit
Left = 212
Top = 65
Width = 555
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 3
Text = '.cut'
end
object cmdCutMovieSaveDir: TButton
Left = 732
Top = 34
Width = 27
Height = 21
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 2
OnClick = cmdCutMovieSaveDirClick
end
object cbMovieNameAlwaysConfirm: TJvCheckBox
Left = 3
Top = 112
Width = 201
Height = 17
Caption = 'Always confirm filename before cutting'
TabOrder = 5
LinkedControls = <>
end
object cbUseMovieNameSuggestion: TJvCheckBox
Left = 3
Top = 92
Width = 264
Height = 17
Caption = 'Use movie file name suggested by cutlist (if present)'
TabOrder = 4
LinkedControls = <>
end
object cbAutoSearchCutlists: TJvCheckBox
Left = 3
Top = 132
Width = 264
Height = 17
Caption = 'Automatically search for cutlists after opening movie'
TabOrder = 6
LinkedControls = <>
end
end
object tabSaveCutlist: TTabSheet
Caption = 'Save cutlist'
ImageIndex = 2
DesignSize = (
776
302)
object rgSaveCutlistMode: TRadioGroup
Left = 3
Top = 3
Width = 764
Height = 56
Anchors = [akLeft, akTop, akRight]
Caption = 'Save cutlist:'
ItemIndex = 0
Items.Strings = (
'with source movie'
'always in this directory:')
TabOrder = 0
end
object edtCutListSaveDir_nl: TEdit
Left = 142
Top = 34
Width = 583
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object cmdCutlistSaveDir: TButton
Left = 731
Top = 34
Width = 27
Height = 21
Anchors = [akTop, akRight]
Caption = '...'
TabOrder = 2
OnClick = cmdCutlistSaveDirClick
end
object cbCutlistNameAlwaysConfirm: TJvCheckBox
Left = 3
Top = 86
Width = 200
Height = 17
Caption = 'Always confirm filename before saving'
TabOrder = 4
LinkedControls = <>
end
object cbCutlistAutoSaveBeforeCutting: TJvCheckBox
Left = 3
Top = 106
Width = 137
Height = 17
Caption = 'Auto save before cutting'
TabOrder = 5
LinkedControls = <>
end
object cbSearchLocalCutlists: TJvCheckBox
Left = 3
Top = 126
Width = 325
Height = 17
Caption =
'Include cutlist standard directory when auto-searching for cutli' +
'sts'
TabOrder = 6
LinkedControls = <>
end
object cbAutoSaveDownloadedCutlists: TJvCheckBox
Left = 3
Top = 66
Width = 208
Height = 17
Caption = 'Automatically save downloaded cutlists.'
Checked = True
State = cbChecked
TabOrder = 3
LinkedControls = <>
end
end
object tabURLs: TTabSheet
Caption = 'URLs'
ImageIndex = 3
Constraints.MinHeight = 210
DesignSize = (
776
302)
object lblServerUrl: TLabel
Left = 66
Top = 6
Width = 62
Height = 13
Alignment = taRightJustify
Caption = 'Cutlist Server'
end
object lblInfoUrl: TLabel
Left = 27
Top = 60
Width = 101
Height = 13
Alignment = taRightJustify
Caption = 'Cut Assistant Info File'
end
object lblHelpUrl: TLabel
Left = 82
Top = 87
Width = 46
Height = 13
Alignment = taRightJustify
Caption = 'Wiki Help'
end
object lblUploadUrl: TLabel
Left = 3
Top = 33
Width = 125
Height = 13
Alignment = taRightJustify
Caption = 'Cutlist Server Upload Form'
end
object edtURL_Cutlist_Home_nl: TEdit
Left = 134
Top = 3
Width = 633
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
end
object edtURL_Info_File_nl: TEdit
Left = 134
Top = 57
Width = 633
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
end
object edtURL_Cutlist_Upload_nl: TEdit
Left = 134
Top = 30
Width = 633
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object edtURL_Help_nl: TEdit
Left = 134
Top = 84
Width = 633
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 3
end
object grpProxy: TGroupBox
Left = 3
Top = 164
Width = 764
Height = 92
Anchors = [akLeft, akTop, akRight]
Caption = 'Proxy Prameters'
TabOrder = 6
DesignSize = (
764
92)
object lblProxyServer: TLabel
Left = 34
Top = 22
Width = 31
Height = 13
Alignment = taRightJustify
Caption = 'Server'
end
object lblProxyPort: TLabel
Left = 680
Top = 22
Width = 19
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Port'
end
object lblProxyPass: TLabel
Left = 551
Top = 49
Width = 46
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Password'
end
object lblProxyUser: TLabel
Left = 12
Top = 49
Width = 53
Height = 13
Alignment = taRightJustify
Caption = 'User Name'
end
object lblProxyPassWarning: TLabel
Left = 485
Top = 72
Width = 266
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Warning: Password will be saved in settings in clear text!'
end
object edtProxyServerName_nl: TEdit
Left = 71
Top = 19
Width = 585
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
end
object edtProxyPort_nl: TEdit
Left = 705
Top = 18
Width = 46
Height = 21
Anchors = [akTop, akRight]
TabOrder = 0
Text = '0'
OnKeyPress = edtProxyPort_nlKeyPress
end
object edtProxyPassword_nl: TEdit
Left = 603
Top = 45
Width = 148
Height = 21
Anchors = [akTop, akRight]
PasswordChar = '*'
TabOrder = 2
end
object edtProxyUserName_nl: TEdit
Left = 71
Top = 46
Width = 452
Height = 21
Anchors = [akLeft, akTop, akRight]
TabOrder = 3
end
end
object cbSearchServerCutlists: TJvCheckBox
Left = 135
Top = 116
Width = 255
Height = 17
Caption = 'Use Cutlist server when auto-searching for cutlists'
Checked = True
State = cbChecked
TabOrder = 4
LinkedControls = <>
end
object cbSearchCutlistsByName: TJvCheckBox
Left = 135
Top = 140
Width = 188
Height = 17
Caption = 'Additionally search Cutlists by name'
Checked = True
State = cbChecked
TabOrder = 5
LinkedControls = <>
end
end
object tabInfoCheck: TTabSheet
Caption = 'Info Check'
ImageIndex = 9
object grpInfoCheck: TGroupBox
Left = 3
Top = 23
Width = 286
Height = 106
TabOrder = 1
object lblCheckInterval: TLabel
Left = 13
Top = 22
Width = 209
Height = 13
Alignment = taRightJustify
Caption = 'Days between checking for Infos on server: '
end
object ECheckInfoInterval_nl: TEdit
Left = 244
Top = 19
Width = 33
Height = 21
TabOrder = 0
Text = '0'
OnKeyPress = ECheckInfoInterval_nlKeyPress
end
object CBInfoCheckStable: TJvCheckBox
Left = 13
Top = 65
Width = 210
Height = 17
Caption = 'Check on server for new stable versions'
TabOrder = 2
LinkedControls = <>
end
object CBInfoCheckBeta: TJvCheckBox
Left = 13
Top = 84
Width = 203
Height = 17
Caption = 'Check on server for new beta versions'
TabOrder = 3
LinkedControls = <>
end
object CBInfoCheckMessages: TJvCheckBox
Left = 13
Top = 46
Width = 164
Height = 17
Caption = 'Check on server for messages'
TabOrder = 1
LinkedControls = <>
end
end
object CBInfoCheckEnabled: TJvCheckBox
Left = 3
Top = 3
Width = 179
Height = 17
Caption = 'Check Infos on Server on Startup'
TabOrder = 0
LinkedControls = <>
end
end
object TabExternalCutApplication: TTabSheet
Caption = 'External cut application'
DesignSize = (
776
302)
object lblCutWithWMV: TLabel
Left = 3
Top = 24
Width = 144
Height = 13
Alignment = taRightJustify
Caption = 'Cut Windows Media Files with:'
end
object lblCutWithAvi: TLabel
Left = 62
Top = 51
Width = 85
Height = 13
Alignment = taRightJustify
Caption = 'Cut AVI Files with:'
end
object lblCutWithOther: TLabel
Left = 42
Top = 133
Width = 105
Height = 13
Alignment = taRightJustify
Caption = 'Cut all other Files with:'
end
object lblSelectCutApplication: TLabel
Left = 3
Top = 0
Width = 299
Height = 13
Caption = 'Please select the Cut Application for each File Type:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
Font.Pitch = fpVariable
Font.Style = [fsBold]
ParentFont = False
end
object lblCutWithMP4: TLabel
Left = 40
Top = 106
Width = 107
Height = 13
Alignment = taRightJustify
Caption = 'Cut MP4 Iso Files with:'
end
object lblAutoCloseCuttingWindow: TLabel
Left = 31
Top = 162
Width = 274
Height = 13
Alignment = taRightJustify
Caption = 'Automatically close cutting window after (use 0 to disable):'
end
object lblWaitTimeout: TLabel
Left = 382
Top = 162
Width = 5
Height = 13
Caption = 's'
end
object lblSmartRenderingCodec: TLabel
Left = 314
Top = 1
Width = 208
Height = 13
Caption = 'For Smart Rendering use this Codec:'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
Font.Pitch = fpVariable
Font.Style = [fsBold]
ParentFont = False
end
object lblCutWithHQAvi: TLabel
Left = 43
Top = 79
Width = 104
Height = 13
Alignment = taRightJustify
Caption = 'Cut HQ-AVI Files with:'
end
object CBWmvApp_nl: TComboBox
Left = 153
Top = 21
Width = 152
Height = 21
Style = csDropDownList
TabOrder = 0
OnChange = cbCutAppChange
Items.Strings = (
'')
end
object CBAviApp_nl: TComboBox
Left = 153
Top = 48
Width = 152
Height = 21
Style = csDropDownList
TabOrder = 4
OnChange = cbCutAppChange
Items.Strings = (
'')
end
object CBOtherApp_nl: TComboBox
Left = 153
Top = 130
Width = 152
Height = 21
Style = csDropDownList
TabOrder = 16
OnChange = cbCutAppChange
Items.Strings = (
'')
end
object cbMP4App_nl: TComboBox
Left = 153
Top = 103
Width = 152
Height = 21
Style = csDropDownList
TabOrder = 12
OnChange = cbCutAppChange
Items.Strings = (
'')
end
object spnWaitTimeout: TJvSpinEdit
Left = 314
Top = 158
Width = 65
Height = 21
CheckMinValue = True
Alignment = taRightJustify
ButtonKind = bkStandard
Decimal = 0
Value = 20.000000000000000000
TabOrder = 20
end
object cmbCodecWmv_nl: TComboBox
Left = 314
Top = 21
Width = 359
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = cmbCodecChange
end
object btnCodecConfigWmv: TButton
Left = 679
Top = 21
Width = 65
Height = 21
Anchors = [akTop, akRight]
Caption = 'Config'
TabOrder = 2
OnClick = btnCodecConfigClick
end
object btnCodecAboutWmv: TButton
Left = 750
Top = 21
Width = 25
Height = 21
Anchors = [akTop, akRight]
Caption = '?'
TabOrder = 3
OnClick = btnCodecAboutClick
end
object cmbCodecAvi_nl: TComboBox
Left = 314
Top = 48
Width = 359
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 5
OnChange = cmbCodecChange
end
object btnCodecConfigAvi: TButton
Left = 679
Top = 48
Width = 65
Height = 21
Anchors = [akTop, akRight]
Caption = 'Config'
TabOrder = 6
OnClick = btnCodecConfigClick
end
object btnCodecAboutAvi: TButton
Left = 750
Top = 48
Width = 25
Height = 21
Anchors = [akTop, akRight]
Caption = '?'
TabOrder = 7
OnClick = btnCodecAboutClick
end
object cmbCodecMP4_nl: TComboBox
Left = 314
Top = 103
Width = 359
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 13
OnChange = cmbCodecChange
end
object btnCodecConfigMP4: TButton
Left = 679
Top = 103
Width = 65
Height = 21
Anchors = [akTop, akRight]
Caption = 'Config'
TabOrder = 14
OnClick = btnCodecConfigClick
end
object btnCodecAboutMP4: TButton
Left = 750
Top = 103
Width = 25
Height = 21
Anchors = [akTop, akRight]
Caption = '?'
TabOrder = 15
OnClick = btnCodecAboutClick
end
object cmbCodecOther_nl: TComboBox
Left = 314
Top = 130
Width = 359
Height = 21
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 17
OnChange = cmbCodecChange
end
object btnCodecConfigOther: TButton
Left = 679
Top = 130
Width = 65
Height = 21
Anchors = [akTop, akRight]
Caption = 'Config'
TabOrder = 18
OnClick = btnCodecConfigClick
end
object btnCodecAboutOther: TButton
Left = 750
Top = 130
Width = 25
Height = 21