forked from HeidiSQL/HeidiSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconnections.dfm
More file actions
1197 lines (1196 loc) · 32.1 KB
/
Copy pathconnections.dfm
File metadata and controls
1197 lines (1196 loc) · 32.1 KB
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 connform: Tconnform
Left = 288
Top = 129
BorderIcons = [biSystemMenu, biHelp]
Caption = 'Session manager'
ClientHeight = 506
ClientWidth = 749
Color = clBtnFace
Constraints.MinHeight = 470
Constraints.MinWidth = 640
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -12
Font.Name = 'Tahoma'
Font.Style = []
ShowHint = True
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnResize = FormResize
OnShow = FormShow
DesignSize = (
749
506)
TextHeight = 14
object splitterMain: TSplitter
AlignWithMargins = True
Left = 208
Top = 8
Width = 8
Height = 458
Cursor = crSizeWE
Margins.Left = 0
Margins.Top = 8
Margins.Right = 0
Margins.Bottom = 40
ResizeStyle = rsUpdate
OnMoved = splitterMainMoved
end
object btnSave: TButton
Left = 64
Top = 473
Width = 50
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Save'
ImageIndex = 10
ImageName = 'icons8-save-button-100'
Images = MainForm.VirtualImageListMain
TabOrder = 1
OnClick = btnSaveClick
end
object btnOpen: TButton
Left = 485
Top = 473
Width = 80
Height = 25
Anchors = [akRight, akBottom]
Caption = 'Open'
Default = True
Enabled = False
TabOrder = 3
OnClick = btnOpenClick
end
object btnCancel: TButton
Left = 571
Top = 473
Width = 80
Height = 25
Anchors = [akRight, akBottom]
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 4
end
object btnNew: TButton
Left = 8
Top = 473
Width = 50
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'New'
DropDownMenu = popupNew
ImageIndex = 45
ImageName = 'icons8-add'
Images = MainForm.VirtualImageListMain
Style = bsSplitButton
TabOrder = 0
OnClick = btnNewClick
end
object btnDelete: TButton
Left = 120
Top = 473
Width = 50
Height = 25
Anchors = [akLeft, akBottom]
Caption = 'Delete'
ImageIndex = 46
ImageName = 'icons8-delete-button'
Images = MainForm.VirtualImageListMain
TabOrder = 2
OnClick = btnDeleteClick
end
object PageControlDetails: TPageControl
AlignWithMargins = True
Left = 216
Top = 8
Width = 525
Height = 458
Margins.Left = 0
Margins.Top = 8
Margins.Right = 8
Margins.Bottom = 40
ActivePage = tabStart
Align = alClient
Images = MainForm.VirtualImageListMain
TabOrder = 6
OnChange = PageControlDetailsChange
object tabStart: TTabSheet
Caption = 'Start'
ImageIndex = 112
ImageName = 'icons8-star-filled'
object lblHelp: TLabel
AlignWithMargins = True
Left = 10
Top = 10
Width = 497
Height = 161
Margins.Left = 10
Margins.Top = 10
Margins.Right = 10
Margins.Bottom = 10
Align = alTop
AutoSize = False
Caption = 'lblHelp'
WordWrap = True
end
object btnImportSettings: TButton
Left = 10
Top = 184
Width = 493
Height = 25
Anchors = [akLeft, akTop, akRight]
Caption = 'Import settings ...'
ImageIndex = 101
TabOrder = 0
OnClick = btnImportSettingsClick
end
end
object tabSettings: TTabSheet
Caption = 'Settings'
ImageIndex = 39
ImageName = 'icons8-support'
DesignSize = (
517
429)
object lblPort: TLabel
Left = 3
Top = 199
Width = 27
Height = 14
Caption = 'Port:'
FocusControl = editPort
end
object lblPassword: TLabel
Left = 3
Top = 174
Width = 55
Height = 14
Caption = 'Password:'
FocusControl = editPassword
end
object lblHost: TLabel
Left = 3
Top = 76
Width = 83
Height = 14
Caption = 'Hostname / IP:'
FocusControl = editHost
end
object lblUsername: TLabel
Left = 3
Top = 149
Width = 28
Height = 14
Caption = 'User:'
FocusControl = editUsername
end
object lblNetworkType: TLabel
Left = 3
Top = 12
Width = 80
Height = 14
Caption = 'Network type:'
end
object lblDatabase: TLabel
Left = 3
Top = 247
Width = 59
Height = 14
Caption = 'Databases:'
end
object lblComment: TLabel
Left = 3
Top = 274
Width = 57
Height = 14
Caption = 'Comment:'
end
object lblLibrary: TLabel
Left = 3
Top = 39
Width = 39
Height = 14
Caption = 'Library:'
end
object chkCompressed: TCheckBox
Left = 190
Top = 221
Width = 316
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Compressed client/server protocol'
TabOrder = 9
OnClick = Modification
end
object editPort: TEdit
Left = 190
Top = 196
Width = 57
Height = 22
TabOrder = 7
Text = '0'
OnChange = Modification
end
object updownPort: TUpDown
Left = 247
Top = 196
Width = 16
Height = 22
Associate = editPort
Max = 2147483647
TabOrder = 8
Thousands = False
Wrap = True
end
object editPassword: TEdit
Left = 190
Top = 171
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
PasswordChar = '*'
TabOrder = 6
OnChange = Modification
end
object editUsername: TButtonedEdit
Left = 190
Top = 146
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 75
TabOrder = 5
OnChange = Modification
OnExit = editTrim
OnRightButtonClick = editUsernameRightButtonClick
end
object editHost: TButtonedEdit
Left = 190
Top = 73
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.DropDownMenu = popupHost
RightButton.ImageIndex = 75
RightButton.Visible = True
TabOrder = 2
OnChange = editHostChange
OnDblClick = editHostDblClick
OnExit = editTrim
end
object comboNetType: TComboBoxEx
Left = 190
Top = 8
Width = 316
Height = 23
ItemsEx = <>
Style = csExDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 0
OnChange = comboNetTypeChange
Images = MainForm.VirtualImageListMain
DropDownCount = 12
end
object chkLoginPrompt: TCheckBox
Left = 190
Top = 100
Width = 316
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Prompt for credentials'
TabOrder = 3
OnClick = chkLoginPromptClick
end
object chkWindowsAuth: TCheckBox
Left = 190
Top = 123
Width = 316
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Use Windows authentication'
Enabled = False
TabOrder = 4
OnClick = chkLoginPromptClick
end
object memoComment: TMemo
Left = 190
Top = 271
Width = 316
Height = 153
Anchors = [akLeft, akTop, akRight, akBottom]
ScrollBars = ssVertical
TabOrder = 11
OnChange = Modification
end
object editDatabases: TButtonedEdit
Left = 190
Top = 244
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 75
RightButton.Visible = True
TabOrder = 10
TextHint = 'Separated by semicolon'
OnChange = Modification
OnRightButtonClick = editDatabasesRightButtonClick
end
object comboLibrary: TComboBox
Left = 190
Top = 36
Width = 316
Height = 22
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
OnChange = Modification
end
end
object tabSSHtunnel: TTabSheet
Caption = 'SSH tunnel'
ImageIndex = 147
ImageName = 'icons8-lock'
DesignSize = (
517
429)
object lblSSHLocalPort: TLabel
Left = 3
Top = 202
Width = 58
Height = 14
Caption = 'Local port:'
FocusControl = editSSHlocalport
end
object lblSSHUser: TLabel
Left = 3
Top = 94
Width = 58
Height = 14
Caption = 'Username:'
FocusControl = editSSHUser
end
object lblSSHPassword: TLabel
Left = 3
Top = 121
Width = 55
Height = 14
Caption = 'Password:'
FocusControl = editSSHPassword
end
object lblSSHExe: TLabel
Left = 3
Top = 40
Width = 90
Height = 14
Caption = 'SSH executable:'
end
object lblSSHhost: TLabel
Left = 3
Top = 67
Width = 93
Height = 14
Caption = 'SSH host + port:'
FocusControl = editSSHhost
end
object lblSSHkeyfile: TLabel
Left = 3
Top = 175
Width = 83
Height = 14
Caption = 'Private key file:'
FocusControl = editSSHPrivateKey
end
object lblSSHTimeout: TLabel
Left = 3
Top = 148
Width = 73
Height = 14
Caption = 'SSH timeout:'
end
object editSSHlocalport: TEdit
Left = 190
Top = 199
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
NumbersOnly = True
TabOrder = 9
Text = 'editSSHlocalport'
OnChange = Modification
end
object editSSHUser: TEdit
Left = 190
Top = 91
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
Text = 'editSSHUser'
TextHint = 'Your secure shell username'
OnChange = Modification
OnExit = editTrim
end
object editSSHPassword: TEdit
Left = 190
Top = 118
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
PasswordChar = '*'
TabOrder = 5
Text = 'editSSHPassword'
TextHint = 'Your secure shell password'
OnChange = Modification
end
object editSSHhost: TEdit
Left = 190
Top = 64
Width = 256
Height = 22
Anchors = [akLeft, akTop, akRight]
TabOrder = 2
Text = 'editSSHhost'
OnChange = Modification
OnExit = editTrim
end
object editSSHport: TEdit
Left = 452
Top = 64
Width = 54
Height = 22
Anchors = [akTop, akRight]
NumbersOnly = True
TabOrder = 3
Text = 'editSSHport'
OnChange = Modification
end
object editSSHPrivateKey: TButtonedEdit
Left = 190
Top = 172
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 8
Text = 'editSSHPrivateKey'
TextHint = 'Private key / identify file'
OnChange = Modification
OnDblClick = PickFile
OnExit = editTrim
OnRightButtonClick = PickFile
end
object editSSHTimeout: TEdit
Left = 190
Top = 145
Width = 60
Height = 22
TabOrder = 6
Text = '1'
OnChange = Modification
end
object updownSSHTimeout: TUpDown
Left = 250
Top = 145
Width = 17
Height = 22
Associate = editSSHTimeout
Min = 1
Position = 1
TabOrder = 7
Wrap = True
end
object comboSSHExe: TComboBox
Left = 190
Top = 36
Width = 316
Height = 22
Anchors = [akLeft, akTop, akRight]
TabOrder = 1
Text = 'comboSSHExe'
OnChange = Modification
end
object chkSSHActive: TCheckBox
Left = 190
Top = 13
Width = 320
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Use SSH tunnel'
TabOrder = 0
OnClick = Modification
end
end
object tabAdvanced: TTabSheet
Caption = 'Advanced'
ImageIndex = 98
ImageName = 'icons8-support-orange'
DesignSize = (
517
429)
object lblStartupScript: TLabel
Left = 3
Top = 12
Width = 78
Height = 14
Caption = 'Startup script:'
FocusControl = editStartupScript
end
object lblQueryTimeout: TLabel
Left = 3
Top = 39
Width = 84
Height = 14
Caption = 'Query timeout:'
end
object lblKeepAlive: TLabel
Left = 3
Top = 66
Width = 120
Height = 14
Caption = 'Ping every X seconds:'
end
object lblBackgroundColor: TLabel
Left = 3
Top = 162
Width = 98
Height = 14
Caption = 'Background color:'
end
object lblIgnoreDatabasePattern: TLabel
Left = 3
Top = 190
Width = 126
Height = 14
Caption = 'Hide database pattern:'
end
object lblLogFile: TLabel
Left = 3
Top = 229
Width = 102
Height = 14
Caption = 'Log queries to file:'
end
object chkLocalTimeZone: TCheckBox
Left = 190
Top = 90
Width = 320
Height = 17
Hint =
'Use your client time zone in date/time SQL functions, e.g. NOW()' +
', for MySQL 4.1.3+'
Anchors = [akLeft, akTop, akRight]
Caption = 'Use own client time zone'
TabOrder = 5
OnClick = Modification
end
object chkCleartextPluginEnabled: TCheckBox
Left = 190
Top = 136
Width = 320
Height = 17
Hint = 'Send your password to the server in cleartext, for MySQL 5.5.47+'
Anchors = [akLeft, akTop, akRight]
Caption = 'Enable cleartext authentication'
TabOrder = 7
OnClick = Modification
end
object editStartupScript: TButtonedEdit
Left = 190
Top = 9
Width = 320
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 0
OnChange = Modification
OnDblClick = PickFile
OnExit = editTrim
OnRightButtonClick = PickFile
end
object chkFullTableStatus: TCheckBox
Left = 190
Top = 113
Width = 320
Height = 17
Hint =
'Disable to speed up internal queries on databases with many tabl' +
'es'
Anchors = [akLeft, akTop, akRight]
Caption = 'Get full table status'
TabOrder = 6
OnClick = Modification
end
object editQueryTimeout: TEdit
Left = 190
Top = 36
Width = 90
Height = 22
NumbersOnly = True
TabOrder = 1
Text = '0'
OnChange = Modification
end
object updownQueryTimeout: TUpDown
Left = 280
Top = 36
Width = 16
Height = 22
Associate = editQueryTimeout
Max = 2147483646
TabOrder = 2
Wrap = True
end
object editKeepAlive: TEdit
Left = 190
Top = 63
Width = 90
Height = 22
TabOrder = 3
Text = '0'
OnChange = Modification
end
object updownKeepAlive: TUpDown
Left = 280
Top = 63
Width = 16
Height = 22
Associate = editKeepAlive
Max = 86400
TabOrder = 4
end
object ColorBoxBackgroundColor: TColorBox
Left = 190
Top = 159
Width = 320
Height = 22
NoneColorColor = clNone
Selected = clNone
Style = [cbStandardColors, cbExtendedColors, cbSystemColors, cbIncludeNone, cbIncludeDefault, cbCustomColor, cbPrettyNames, cbCustomColors]
Anchors = [akLeft, akTop, akRight]
DropDownCount = 16
TabOrder = 8
OnChange = Modification
OnGetColors = ColorBoxBackgroundColorGetColors
end
object editIgnoreDatabasePattern: TEdit
Left = 190
Top = 187
Width = 320
Height = 22
Anchors = [akLeft, akTop, akRight]
TabOrder = 9
TextHint = 'Regular expression'
OnChange = Modification
end
object chkLogFileDdl: TCheckBox
Left = 190
Top = 253
Width = 320
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'DDL queries (CREATE, ALTER, ...)'
TabOrder = 11
OnClick = Modification
end
object editLogFilePath: TButtonedEdit
Left = 190
Top = 226
Width = 320
Height = 22
Anchors = [akLeft, akTop, akRight]
Enabled = False
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 10
OnChange = Modification
OnRightButtonClick = PickFile
end
object chkLogFileDml: TCheckBox
Left = 190
Top = 276
Width = 320
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'DML queries (INSERT, UPDATE, ...)'
TabOrder = 12
OnClick = Modification
end
end
object tabSSL: TTabSheet
Caption = 'SSL'
ImageIndex = 25
DesignSize = (
517
429)
object lblSSLPrivateKey: TLabel
Left = 3
Top = 39
Width = 88
Height = 14
Caption = 'SSL private key:'
FocusControl = editSSLPrivateKey
end
object lblSSLCACertificate: TLabel
Left = 3
Top = 66
Width = 101
Height = 14
Caption = 'SSL CA certificate:'
FocusControl = editSSLCACertificate
end
object lblSSLCertificate: TLabel
Left = 3
Top = 93
Width = 82
Height = 14
Caption = 'SSL certificate:'
FocusControl = editSSLCertificate
end
object lblSSLcipher: TLabel
Left = 3
Top = 120
Width = 61
Height = 14
Caption = 'SSL cipher:'
end
object lblSSLVerification: TLabel
Left = 3
Top = 148
Width = 131
Height = 14
Caption = 'Certificate verification:'
end
object chkWantSSL: TCheckBox
Left = 190
Top = 13
Width = 320
Height = 17
Anchors = [akLeft, akTop, akRight]
Caption = 'Use SSL'
TabOrder = 0
OnClick = Modification
end
object editSSLcipher: TEdit
Left = 190
Top = 117
Width = 324
Height = 22
Anchors = [akLeft, akTop, akRight]
TabOrder = 4
TextHint = 'List of permissible ciphers to use for SSL encryption'
OnChange = Modification
OnExit = editTrim
end
object editSSLCertificate: TButtonedEdit
Left = 190
Top = 90
Width = 324
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 3
TextHint = 'Path to certificate file'
OnChange = Modification
OnDblClick = PickFile
OnExit = editTrim
OnRightButtonClick = PickFile
end
object editSSLCACertificate: TButtonedEdit
Left = 190
Top = 63
Width = 324
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 2
TextHint = 'Path to certificate authority file'
OnChange = Modification
OnDblClick = PickFile
OnExit = editTrim
OnRightButtonClick = PickFile
end
object editSSLPrivateKey: TButtonedEdit
Left = 190
Top = 36
Width = 324
Height = 22
Anchors = [akLeft, akTop, akRight]
Images = MainForm.VirtualImageListMain
RightButton.ImageIndex = 51
RightButton.Visible = True
TabOrder = 1
TextHint = 'Path to key file'
OnChange = Modification
OnDblClick = PickFile
OnExit = editTrim
OnRightButtonClick = PickFile
end
object comboSSLVerification: TComboBox
Left = 190
Top = 145
Width = 324
Height = 22
Style = csDropDownList
Anchors = [akLeft, akTop, akRight]
TabOrder = 5
OnChange = Modification
Items.Strings = (
'No verification (insecure)'
'Verify CA (insecure)'
'Verify CA and host name identity (may fail with self-signed cert' +
's and wildcard cn)')
end
end
object tabStatistics: TTabSheet
Caption = 'Statistics'
ImageIndex = 145
ImageName = 'icons8-bar-chart'
object lblLastConnectLeft: TLabel
Left = 3
Top = 31
Width = 75
Height = 14
Caption = 'Last connect:'
end
object lblCounterLeft: TLabel
Left = 3
Top = 50
Width = 114
Height = 14
Caption = 'Successful connects:'
end
object lblCreatedLeft: TLabel
Left = 3
Top = 12
Width = 47
Height = 14
Caption = 'Created:'
end
object lblCreatedRight: TLabel
Left = 190
Top = 12
Width = 6
Height = 14
Caption = '?'
end
object lblCounterRight1: TLabel
Left = 190
Top = 50
Width = 6
Height = 14
Caption = '?'
end
object lblLastConnectRight: TLabel
Left = 190
Top = 31
Width = 6
Height = 14
Caption = '?'
end
object lblCounterRight2: TLabel
Left = 190
Top = 69
Width = 6
Height = 14
Caption = '?'
end
object lblCounterLeft2: TLabel
Left = 3
Top = 69
Width = 127
Height = 14
Caption = 'Unsuccessful connects:'
end
end
end
object btnMore: TButton
Left = 657
Top = 473
Width = 80
Height = 25
Anchors = [akRight, akBottom]
Caption = 'More'
DropDownMenu = popupMore
Style = bsSplitButton
TabOrder = 5
OnClick = btnMoreClick
end
object pnlLeft: TPanel
AlignWithMargins = True
Left = 8
Top = 8
Width = 200
Height = 458
Margins.Left = 8
Margins.Top = 8
Margins.Right = 0
Margins.Bottom = 40
Align = alLeft
BevelOuter = bvNone
Constraints.MinWidth = 200
TabOrder = 7
object ListSessions: TVirtualStringTree
Left = 0
Top = 27
Width = 200
Height = 431
Align = alClient
DragMode = dmAutomatic
Header.AutoSizeIndex = -1
Header.Height = 18
Header.Options = [hoAutoResize, hoColumnResize, hoDblClickResize, hoDrag, hoHotTrack, hoShowSortGlyphs, hoVisible, hoDisableAnimatedResize, hoAutoResizeInclCaption]
Header.PopupMenu = MainForm.popupListHeader
Header.SortColumn = 0
HintMode = hmTooltip
Images = MainForm.VirtualImageListMain
IncrementalSearch = isAll
PopupMenu = popupSessions
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScrollOnExpand, toAutoSort, toAutoTristateTracking, toAutoChangeScale]
TreeOptions.MiscOptions = [toAcceptOLEDrop, toEditable, toFullRepaintOnResize, toInitOnSave, toToggleOnDblClick, toWheelPanning, toFullRowDrag]
TreeOptions.PaintOptions = [toHotTrack, toShowButtons, toShowDropmark, toShowRoot, toShowTreeLines, toThemeAware, toUseBlendedImages, toUseExplorerTheme, toHideTreeLinesIfThemed]
TreeOptions.SelectionOptions = [toFullRowSelect, toRightClickSelect]
OnBeforeCellPaint = ListSessionsBeforeCellPaint
OnCreateEditor = ListSessionsCreateEditor
OnDragOver = ListSessionsDragOver
OnDragDrop = ListSessionsDragDrop
OnFocusChanged = ListSessionsFocusChanged
OnFocusChanging = ListSessionsFocusChanging
OnGetText = ListSessionsGetText
OnGetImageIndex = ListSessionsGetImageIndex
OnGetNodeDataSize = ListSessionsGetNodeDataSize
OnNewText = ListSessionsNewText
OnNodeDblClick = ListSessionsNodeDblClick
OnStructureChange = ListSessionsStructureChange
Touch.InteractiveGestures = [igPan, igPressAndTap]
Touch.InteractiveGestureOptions = [igoPanSingleFingerHorizontal, igoPanSingleFingerVertical, igoPanInertia, igoPanGutter, igoParentPassthrough]
Columns = <
item
Position = 0
Text = 'Session name'
Width = 163
end
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coVisible, coAllowFocus]
Position = 1
Text = 'Host'
end
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coAllowFocus]
Position = 2
Text = 'User'
end
item
Options = [coAllowClick, coDraggable, coEnabled, coParentBidiMode, coParentColor, coResizable, coShowDropMark, coAllowFocus]
Position = 3