-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathSettings.dfm
2550 lines (2550 loc) · 107 KB
/
Settings.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 SettingsForm: TSettingsForm
Left = 0
Top = 0
BorderIcons = [biSystemMenu, biMinimize]
BorderStyle = bsSingle
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080
ClientHeight = 476
ClientWidth = 797
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object SaveSettingsButton: TButton
Left = 528
Top = 443
Width = 155
Height = 25
Caption = #1057#1086#1093#1088#1072#1085#1080#1090#1100' '#1085#1072#1089#1090#1088#1086#1081#1082#1080
ImageIndex = 0
Images = ImageList_Main
TabOrder = 1
OnClick = SaveSettingsButtonClick
end
object CloseButton: TButton
Left = 689
Top = 443
Width = 100
Height = 25
Caption = #1047#1072#1082#1088#1099#1090#1100
ImageIndex = 26
TabOrder = 2
OnClick = CloseButtonClick
end
object SettingtButtonGroup: TMGButtonGroup
Left = 8
Top = 8
Width = 153
Height = 429
BevelKind = bkTile
BorderStyle = bsNone
ButtonOptions = [gboFullSize, gboGroupStyle, gboShowCaptions]
Items = <
item
Caption = ' '#1054#1073#1097#1080#1077' '#1085#1072#1089#1090#1088#1086#1081#1082#1080
end
item
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1079#1072#1087#1080#1089#1080
end
item
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103
end
item
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103
end
item
Caption = ' '#1050#1086#1084#1072#1085#1076#1099
end
item
Caption = ' '#1043#1086#1088#1103#1095#1080#1077' '#1082#1083#1072#1074#1080#1096#1080
end
item
Caption = ' '#1055#1077#1088#1077#1076#1072#1095#1072' '#1090#1077#1082#1089#1090#1072
end
item
Caption = ' '#1050#1086#1088#1088#1077#1082#1094#1080#1103' '#1090#1077#1082#1089#1090#1072
end
item
Caption = ' '#1057#1080#1085#1090#1077#1079' '#1075#1086#1083#1086#1089#1072
end
item
Caption = ' '#1054' '#1087#1088#1086#1075#1088#1072#1084#1084#1077
end>
TabOrder = 3
OnClick = SettingtButtonGroupClick
OnKeyUp = SettingtButtonGroupKeyUp
ButtonGradient = False
Colors.BackColor = clWindow
Colors.ButtonColor = clWindow
Colors.ButtonColorFrom = clWindow
Colors.ButtonColorTo = clWindow
Colors.ButtonDownColor = 16772054
Colors.ButtonDownColorFrom = 16772054
Colors.ButtonDownColorTo = 16772054
Colors.HotButtonColor = 16772054
Colors.HotButtonColorFrom = 16772054
Colors.HotButtonColorTo = 16772054
Colors.BorderButtonColor = 6956042
Colors.BorderButtonDownColor = 6956042
HotTrack = False
ButtonBorder = True
end
object SettingsPageControl: TPageControl
Left = 167
Top = 8
Width = 622
Height = 429
ActivePage = TabSheetTextCorrection
TabOrder = 0
object TabSheetSettings: TTabSheet
Caption = #1054#1073#1097#1080#1077' '#1085#1072#1089#1090#1088#1086#1081#1082#1080
ImageIndex = 2
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
DesignSize = (
614
401)
object GBInterfaceSettings: TGroupBox
Left = 3
Top = 64
Width = 608
Height = 105
Anchors = [akLeft, akTop, akRight]
Caption = ' '#1048#1085#1090#1077#1088#1092#1077#1081#1089' '
TabOrder = 0
object LLang: TLabel
Left = 11
Top = 73
Width = 88
Height = 13
Caption = #1071#1079#1099#1082' '#1087#1088#1086#1075#1088#1072#1084#1084#1099':'
end
object AlphaBlendVar: TLabel
Left = 386
Top = 25
Width = 18
Height = 13
Caption = '255'
end
object CBShowTrayEvents: TCheckBox
Left = 11
Top = 47
Width = 233
Height = 17
Caption = #1055#1086#1082#1072#1079#1099#1074#1072#1090#1100' '#1074#1089#1087#1083#1099#1074#1072#1102#1097#1080#1077' '#1089#1086#1086#1073#1097#1077#1085#1080#1103
TabOrder = 2
end
object CBAlphaBlend: TCheckBox
Left = 11
Top = 24
Width = 177
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1087#1088#1086#1079#1088#1072#1095#1085#1086#1089#1090#1100' '#1086#1082#1086#1085
TabOrder = 0
OnClick = CBAlphaBlendClick
end
object AlphaBlendTrackBar: TTrackBar
Left = 194
Top = 18
Width = 186
Height = 23
Ctl3D = True
Max = 255
ParentCtl3D = False
Frequency = 20
ShowSelRange = False
TabOrder = 1
ThumbLength = 12
TickMarks = tmTopLeft
OnChange = AlphaBlendTrackBarChange
end
object CBLang: TComboBox
Left = 105
Top = 70
Width = 161
Height = 21
Style = csDropDownList
TabOrder = 3
OnChange = CBLangChange
end
end
object GBLogs: TGroupBox
Left = 3
Top = 175
Width = 608
Height = 82
Anchors = [akLeft, akTop, akRight]
Caption = ' '#1042#1077#1076#1077#1085#1080#1077' '#1083#1086#1075#1086#1074' '
TabOrder = 1
object LErrLogSize: TLabel
Left = 81
Top = 47
Width = 211
Height = 13
Caption = #1052#1072#1082#1089#1080#1084#1072#1083#1100#1085#1099#1081' '#1088#1072#1079#1084#1077#1088' '#1083#1086#1075'-'#1092#1072#1081#1083#1072' ('#1050#1073#1072#1081#1090')'
end
object SEErrLogSize: TSpinEdit
Left = 11
Top = 42
Width = 64
Height = 22
MaxValue = 1024
MinValue = 1
TabOrder = 0
Value = 1
end
object CBEnableLogs: TCheckBox
Left = 11
Top = 19
Width = 350
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1074#1077#1076#1077#1085#1080#1077' '#1083#1086#1075#1086#1074
TabOrder = 1
OnClick = CBEnableLogsClick
end
end
object GBMainSettings: TGroupBox
Left = 3
Top = 3
Width = 608
Height = 55
Caption = ' '#1054#1073#1097#1077#1077' '
TabOrder = 2
object CBAutoRunMSpeech: TCheckBox
Left = 11
Top = 24
Width = 574
Height = 17
Caption = #1047#1072#1087#1091#1089#1082#1072#1090#1100' MSpeech '#1087#1088#1080' '#1074#1093#1086#1076#1077' '#1074' '#1089#1080#1089#1090#1077#1084#1091
TabOrder = 0
end
end
end
object TabSheetRecord: TTabSheet
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1079#1072#1087#1080#1089#1080
ImageIndex = 5
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
DesignSize = (
614
401)
object GBRecordSettings: TGroupBox
Left = 3
Top = 0
Width = 608
Height = 398
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1079#1072#1087#1080#1089#1080' '
TabOrder = 0
object LMaxLevel: TLabel
Left = 16
Top = 59
Width = 268
Height = 13
Caption = #1052#1072#1082#1089#1080#1084#1072#1083#1100#1085#1099#1081' '#1091#1088#1086#1074#1077#1085#1100' '#1089#1080#1075#1085#1072#1083#1072' '#1076#1083#1103' '#1085#1072#1095#1072#1083#1072' '#1079#1072#1087#1080#1089#1080':'
end
object LMaxLevelInterrupt: TLabel
Left = 16
Top = 81
Width = 305
Height = 13
Caption = #1050#1086#1083'. '#1089#1088#1072#1073#1072#1090#1099#1074#1072#1085#1080#1081' '#1085#1072' '#1084#1072#1082#1089'-'#1099#1081' '#1091#1088#1086#1074#1077#1085#1100' '#1076#1083#1103' '#1085#1072#1095#1072#1083#1072' '#1079#1072#1087#1080#1089#1080':'
end
object LMinLevel: TLabel
Left = 16
Top = 105
Width = 321
Height = 13
Caption = #1052#1080#1085#1080#1084#1072#1083#1100#1085#1099#1081' '#1091#1088#1086#1074#1077#1085#1100' '#1089#1080#1075#1085#1072#1083#1072' '#1076#1083#1103' '#1085#1072#1095#1072#1083#1072' '#1072#1074#1090#1086'-'#1088#1072#1089#1087#1086#1079#1085#1072#1085#1080#1103':'
end
object LEMinLevelInterrupt: TLabel
Left = 16
Top = 127
Width = 358
Height = 13
Caption = #1050#1086#1083'. '#1089#1088#1072#1073#1072#1090#1099#1074#1072#1085#1080#1081' '#1085#1072' '#1084#1080#1085'-'#1099#1081' '#1091#1088#1086#1074#1077#1085#1100' '#1076#1083#1103' '#1085#1072#1095#1072#1083#1072' '#1072#1074#1090#1086'-'#1088#1072#1089#1087#1086#1079#1085#1072#1085#1080#1103':'
end
object LDevice: TLabel
Left = 16
Top = 24
Width = 52
Height = 13
Caption = #1048#1089#1090#1086#1095#1085#1080#1082':'
end
object LStopRecordAction: TLabel
Left = 16
Top = 155
Width = 201
Height = 13
Caption = #1044#1077#1081#1089#1090#1074#1080#1077' '#1082#1085#1086#1087#1082#1080' "'#1054#1089#1090#1072#1085#1086#1074#1080#1090#1100' '#1079#1072#1087#1080#1089#1100'":'
end
object EMaxLevel: TEdit
Left = 441
Top = 55
Width = 25
Height = 21
NumbersOnly = True
TabOrder = 2
Text = '0'
OnKeyDown = EMaxLevelKeyDown
end
object UpDownMaxLevel: TUpDown
Left = 466
Top = 55
Width = 16
Height = 21
Associate = EMaxLevel
TabOrder = 3
OnClick = UpDownMaxLevelClick
end
object CBMaxLevelControl: TCheckBox
Left = 487
Top = 57
Width = 98
Height = 17
Caption = #1040#1074#1090#1086'-'#1079#1072#1087#1080#1089#1100
TabOrder = 4
OnClick = CBMaxLevelControlClick
end
object EMinLevelInterrupt: TEdit
Left = 441
Top = 123
Width = 25
Height = 21
NumbersOnly = True
TabOrder = 9
Text = '0'
OnKeyDown = EMinLevelInterruptKeyDown
end
object UpDownMinLevelInterrupt: TUpDown
Left = 466
Top = 123
Width = 16
Height = 21
Associate = EMinLevelInterrupt
TabOrder = 10
OnClick = UpDownMinLevelInterruptClick
end
object UpDownMaxLevelInterrupt: TUpDown
Left = 466
Top = 78
Width = 16
Height = 21
Associate = EMaxLevelInterrupt
TabOrder = 6
OnClick = UpDownMaxLevelInterruptClick
end
object UpDownMinLevel: TUpDown
Left = 466
Top = 101
Width = 16
Height = 21
Associate = EMinLevel
TabOrder = 8
OnClick = UpDownMinLevelClick
end
object EMinLevel: TEdit
Left = 441
Top = 101
Width = 25
Height = 21
NumbersOnly = True
TabOrder = 7
Text = '0'
OnKeyDown = EMinLevelKeyDown
end
object StaticTextMinLevel: TStaticText
Left = 487
Top = 102
Width = 40
Height = 20
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = '0'
TabOrder = 12
end
object StaticTextMaxLevelInterrupt: TStaticText
Left = 487
Top = 78
Width = 40
Height = 20
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = '0'
TabOrder = 13
end
object StaticTextMinLevelInterrupt: TStaticText
Left = 487
Top = 124
Width = 40
Height = 20
Alignment = taCenter
AutoSize = False
BorderStyle = sbsSunken
Caption = '0'
TabOrder = 14
end
object EMaxLevelInterrupt: TEdit
Left = 441
Top = 78
Width = 25
Height = 21
NumbersOnly = True
TabOrder = 5
Text = '0'
OnKeyDown = EMaxLevelInterruptKeyDown
end
object CBDevice: TComboBox
Left = 74
Top = 21
Width = 361
Height = 21
Style = csDropDownList
TabOrder = 0
OnChange = CBDeviceChange
end
object MicSettingsButton: TButton
Left = 441
Top = 19
Width = 137
Height = 25
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1084#1080#1082#1088#1086#1092#1086#1085#1072
TabOrder = 1
OnClick = MicSettingsButtonClick
end
object CBStopRecordAction: TComboBox
Left = 223
Top = 152
Width = 350
Height = 21
Style = csDropDownList
TabOrder = 11
OnChange = CBStopRecordActionChange
end
object CBEnableFilters: TCheckBox
Left = 16
Top = 179
Width = 321
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1092#1080#1083#1100#1090#1088#1072#1094#1080#1102' '#1079#1074#1091#1082#1072
TabOrder = 15
Visible = False
OnClick = CBEnableFiltersClick
end
object GBFilters: TGroupBox
Left = 16
Top = 202
Width = 577
Height = 193
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1092#1080#1083#1100#1090#1088#1086#1074' '
TabOrder = 16
object RGFiltersType: TRadioGroup
Left = 16
Top = 16
Width = 252
Height = 62
Caption = ' '#1058#1080#1087' '#1092#1080#1083#1100#1090#1088#1072' '
ItemIndex = 0
Items.Strings = (
'Sinc Filter'
'Voice Filter (Only for Windows 7 and above)')
TabOrder = 0
OnClick = RGFiltersTypeClick
end
object GBWindowedSincFilter: TGroupBox
Left = 274
Top = 15
Width = 239
Height = 138
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' Sinc Filter '
TabOrder = 1
object LSincFilterType: TLabel
Left = 16
Top = 24
Width = 69
Height = 13
Caption = #1058#1080#1087' '#1092#1080#1083#1100#1090#1088#1072':'
end
object LLowFreq: TLabel
Left = 16
Top = 51
Width = 45
Height = 13
Caption = 'LowFreq:'
end
object LHighFreq: TLabel
Left = 124
Top = 51
Width = 47
Height = 13
Caption = 'HighFreq:'
end
object LKernelWidth: TLabel
Left = 17
Top = 78
Width = 62
Height = 13
Caption = 'KernelWidth:'
end
object LWindowType: TLabel
Left = 16
Top = 107
Width = 66
Height = 13
Caption = 'WindowType:'
end
object CBSincFilterType: TComboBox
Left = 91
Top = 21
Width = 86
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 0
Text = 'ftAllPass'
Items.Strings = (
'ftAllPass'
'ftBandPass'
'ftBandReject'
'ftHighPass'
'ftLowPass')
end
object ELowFreq: TEdit
Left = 64
Top = 48
Width = 50
Height = 21
MaxLength = 5
NumbersOnly = True
TabOrder = 1
Text = '300'
end
object EHighFreq: TEdit
Left = 175
Top = 48
Width = 50
Height = 21
MaxLength = 5
NumbersOnly = True
TabOrder = 2
Text = '4000'
end
object EKernelWidth: TEdit
Left = 85
Top = 75
Width = 28
Height = 21
MaxLength = 3
NumbersOnly = True
TabOrder = 3
Text = '32'
end
object CBWindowType: TComboBox
Left = 91
Top = 102
Width = 86
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 4
Text = 'fwBlackman'
Items.Strings = (
'fwBlackman'
'fwHamming'
'fwHann')
end
end
object GBVoiceFilter: TGroupBox
Left = 16
Top = 85
Width = 287
Height = 101
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' Voice Filter '
TabOrder = 2
object CBVoiceFilterEnableAGC: TCheckBox
Left = 16
Top = 23
Width = 249
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' AGC (Automatic gain control)'
TabOrder = 0
end
object CBVoiceFilterEnableNoiseReduction: TCheckBox
Left = 16
Top = 46
Width = 249
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' '#1087#1086#1076#1072#1074#1083#1077#1085#1080#1077' '#1096#1091#1084#1072' (Noise reduction)'
TabOrder = 1
end
object CBVoiceFilterEnableVAD: TCheckBox
Left = 16
Top = 69
Width = 249
Height = 17
Caption = #1042#1082#1083#1102#1095#1080#1090#1100' VAD (Voice Activity Detection)'
TabOrder = 2
end
end
end
end
end
object TabSheetRecognize: TTabSheet
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103
ImageIndex = 8
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object GBRecognizeSettings: TGroupBox
Left = 3
Top = 0
Width = 608
Height = 398
Caption = ' '#1053#1072#1089#1090#1088#1086#1082#1080' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103' '#1088#1077#1095#1080' '
TabOrder = 0
object LFirstRegion: TLabel
Left = 16
Top = 53
Width = 187
Height = 13
Caption = #1054#1089#1085#1086#1074#1085#1086#1081' '#1103#1079#1099#1082' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103' '#1088#1077#1095#1080':'
end
object LSecondRegion: TLabel
Left = 16
Top = 80
Width = 180
Height = 13
Caption = #1044#1086#1087#1086#1083#1085'. '#1103#1079#1099#1082' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103' '#1088#1077#1095#1080':'
end
object LASR: TLabel
Left = 16
Top = 26
Width = 143
Height = 13
Caption = #1052#1077#1090#1086#1076' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103' '#1088#1077#1095#1080':'
end
object LSpeechAPIKey: TLabel
Left = 16
Top = 107
Width = 157
Height = 13
Caption = #1042#1072#1096' '#1082#1083#1102#1095' '#1082' Google Speech API:'
end
object CBFirstRegion: TComboBox
Left = 209
Top = 50
Width = 277
Height = 21
Style = csDropDownList
TabOrder = 0
Items.Strings = (
'Afrikaans'
'Bahasa Indonesia'
'Bahasa Melayu'
'Catal'#224
#268'e'#353'tina'
'Deutsch'
'English - Australia'
'English - Canada'
'English - India'
'English - New Zealand'
'English - South Africa'
'English - United Kingdom'
'English - United States'
'Espa'#241'ol - Argentina'
'Espa'#241'ol - Bolivia'
'Espa'#241'ol - Chile'
'Espa'#241'ol - Colombia'
'Espa'#241'ol - Costa Rica'
'Espa'#241'ol - Ecuador'
'Espa'#241'ol - El Salvador'
'Espa'#241'ol - Espa'#241'a'
'Espa'#241'ol - Estados Unidos'
'Espa'#241'ol - Guatemala'
'Espa'#241'ol - Honduras'
'Espa'#241'ol - M'#233'xico'
'Espa'#241'ol - Nicaragua'
'Espa'#241'ol - Panam'#225
'Espa'#241'ol - Paraguay'
'Espa'#241'ol - Per'#250
'Espa'#241'ol - Puerto Rico'
'Espa'#241'ol - Rep'#250'blica Dominicana'
'Espa'#241'ol - Uruguay'
'Espa'#241'ol - Venezuela'
'Euskara'
'Fran'#231'ais'
'Galego'
'Hebrew'
'Hrvatski'
'IsiZulu'
#205'slenska'
'Italiano - Italia'
'Italiano - Svizzera'
'Magyar'
'Nederlands'
'Norsk bokm'#229'l'
'Polski'
'Portugu'#234's - Brasil'
'Portugu'#234's - Portugal'
'Rom'#226'n'#259
'Sloven'#269'ina'
'Suomi'
'Svenska'
'T'#252'rk'#231'e'
#1073#1098#1083#1075#1072#1088#1089#1082#1080
'P'#1091#1089#1089#1082#1080#1081
#1059#1082#1088#1072#1111#1085#1089#1100#1082#1072' ('#1059#1082#1088#1072#1111#1085#1072')'
#1057#1088#1087#1089#1082#1080
'Korean'
'Mandarin Chinese (Simplified)'
'Hong Kong Chinese (Simplified)'
'Taiwan Chinese (Traditional)'
'Hong Kong Chinese (Traditional)'
'Japanese'
'Lingua lat'#299'na')
end
object CBSecondRegion: TComboBox
Left = 209
Top = 77
Width = 277
Height = 21
Style = csDropDownList
TabOrder = 1
Items.Strings = (
'Afrikaans'
'Bahasa Indonesia'
'Bahasa Melayu'
'Catal'#224
#268'e'#353'tina'
'Deutsch'
'English - Australia'
'English - Canada'
'English - India'
'English - New Zealand'
'English - South Africa'
'English - United Kingdom'
'English - United States'
'Espa'#241'ol - Argentina'
'Espa'#241'ol - Bolivia'
'Espa'#241'ol - Chile'
'Espa'#241'ol - Colombia'
'Espa'#241'ol - Costa Rica'
'Espa'#241'ol - Ecuador'
'Espa'#241'ol - El Salvador'
'Espa'#241'ol - Espa'#241'a'
'Espa'#241'ol - Estados Unidos'
'Espa'#241'ol - Guatemala'
'Espa'#241'ol - Honduras'
'Espa'#241'ol - M'#233'xico'
'Espa'#241'ol - Nicaragua'
'Espa'#241'ol - Panam'#225
'Espa'#241'ol - Paraguay'
'Espa'#241'ol - Per'#250
'Espa'#241'ol - Puerto Rico'
'Espa'#241'ol - Rep'#250'blica Dominicana'
'Espa'#241'ol - Uruguay'
'Espa'#241'ol - Venezuela'
'Euskara'
'Fran'#231'ais'
'Galego'
'Hebrew'
'Hrvatski'
'IsiZulu'
#205'slenska'
'Italiano - Italia'
'Italiano - Svizzera'
'Magyar'
'Nederlands'
'Norsk bokm'#229'l'
'Polski'
'Portugu'#234's - Brasil'
'Portugu'#234's - Portugal'
'Rom'#226'n'#259
'Sloven'#269'ina'
'Suomi'
'Svenska'
'T'#252'rk'#231'e'
#1073#1098#1083#1075#1072#1088#1089#1082#1080
'P'#1091#1089#1089#1082#1080#1081
#1059#1082#1088#1072#1111#1085#1089#1100#1082#1072' ('#1059#1082#1088#1072#1111#1085#1072')'
#1057#1088#1087#1089#1082#1080
'Korean'
'Mandarin Chinese (Simplified)'
'Hong Kong Chinese (Simplified)'
'Taiwan Chinese (Traditional)'
'Hong Kong Chinese (Traditional)'
'Japanese'
'Lingua lat'#299'na')
end
object CBASR: TComboBox
Left = 209
Top = 23
Width = 277
Height = 21
Style = csDropDownList
ItemIndex = 0
TabOrder = 2
Text = 'Google (Online)'
Items.Strings = (
'Google (Online)')
end
object ESpeechAPIKey: TEdit
Left = 209
Top = 104
Width = 280
Height = 21
TabOrder = 3
end
object GBAPINotes: TGroupBox
Left = 16
Top = 126
Width = 577
Height = 91
Caption = ' '#1055#1086#1076#1089#1082#1072#1079#1082#1072' '
TabOrder = 4
object LAPINotes: TLabel
Left = 18
Top = 19
Width = 543
Height = 62
AutoSize = False
Caption =
#1045#1089#1083#1080' '#1042#1099' '#1085#1077' '#1091#1082#1072#1078#1080#1090#1077' '#1089#1086#1073#1089#1090#1074#1077#1085#1085#1099#1081' '#1082#1083#1102#1095' '#1076#1083#1103' '#1076#1086#1089#1090#1091#1087#1072' '#1082' Speech API, '#1090#1086 +
' '#1073#1091#1076#1077#1090' '#1080#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100#1089#1103' '#1087#1091#1073#1083#1080#1095#1085#1099#1081', '#1085#1086' '#1084#1099' '#1085#1077' '#1076#1072#1105#1084' '#1075#1072#1088#1072#1085#1090#1080#1080', '#1095#1090#1086' '#1089' '#1085 +
#1080#1084' '#1089#1080#1089#1090#1077#1084#1072' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1103' '#1073#1091#1076#1077#1090' '#1088#1072#1073#1086#1090#1072#1090#1100'. '#1044#1083#1103' '#1087#1086#1083#1091#1095#1077#1085#1080#1103' '#1089#1086#1073#1089#1090#1074#1077#1085#1085 +
#1086#1075#1086' '#1082#1083#1102#1095#1072' '#1084#1086#1078#1085#1086' '#1074#1086#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100#1089#1103' '#1080#1085#1089#1090#1088#1091#1082#1094#1080#1077#1081' '#1088#1072#1079#1084#1077#1097#1077#1085#1085#1086#1081' '#1085#1072' '#1089#1072#1081#1090#1077 +
' https://cloud.google.com/speech/'
WordWrap = True
end
end
object CBStopRecognitionAfterLockingComputer: TCheckBox
Left = 16
Top = 223
Width = 577
Height = 17
Caption = #1054#1089#1090#1072#1085#1086#1074#1080#1090#1100' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1077' '#1087#1086#1089#1083#1077' '#1073#1083#1086#1082#1080#1088#1086#1074#1082#1080' '#1055#1050
TabOrder = 5
end
object CBStartRecognitionAfterUnlockingComputer: TCheckBox
Left = 16
Top = 246
Width = 569
Height = 17
Caption = #1047#1072#1087#1091#1089#1090#1080#1090#1100' '#1088#1072#1089#1087#1086#1079#1085#1072#1074#1072#1085#1080#1077' '#1087#1086#1089#1083#1077' '#1088#1072#1079#1073#1083#1086#1082#1080#1088#1086#1074#1082#1080' '#1055#1050
TabOrder = 6
end
end
end
object TabSheetConnectSettings: TTabSheet
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
DesignSize = (
614
401)
object GBConnectSettings: TGroupBox
Left = 3
Top = 0
Width = 608
Height = 398
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = ' '#1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1089#1086#1077#1076#1080#1085#1077#1085#1080#1103' '
TabOrder = 0
object LProxyAddress: TLabel
Left = 16
Top = 47
Width = 118
Height = 13
Caption = #1040#1076#1088#1077#1089' '#1087#1088#1086#1082#1089#1080'-'#1089#1077#1088#1074#1077#1088#1072':'
end
object LProxyPort: TLabel
Left = 267
Top = 48
Width = 29
Height = 13
Caption = #1055#1086#1088#1090':'
end
object LProxyUser: TLabel
Left = 16
Top = 98
Width = 76
Height = 13
Caption = #1055#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1100':'
end
object LProxyUserPasswd: TLabel
Left = 16
Top = 125
Width = 41
Height = 13
Caption = #1055#1072#1088#1086#1083#1100':'
end
object CBUseProxy: TCheckBox
Left = 16
Top = 24
Width = 209
Height = 17
Caption = #1057#1086#1077#1076#1080#1085#1103#1090#1100#1089#1103' '#1095#1077#1088#1077#1079' '#1087#1088#1086#1082#1089#1080'-'#1089#1077#1088#1074#1077#1088
TabOrder = 0
OnClick = CBUseProxyClick
end
object EProxyAddress: TEdit
Left = 140
Top = 44
Width = 121
Height = 21
TabOrder = 1
Text = '127.0.0.1'
end
object EProxyPort: TEdit
Left = 302
Top = 44
Width = 73
Height = 21
MaxLength = 5
NumbersOnly = True
TabOrder = 2
Text = '3128'
end
object EProxyUser: TEdit
Left = 98
Top = 95
Width = 163
Height = 21
TabOrder = 4
end
object CBProxyAuth: TCheckBox
Left = 16
Top = 71
Width = 233
Height = 17
Caption = #1055#1088#1086#1082#1089#1080'-'#1089#1077#1088#1074#1077#1088' '#1090#1088#1077#1073#1091#1077#1090' '#1072#1074#1090#1086#1088#1080#1079#1072#1094#1080#1102
TabOrder = 3
OnClick = CBProxyAuthClick
end
object EProxyUserPasswd: TEdit
Left = 98
Top = 122
Width = 163
Height = 21
PasswordChar = '*'
TabOrder = 5
end
end
end
object TabSheetCommand: TTabSheet
Caption = #1050#1086#1084#1072#1085#1076#1099
ImageIndex = 7
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
DesignSize = (
614
401)
object GBCommand: TGroupBox
Left = 3
Top = 32
Width = 608
Height = 366
Anchors = [akLeft, akTop, akRight, akBottom]
Caption = ' '#1057#1087#1080#1089#1086#1082' '#1082#1086#1084#1072#1085#1076' '
TabOrder = 1
DesignSize = (
608
366)
object LCommandKey: TLabel
Left = 8
Top = 22
Width = 88
Height = 13
Caption = #1050#1083#1102#1095#1077#1074#1086#1077' '#1089#1083#1086#1074#1086':'
end
object LCommandExec: TLabel
Left = 182
Top = 22
Width = 48
Height = 13
Caption = #1050#1086#1084#1072#1085#1076#1072':'
end
object LCommandType: TLabel
Left = 431
Top = 22
Width = 70
Height = 13
Caption = #1058#1080#1087' '#1082#1086#1084#1072#1085#1076#1099':'
end
object SBCommandSelect: TSpeedButton
Left = 404
Top = 40
Width = 23
Height = 22
Glyph.Data = {