File: MyxConnectionDialog.pas

package info (click to toggle)
mysql-query-browser 1.2.5beta-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 63,792 kB
  • ctags: 46,485
  • sloc: pascal: 249,299; ansic: 80,111; cpp: 72,467; sh: 25,271; objc: 20,015; yacc: 10,755; java: 9,917; xml: 4,580; php: 2,806; python: 1,566; sql: 1,563; makefile: 1,452; perl: 3
file content (1474 lines) | stat: -rw-r--r-- 42,697 bytes parent folder | download | duplicates (4)
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
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
unit MyxConnectionDialog;

interface

uses
  GnuGetText, Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, Buttons, TntButtons, StdCtrls, TntStdCtrls, VirtualTrees,
  ExtCtrls, TntExtCtrls, ComCtrls, PNGImage, PNGTools,
  AuxFuncs, TntForms, TntClasses, Grt, TntSysUtils,
  Menus, TntMenus, MyxBaseForm, myx_grt_public_interface;

{$include Consts.ini}

const ParamLineHeight = 32;

type
  TDriverFilter = function (PDriver: Pointer): Boolean of object;

  TMyxConnectionDialogForm = class(TMyxBaseForm)
    HeaderPnl: TTntPanel;
    HeaderImg: TTntImage;
    ParamsMainPnl: TTntPanel;
    AdvParamsMainPnl: TTntPanel;
    ConnectGBox: TTntGroupBox;
    BottomPnl: TTntPanel;
    OKBtn: TTntButton;
    CancelBtn: TTntButton;
    ClearFieldsBtn: TTntButton;
    AdvancedBtn: TTntBitBtn;
    ConnTypeMainPnl: TTntPanel;
    ConnTypeGBox: TTntGroupBox;
    ConnTypePnl: TTntPanel;
    DriverLbl: TTntLabel;
    DriverComboBox: TTntComboBox;
    RdbmsComboBox: TTntComboBox;
    RdbmsLbl: TTntLabel;
    StoredConnPnl: TTntPanel;
    ConnectionLbl: TTntLabel;
    StoredConnComboBox: TTntComboBox;
    StoredConnAddBtn: TTntSpeedButton;
    StoredConnDelBtn: TTntSpeedButton;
    ParamsPnl: TTntPanel;
    ConnectToInstanceAni: TAnimate;
    DriverNotInstalledPnl: TTntPanel;
    TntLabel2: TTntLabel;
    TntLabel9: TTntLabel;
    LocateDriverBtn: TTntButton;
    DownloadDriverPnl: TTntPanel;
    TntLabel12: TTntLabel;
    DownloadDriverBtn: TTntButton;
    LookupMenu: TTntPopupMenu;
    TntGroupBox1: TTntGroupBox;
    AdvParamPnl: TTntPanel;
    procedure FormCreate(Sender: TObject);
    procedure FormDestroy(Sender: TObject);
    procedure DriverComboBoxCloseUp(Sender: TObject);
    procedure RdbmsComboBoxCloseUp(Sender: TObject);
    procedure StoredConnComboBoxCloseUp(Sender: TObject);
    procedure AdvancedBtnClick(Sender: TObject);
    procedure OKBtnClick(Sender: TObject);
    procedure CancelBtnClick(Sender: TObject);
    procedure StoredConnAddBtnClick(Sender: TObject);
    procedure ClearFieldsBtnClick(Sender: TObject);
    procedure StoredConnDelBtnClick(Sender: TObject);
    procedure LocateDriverBtnClick(Sender: TObject);
    procedure DownloadDriverBtnClick(Sender: TObject);
  private
    { Private declarations }
    FParamMappingList: TList;
    FSettingConnectionValues,
      FDisplayRdbmsSelection,
      FDisplayDescriptions,
      FDisplaySchemaSelection,
      FDisplayOnlyJdbcDrivers,
      FSchemaSelectionRequired: Boolean;

    FConnInfoPath,
      FConnTargetPath: WideString;

    FOkBtn: TTntButton;
    FFirstParamControl: TWinControl;

    FDriverFilter: TDriverFilter;

    FRdbmsDescLbl,
      FDriverDescLbl: TTntLabel;

    procedure FreeChildControls(Control: TWinControl);
    procedure BuildDriverControls(
      Target: TWinControl; PDriver: Pointer;
      DoAdvancedParams: Boolean = False);

    procedure DriverParamValueChanged(Sender: TObject);
    procedure ParamLookupFuncOutput(Text: WideString);
    procedure ParamLookupBtnClick(Sender: TObject);
    procedure ParamLookupMIClick(Sender: TObject);
    procedure BrowseDirBtnClick(Sender: TObject);
    procedure BrowseFileBtnClick(Sender: TObject);

    function BuildDriverComboBoxItems(PRdbms: Pointer): Integer;

    procedure FillDropdownWithStoredConnections(
      StoredConnComboBox: TTntComboBox; PDriver: Pointer);

    procedure SetSelectedRdbms(SelectedRdbms: WideString);
    function GetSelectedRdbms: WideString;

    procedure SetDisplayRdbmsSelection(DisplayRdbmsSelection: Boolean);

    function GetParamValue(const Name: WideString): WideString;
    procedure SetParamValue(const Name: WideString; Value: WideString);

    procedure SetDisplayDescriptions(DisplayDescriptions: Boolean);

    procedure ParamLookupBtnClickCallback(Task: IGrtGenericTask);
  public
    { Public declarations }
    property ConnInfoPath: WideString read FConnInfoPath write FConnInfoPath;
    property ConnTargetPath: WideString read FConnTargetPath write FConnTargetPath;

    property DisplayRdbmsSelection: Boolean read FDisplayRdbmsSelection write SetDisplayRdbmsSelection;
    property DisplayDescriptions: Boolean read FDisplayDescriptions write SetDisplayDescriptions;
    property DisplaySchemaSelection: Boolean read FDisplaySchemaSelection write FDisplaySchemaSelection;
    property SchemaSelectionRequired: Boolean read FSchemaSelectionRequired write FSchemaSelectionRequired;
    property DisplayOnlyJdbcDrivers: Boolean read FDisplayOnlyJdbcDrivers write FDisplayOnlyJdbcDrivers;

    property DriverFilter: TDriverFilter read FDriverFilter write FDriverFilter;
    property OkButton: TTntButton read FOkBtn write FOkBtn;
    property SelectedRdbms: WideString read GetSelectedRdbms write SetSelectedRdbms;

    property ParamValue[const Name: WideString]: WideString read GetParamValue write SetParamValue;

    procedure RefreshConnInfo;
    function WriteConnectionToTarget: Pointer;

    procedure SetConnection(PConnection: Pointer);   
  end;

  PParamMapping = ^TParamMapping;
  TParamMapping = record
    PParam: Pointer;
    ParamControl: TControl;
    Lbl: TTntLabel;
    BrowseBtn: TTntButton;
  end;

implementation

{$R *.dfm}

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.FormCreate(Sender: TObject);

begin
  InitForm(self);

  //Load resources
  LoadPNGImageFromResource('connection_dialog_header', HeaderImg, True);
  ConnectToInstanceAni.ResName := 'progress_indicator';

  Caption := Application.Title + ' '+
    product_version + ' ' +
    product_build_level;

  FParamMappingList := TList.Create;
  FSettingConnectionValues := False;
  FDisplayRdbmsSelection := False;
  FDisplayDescriptions := False;
  FDisplaySchemaSelection := True;
  FDisplayOnlyJdbcDrivers := False;
  FSchemaSelectionRequired := False;

  FDriverFilter := nil;

  FOkBtn := OKBtn;
  FFirstParamControl := nil;

  FRdbmsDescLbl := nil;
  FDriverDescLbl := nil;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.FormDestroy(Sender: TObject);

var
  I: Integer;

begin
  for I := 0 to FParamMappingList.Count - 1 do
    dispose(FParamMappingList[I]);
  FParamMappingList.Free;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.RefreshConnInfo;

var
  I: integer;
  PRdbmsList,
    PRdbms: Pointer;

begin
  PRdbmsList := Grt.Global[FConnInfoPath + '/rdbms'];

  // Clear controls
  RDBMSComboBox.Clear;
  DriverComboBox.Items.Clear;
  DriverComboBoxCloseUp(self);

  //Set RDBMSCBox Items
  for I := 0 to Grt.ListCount(PRdbmsList) - 1 do
  begin
    PRdbms := Grt.ListItem[PRdbmsList, I];

    if (BuildDriverComboBoxItems(PRdbms) > 0) then
      RDBMSComboBox.AddItem(
        Grt.DictString[PRdbms, 'caption'],
        PRdbms);
  end;

  RDBMSComboBoxCloseUp(self);
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.FreeChildControls(Control: TWinControl);

begin
  while (Control.ControlCount > 0) do
    Control.Controls[0].Free;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.BuildDriverControls(
  Target: TWinControl; PDriver: Pointer; DoAdvancedParams: Boolean);

var
  I: Integer;
  PParams,
    PParam: Pointer;
  Caption,
    Desc,
    ParamType: WideString;
  OffsetLeft,
    CurrentRow,
    MaxRow,
    CurrentTop: Integer;
  CurrentLeft: Array [1 .. 30] of Integer;
  RowDescription: TTntStringList;
  ParamMapping: PParamMapping;
  DescLbl: TTntLabel;

begin
  RowDescription := TTntStringList.Create;
  PParams := Grt.DictItem[PDriver, 'parameters'];

  OffsetLeft := 116;
  MaxRow := 0;

  for I := 1 to 30 do
  begin
    CurrentLeft[I] := 0;
    RowDescription.Add('');
  end;

  for I := 0 to Grt.ListCount(PParams) - 1 do
  begin
    PParam := Grt.ListItem[PParams, I];

    if (Grt.DictInt[PParam, 'layoutAdvanced'] <>
      Ord(DoAdvancedParams)) then
      continue;

    // if the "schema" should not be displayed
    if (Not(FDisplaySchemaSelection)) and
      (WideSameText(Grt.DictString[PParam, 'name'], 'schema')) then
      continue;

    CurrentRow := Grt.DictInt[PParam, 'layoutRow'];
    if (CurrentRow = -1) then
      CurrentRow := MaxRow + 1;
    MaxRow := CurrentRow;

    CurrentTop := 1 + (CurrentRow - 1) * ParamLineHeight;

    Caption := Grt.DictString[PParam, 'caption'];
    Desc := Grt.DictString[PParam, 'description'];
    ParamType := Grt.DictString[PParam, 'paramType'];

    // Create mapping
    New(ParamMapping);
    FParamMappingList.Add(ParamMapping);
    ParamMapping.PParam := PParam;


    if (Not(WideSameText(ParamType, 'boolean'))) and
      (Not(WideSameText(ParamType, 'tristate'))) then
    begin
      // Create Edit with Caption
      if (Caption <> '') then
      begin
        ParamMapping.Lbl := TTntLabel.Create(self);

        //CaptionLbl.Name := 'ParamLbl' + IntToStr(I);
        ParamMapping.Lbl.Caption := _(Caption);

        // if this is the first param on that row,
        // move the CaptionLbl to the left
        // so the Param edits are aligned left
        if (CurrentLeft[CurrentRow] = 0) then
          ParamMapping.Lbl.Left := OffsetLeft + CurrentLeft[CurrentRow] -
            ParamMapping.Lbl.Width - 10
        else
        begin
          ParamMapping.Lbl.Left := OffsetLeft + CurrentLeft[CurrentRow];
          CurrentLeft[CurrentRow] := CurrentLeft[CurrentRow] +
            ParamMapping.Lbl.Width + 10;
        end;

        ParamMapping.Lbl.Top := CurrentTop + 4;

        ParamMapping.Lbl.Parent := Target;
      end;


      // Create Param Edit
      ParamMapping.ParamControl := TTntEdit.Create(self);

      ParamMapping.ParamControl.Left :=
        OffsetLeft + CurrentLeft[CurrentRow];

      TTntEdit(ParamMapping.ParamControl).OnChange :=
        DriverParamValueChanged;

      TTntEdit(ParamMapping.ParamControl).Text :=
        Grt.DictString[PParam, 'defaultValue'];

      // Set password char for password fields
      if (WideSameText(ParamType, 'password')) then
        TTntEdit(ParamMapping.ParamControl).PasswordChar := '*';
    end
    else
    begin
      // Create Checkbox
      ParamMapping.ParamControl := TTntCheckbox.Create(self);

      CurrentLeft[CurrentRow] := CurrentLeft[CurrentRow] - 100;

      ParamMapping.ParamControl.Left :=
        OffsetLeft + CurrentLeft[CurrentRow];

      TTntCheckbox(ParamMapping.ParamControl).OnClick :=
        DriverParamValueChanged;

      TTntCheckbox(ParamMapping.ParamControl).Checked :=
        (Grt.DictString[PParam, 'defaultValue'] = '1');

      TTntCheckbox(ParamMapping.ParamControl).Caption := _(Caption);
    end;

    if (FParamMappingList.Count = 1) then
      FFirstParamControl := TWinControl(ParamMapping.ParamControl);

    // Set common options
    //ParamControl.Name := 'Param' + IntToStr(I);
    ParamMapping.ParamControl.Top := CurrentTop;

    ParamMapping.ParamControl.Width :=
      Grt.DictInt[PParam, 'layoutWidth'];

    if (Desc <> '') then
    begin
      ParamMapping.ParamControl.Hint := Desc;
      ParamMapping.ParamControl.ShowHint := True;
    end;

    // move CurrentLeft
    CurrentLeft[CurrentRow] := CurrentLeft[CurrentRow] +
      ParamMapping.ParamControl.Width + 20;

    ParamMapping.ParamControl.Parent := Target;

    // Add lookup button
    if (Grt.DictString[PParam, 'lookupValueMethod'] <> '') or
      WideSameText(ParamType, 'file') or
      WideSameText(ParamType, 'dir') then
    begin
      ParamMapping.BrowseBtn := TTntButton.Create(self);
      //BrowseBtn.Name := 'LookupBtn' + IntToStr(I);
      ParamMapping.BrowseBtn.Tag := FParamMappingList.Count - 1;

      ParamMapping.BrowseBtn.Caption := _('...');
      ParamMapping.BrowseBtn.Width := 27;
      ParamMapping.BrowseBtn.Height := 23;
      ParamMapping.BrowseBtn.Left :=
        ParamMapping.ParamControl.Left +
        ParamMapping.ParamControl.Width -
        ParamMapping.BrowseBtn.Width;
      ParamMapping.BrowseBtn.Top := CurrentTop;

      ParamMapping.ParamControl.Width :=
        ParamMapping.ParamControl.Width -
        ParamMapping.BrowseBtn.Width - 6;

      // Add lookup action
      if (Grt.DictString[PParam, 'lookupValueMethod'] <> '') then
        ParamMapping.BrowseBtn.OnClick := ParamLookupBtnClick
      else
        if (WideSameText(ParamType, 'file')) then
          ParamMapping.BrowseBtn.OnClick := BrowseFileBtnClick
        else
          if (WideSameText(ParamType, 'dir')) then
            ParamMapping.BrowseBtn.OnClick := BrowseDirBtnClick;

      ParamMapping.BrowseBtn.Parent := Target;
    end;

    // build parameter description
    if (Desc <> '') and (CurrentRow - 1 >= 0) and
      (CurrentRow - 1 < RowDescription.Count) then
    begin
      if (RowDescription[CurrentRow - 1] = '') then
        RowDescription[CurrentRow - 1] := _(Desc)
      else
        RowDescription[CurrentRow - 1] :=
          RowDescription[CurrentRow - 1] + ' - ' + _(Desc);
    end;
  end;

  // Add descriptions for all lines
  if (FDisplayDescriptions) then
    for I := 0 to 29 do
    begin
      CurrentTop := I * ParamLineHeight;

      if (RowDescription[I] <> '') then
      begin
        DescLbl := TTntLabel.Create(self);
        //CaptionLbl.Name := 'ParamDescLbl' + IntToStr(I + 1);
        DescLbl.Caption := RowDescription[I];

        DescLbl.Left := OffsetLeft + CurrentLeft[I + 1];

        DescLbl.Top := CurrentTop + 4;

        DescLbl.Parent := Target;
      end;
    end;

  RowDescription.Free;

  Target.Height := MaxRow * ParamLineHeight;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.DriverParamValueChanged(Sender: TObject);

var
  I: Integer;
  RequiredParamsSet: Boolean;
  ParamMapping: PParamMapping;

begin
  if (Not(FSettingConnectionValues)) then
  begin
    // Check if all required fields are set
    RequiredParamsSet := True;
    for I := 0 to FParamMappingList.Count - 1 do
    begin
      ParamMapping := FParamMappingList[I];

      if (Grt.DictInt[ParamMapping.PParam, 'required'] = 1) or
        (FSchemaSelectionRequired and
          (WideSameText(Grt.DictString[ParamMapping.PParam, 'name'], 'schema'))
        ) then
      begin
        if (ParamMapping.ParamControl is TTntEdit) then
          if (TTntEdit(ParamMapping.ParamControl).Text = '') then
          begin
            RequiredParamsSet := False;
            break;
          end;
      end;
    end;

    FOkBtn.Enabled := RequiredParamsSet;

    StoredConnAddBtn.Enabled := True;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.ParamLookupFuncOutput(Text: WideString);

begin
  //
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.ParamLookupBtnClickCallback(Task: IGrtGenericTask);

var
  MenuItem: TTntMenuItem;
  I: Integer;
  ScreenPoint: TPoint;
  S: WideString;

begin
  try
    if (Length(Task.ErrorString) > 0) then
    begin
      MenuItem := TTntMenuItem.Create(LookupMenu);
        MenuItem.Caption := _('Fetching of list failed.');
      MenuItem.Tag := -1;
      LookupMenu.Items.Add(MenuItem);

      S := Task.ErrorString;

      if (Pos(#13#10, S) > 0) then
        S := Copy(S, 1, Pos(#13#10, S) - 1);

      MenuItem := TTntMenuItem.Create(LookupMenu);
        MenuItem.Caption := S;
      MenuItem.Tag := -1;
      LookupMenu.Items.Add(MenuItem);
    end
    else
    begin
      for I := 0 to Grt.ListCount(IGrtTask(Task).Result) - 1 do
      begin
        MenuItem := TTntMenuItem.Create(LookupMenu);
        MenuItem.Caption := Grt.ListString[IGrtTask(Task).Result, I];

        MenuItem.OnClick := ParamLookupMIClick;
        MenuItem.Tag := Task.Tag;

        LookupMenu.Items.Add(MenuItem);
      end;

      Grt.ValueRelease(IGrtTask(Task).Result);
    end;

    if (Assigned(Task.DataObj)) then
    begin
      ScreenPoint := TControl(Task.DataObj).ClientToScreen(Point(0, 0));

      LookupMenu.Popup(ScreenPoint.X, ScreenPoint.Y + TControl(Task.DataObj).Height);
    end;
  finally
    Screen.Cursor := crDefault;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.ParamLookupBtnClick(Sender: TObject);

var
  //Res: Pointer;
  MenuItem: TTntMenuItem;
  ParamMapping: PParamMapping;
  S: WideString;
  Task: IGrtTask;
  Module: WideString;
  Method: WideString;

begin
  if (Sender is TControl) and
    (TControl(Sender).Tag < FParamMappingList.Count) then
  begin
    ParamMapping := FParamMappingList[TControl(Sender).Tag];

    LookupMenu.Items.Clear;

    // Store current settings
    WriteConnectionToTarget;

    try
      // Call LookupValueMethod
      Module := Grt.DictString[ParamMapping.PParam, 'lookupValueModule'];
      Method := Grt.DictString[ParamMapping.PParam, 'lookupValueMethod'];
      Task := Grt.CreateStandardTask('Fetching parameter list', Module, Method, [Grt.GetGlobalAsParam(FConnTargetPath)],
        ParamLookupFuncOutput, nil, False, False, -1, nil,
        nil, ParamLookupBtnClickCallback, TControl(Sender).Tag, Sender);
      Grt.AddTask(Task);

      Screen.Cursor := crHourglass;
    except
      on x: Exception do
      begin
        MenuItem := TTntMenuItem.Create(LookupMenu);
          MenuItem.Caption := _('Fetching of list failed.');
        MenuItem.Tag := -1;
        LookupMenu.Items.Add(MenuItem);

        S := x.Message;

        if (Pos(#13#10, S) > 0) then
          S := Copy(S, 1, Pos(#13#10, S) - 1);

        MenuItem := TTntMenuItem.Create(LookupMenu);
          MenuItem.Caption := S;
        MenuItem.Tag := -1;
        LookupMenu.Items.Add(MenuItem);
      end;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.ParamLookupMIClick(Sender: TObject);

var
  ParamMapping: PParamMapping;

begin
  if (Sender is TTntMenuItem) and
    (TTntMenuItem(Sender).Tag > -1) then
  begin
    ParamMapping := FParamMappingList[TTntMenuItem(Sender).Tag];

    if (ParamMapping.ParamControl is TTntEdit) then
      TTntEdit(ParamMapping.ParamControl).Text :=
        Tnt_WideStringReplace(TTntMenuItem(Sender).Caption, '&', '',
          [rfReplaceAll]);
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.BrowseFileBtnClick(
  Sender: TObject);

var
  OpenDlg: TOpenDialog;
  ParamMapping: PParamMapping;
  PParamTypeDetails: Pointer;
  FileType,
    FileExtension: WideString;

begin
  if (Sender is TControl) and
    (TControl(Sender).Tag < FParamMappingList.Count) then
  begin
    ParamMapping := FParamMappingList[TControl(Sender).Tag];

    PParamTypeDetails :=
      Grt.DictItem[ParamMapping.PParam, 'paramTypeDetails'];

    OpenDlg := TOpenDialog.Create(self);
    try
      if (PParamTypeDetails <> nil) then
      begin
        OpenDlg.Title :=
          Grt.DictString[PParamTypeDetails, 'fileOpenDialogCaption'];

        FileType :=
          Grt.DictString[PParamTypeDetails, 'fileType'];

        FileExtension :=
          Grt.DictString[PParamTypeDetails, 'fileExtension'];
      end;

      if (OpenDlg.Title = '') then
        OpenDlg.Title := _('Open File ...');

      if (FileType <> '') and (FileExtension <> '') then
        OpenDlg.Filter := FileType +
          ' (*.' + FileExtension + ')|*.' + FileExtension + '|' +
          _('All files') + ' (*.*)|*.*'
      else
        OpenDlg.Filter := _('All files') + ' (*.*)|*.*';

      if (OpenDlg.Execute) then
      begin
        if (ParamMapping.ParamControl is TTntEdit) then
          TTntEdit(ParamMapping.ParamControl).Text := OpenDlg.FileName;
      end;
    finally
      OpenDlg.Free;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.BrowseDirBtnClick(Sender: TObject);

begin
  //
end;

// -----------------------------------------------------------------------------

function TMyxConnectionDialogForm.BuildDriverComboBoxItems(PRdbms: Pointer): Integer;

var
  I: integer;
  PDrivers,
    PDriver: Pointer;

begin
  PDrivers := Grt.DictItem[PRdbms, 'drivers'];

  DriverComboBox.Clear;

  for I := 0 to Grt.ListCount(PDrivers) - 1 do
  begin
    PDriver := Grt.ListItem[PDrivers, I];

    if (FDisplayOnlyJdbcDrivers) and
      (Grt.DictStructName[PDriver] <> 'db.mgmt.JdbcDriver') then
      continue;

    if (Assigned(FDriverFilter)) then
      if (DriverFilter(PDriver)) then
        continue;

    // place default driver on top of dropdown
    if (Grt.DictRef[PRdbms, 'defaultDriver'] = PDriver) then
      DriverComboBox.Items.InsertObject(
        0,
        Grt.DictString[PDriver, 'caption'],
        PDriver)
    else
      DriverComboBox.AddItem(
        Grt.DictString[PDriver, 'caption'],
        PDriver);
  end;

  DriverComboBox.Enabled := (DriverComboBox.Items.Count > 1);
  DriverLbl.Enabled := (DriverComboBox.Items.Count > 1);
  if (FDriverDescLbl <> nil) then
    FDriverDescLbl.Enabled := DriverComboBox.Enabled;

  Result := DriverComboBox.Items.Count;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.DriverComboBoxCloseUp(Sender: TObject);

var
  //PRdbms: Pointer;
  PDriver: Pointer;
  I: Integer;

begin
  // Clear mapping
  for I := 0 to FParamMappingList.Count - 1 do
    dispose(FParamMappingList[I]);
  FParamMappingList.Clear;
  FFirstParamControl := nil;

  FreeChildControls(ParamsPnl);
  FreeChildControls(AdvParamPnl);


  if (DriverComboBox.ItemIndex > -1) then
  begin
    //PRdbms := RdbmsComboBox.Items.Objects[RdbmsComboBox.ItemIndex];
    PDriver :=
      DriverComboBox.Items.Objects[DriverComboBox.ItemIndex];

    if (Grt.DictInt[PDriver, 'isInstalled'] = 1) then
    begin
      DriverNotInstalledPnl.Visible := False;

      StoredConnComboBox.ItemIndex := -1;
      StoredConnDelBtn.Enabled := False;

      // Build params
      BuildDriverControls(ParamsPnl, PDriver);
      ParamsMainPnl.Height := StoredConnPnl.Height +
        ParamsPnl.Height + 38;

      // Build advanced params
      BuildDriverControls(AdvParamPnl, PDriver, True);
      AdvParamsMainPnl.Height := AdvParamPnl.Height + 38;

      // Get stored connections
      FillDropdownWithStoredConnections(StoredConnComboBox, PDriver);

      {JdbcDriverNameLbl.Caption := _(myx_grt_dict_item_get_as_string(
        PRdbms, 'caption'));
      JdbcDriverDescLbl.Caption := _(myx_grt_dict_item_get_as_string(
        PJdbcDriver, 'description'));}

      StoredConnAddBtn.Enabled := False;

      StoredConnPnl.Visible := True;
    end
    else
    begin
      DownloadDriverPnl.Visible :=
        (Grt.DictString[PDriver, 'downloadUrl'] <> '');

      DriverNotInstalledPnl.BringToFront;
      DriverNotInstalledPnl.Visible := True;
      ParamsMainPnl.Height := 201;

      AdvParamsMainPnl.Height := 38;

      StoredConnPnl.Visible := False;
    end;
  end
  else
  begin
    {JdbcDriverNameLbl.Caption := _('No RDBMS selected');
    JdbcDriverDescLbl.Caption := _('Please choose a Database System from the list above.');}

    StoredConnPnl.Visible := False;

    StoredConnAddBtn.Enabled := False;

    FreeChildControls(ParamsPnl);
  end;

  try
    if (FFirstParamControl <> nil) then
      GetParentForm(FFirstParamControl).ActiveControl :=
        FFirstParamControl;
  except
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.FillDropdownWithStoredConnections(
  StoredConnComboBox: TTntComboBox; PDriver: Pointer);

var
  I: Integer;
  PConnections,
    PConnection: Pointer;

begin
  PConnections := Grt.Global[FConnInfoPath + '/storedConns'];

  StoredConnComboBox.Items.Clear;
  StoredConnComboBox.ItemIndex := -1;

  for I := 0 to Grt.ListCount(PConnections) - 1 do
  begin
    PConnection := Grt.ListItem[PConnections, I];

    if (Grt.DictString[PDriver, '_id'] =
        Grt.DictString[PConnection, 'driver']) then
    begin
      StoredConnComboBox.Items.AddObject(
        Grt.DictString[PConnection, 'name'],
        PConnection);
    end;
  end;

  StoredConnComboBox.Items.Add(_('<New Connection>'));
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.SetConnection(PConnection: Pointer);

var
  PParameterValues,
    PRdbmsList,
    PRdbms,
    PDrivers,
    PDriver: Pointer;
  I,
    J,
    Index: Integer;
  ParamMapping: PParamMapping;
  DriverId: WideString;

begin
  StoredConnDelBtn.Enabled := (PConnection <> nil);
  StoredConnAddBtn.Enabled := False;

  // if the last entry is selected <New Connection>, clear edits
  if (PConnection = nil) then
  begin
    for I := 0 to FParamMappingList.Count - 1 do
    begin
      ParamMapping := FParamMappingList[I];

      if (ParamMapping^.ParamControl is TTntEdit) then
        TTntEdit(ParamMapping^.ParamControl).Text :=
          Grt.DictString[ParamMapping^.PParam, 'defaultValue']
      else
        if (ParamMapping^.ParamControl is TTntCheckbox) then
          TTntCheckbox(ParamMapping^.ParamControl).Checked :=
            StrToIntDef(Grt.DictString[ParamMapping^.PParam, 'defaultValue'], 0) = 1;
    end;

    StoredConnComboBox.ItemIndex := -1;

    OKButton.Enabled := False;
  end
  else
  begin
    PRdbmsList := Grt.Global[FConnInfoPath + '/rdbms'];
    PDriver := Grt.DictRef[PConnection, 'driver'];
    DriverId := Grt.DictString[PDriver, '_id'];
    PRdbms := nil;

    PDriver := nil;
    for I := 0 to Grt.ListCount(PRdbmsList) - 1 do
    begin
      PRdbms := Grt.ListItem[PRdbmsList, I];
      PDrivers := Grt.DictItem[PRdbms, 'drivers'];

      for J := 0 to Grt.ListCount(PDrivers) - 1 do
      begin
        PDriver := Grt.ListItem[PDrivers, J];

        if (Grt.DictString[
          Grt.ListItem[PDrivers, J], '_id'] = DriverId) then
          break;

        PDriver := nil;
      end;

      if (PDriver <> nil) then
        break;

      PRdbms := nil;
    end;

    if (PDriver = nil) then
      raise Exception.Create(_('The driver used by the given ' +
        'connection is not available.'));

    // Select correct RDBMS
    Index := RDBMSComboBox.Items.IndexOfObject(PRdbms);
    if (Index > -1) then
    begin
      if (RDBMSComboBox.ItemIndex <> Index) then
      begin
        RDBMSComboBox.ItemIndex := Index;
        RDBMSComboBoxCloseUp(self);
      end;

      // Select correct Driver
      Index := DriverComboBox.Items.IndexOfObject(PDriver);
      if (Index > -1) then
      begin
        if (DriverComboBox.ItemIndex <> Index) then
        begin
          DriverComboBox.ItemIndex := Index;
          DriverComboBoxCloseUp(self);
        end;
      end
      else
        raise Exception.CreateFmt(_('The Driver %s is not '+
          'available for selection'),
          [Grt.DictString[PDriver, 'caption']]);
    end
    else
      raise Exception.CreateFmt(_('The RDBMS %s is not '+
        'available for selection'),
        [Grt.DictString[PRdbms, 'caption']]);

    PParameterValues := Grt.DictItem[PConnection, 'parameterValues'];

    for I := 0 to FParamMappingList.Count - 1 do
    begin
      ParamMapping := FParamMappingList[I];
      if (ParamMapping.ParamControl is TTntEdit) then
        TTntEdit(ParamMapping.ParamControl).Text :=
          Grt.DictString[PParameterValues,
            Grt.DictString[ParamMapping.PParam, 'name']]
      else
        if (ParamMapping.ParamControl is TTntCheckBox) then
          TTntCheckBox(ParamMapping.ParamControl).Checked :=
            (Grt.DictString[PParameterValues,
              Grt.DictString[ParamMapping.PParam, 'name']] = '1');
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.RdbmsComboBoxCloseUp(Sender: TObject);

begin
  if (RDBMSComboBox.ItemIndex > -1) then
  begin
    BuildDriverComboBoxItems(
      RDBMSComboBox.Items.Objects[RDBMSComboBox.ItemIndex]);

    DriverComboBox.ItemIndex := 0;
    DriverComboBoxCloseUp(self);
  end
  else
  begin
    DriverLbl.Enabled := False;
    DriverComboBox.Enabled := False;
    if (FDriverDescLbl <> nil) then
      FDriverDescLbl.Enabled := False;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.SetDisplayRdbmsSelection(DisplayRdbmsSelection: Boolean);

begin
  ConnTypeMainPnl.Visible := DisplayRdbmsSelection;
  FDisplayRdbmsSelection := DisplayRdbmsSelection;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.SetSelectedRdbms(SelectedRdbms: WideString);

var
  I: Integer;

begin
  for I := 0 to RdbmsComboBox.Items.Count - 1 do
  begin
    if (WideSameText(
        Grt.DictString[RdbmsComboBox.Items.Objects[I], 'name'],
        SelectedRdbms)) then
    begin
      RdbmsComboBox.ItemIndex := I;
      RdbmsComboBoxCloseUp(self);
      break;
    end;
  end;
end;

// -----------------------------------------------------------------------------

function TMyxConnectionDialogForm.GetSelectedRdbms: WideString;

begin
  Result := '';

  if (RdbmsComboBox.ItemIndex > -1) then
  begin
    Result := Grt.DictString[
      RdbmsComboBox.Items.Objects[RdbmsComboBox.ItemIndex],
      'name'];
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.StoredConnComboBoxCloseUp(Sender: TObject);

begin
  if (StoredConnComboBox.ItemIndex =
    StoredConnComboBox.Items.Count - 1) or
    (StoredConnComboBox.ItemIndex = -1) then
    SetConnection(nil)
  else
    SetConnection(StoredConnComboBox.Items.Objects[
      StoredConnComboBox.ItemIndex]);

  if (FFirstParamControl <> nil) then
    GetParentForm(FFirstParamControl).ActiveControl :=
      FFirstParamControl;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.AdvancedBtnClick(Sender: TObject);

begin
  AdvParamsMainPnl.Visible := Not(AdvParamsMainPnl.Visible);

  if (Not(FDisplayRdbmsSelection)) then
    ConnTypeMainPnl.Visible := AdvParamsMainPnl.Visible;

  BottomPnl.Top := 1000;

  if (AdvParamsMainPnl.Visible) then
    AdvancedBtn.Caption := _('<< Advanced')
  else
    AdvancedBtn.Caption := _('Advanced >>');
end;

// -----------------------------------------------------------------------------

function TMyxConnectionDialogForm.WriteConnectionToTarget: Pointer;

var
  I: Integer;
  PConnection,
    //PRdbms,
    PDriver,
    PParamValues: Pointer;
  ParamMapping: PParamMapping;

begin
  Result := nil;

  if ((RdbmsComboBox.ItemIndex = -1) or
      (DriverComboBox.ItemIndex = -1)) then
    Exit;

  //PRdbms := RdbmsComboBox.Items.Objects[RdbmsComboBox.ItemIndex];
  PDriver := DriverComboBox.Items.Objects[DriverComboBox.ItemIndex];

  // create new connection
  PConnection := Grt.ObjectNew('db.mgmt.Connection', '', '', '');

  // add a reference to the driver
  Grt.DictRef[PConnection, 'driver'] := PDriver;

  // create parameter dict
  PParamValues := Grt.DictNewTyped(GrtStringValue, '');
  Grt.DictItem[PConnection, 'parameterValues'] := PParamValues;

  // set values from controls
  for I := 0 to FParamMappingList.Count - 1 do
  begin
    ParamMapping := FParamMappingList[I];

    // set the new value
    if (ParamMapping.ParamControl is TTntEdit) then
      Grt.DictString[PParamValues,
        Grt.DictString[ParamMapping.PParam, 'name']] :=
          TTntEdit(ParamMapping.ParamControl).Text
    else
      if (ParamMapping.ParamControl is TTntCheckbox) then
        Grt.DictString[PParamValues,
          Grt.DictString[ParamMapping.PParam, 'name']] :=
            IntToStr(Ord(TTntCheckbox(ParamMapping.ParamControl).Checked));
  end;

  // create modules list
  Grt.DictItem[PConnection, 'modules'] :=
    Grt.ValueDuplicate(Grt.DictItem[PDriver, 'defaultModules']);

  Grt.Global[FConnTargetPath] := PConnection;

  Result := PConnection;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.OKBtnClick(Sender: TObject);

begin
  WriteConnectionToTarget;

  ModalResult := mrOK;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.CancelBtnClick(Sender: TObject);

begin
  ModalResult := mrCancel;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.StoredConnAddBtnClick(Sender: TObject);

var
  ConnectionName: WideString;
  PNewConnection,
    PConnections,
    PConnection: Pointer;
  I: Integer;

begin
  // if not the last item (<New Connection>) is selected
  if (StoredConnComboBox.ItemIndex <
    StoredConnComboBox.Items.Count - 1) then
    ConnectionName := StoredConnComboBox.Text;

  if (ShowModalEditDialog(_('Store Connection.'),
      _('Please enter a name for the connection.'),
      myx_mtInformation, _('Ok') + #13#10 + _('Cancel'),
      True, _('Name:'),
      ConnectionName) = 1) then
  begin
    WriteConnectionToTarget;

    PNewConnection := Grt.Global[FConnTargetPath];

    // set the connection's name
    Grt.DictString[PNewConnection, 'name'] := ConnectionName;

    // check if there already is a connection with this name stored
    PConnections := Grt.Global[FConnInfoPath + '/storedConns'];

    for I := 0 to Grt.ListCount(PConnections) - 1 do
    begin
      PConnection := Grt.ListItem[PConnections, I];

      // if so, delete it
      if (WideSameText(Grt.DictString[PConnection, 'driver'],
        Grt.DictString[PNewConnection, 'driver'])) and
        (WideSameText(Grt.DictString[PConnection, 'name'],
        ConnectionName)) then
      begin
        Grt.ListDel(PConnections, I);
        break;
      end;
    end;

    // Store connection
    PNewConnection := Grt.ValueDuplicate(PNewConnection);

    Grt.ListAdd(PConnections, PNewConnection);

    FillDropdownWithStoredConnections(StoredConnComboBox,
      DriverComboBox.Items.Objects[DriverComboBox.ItemIndex]);
    StoredConnComboBox.ItemIndex :=
      StoredConnComboBox.Items.Count - 2;
    StoredConnComboBoxCloseUp(self);
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.ClearFieldsBtnClick(Sender: TObject);

begin
  SetConnection(nil);

  if (FFirstParamControl <> nil) then
    FFirstParamControl.SetFocus;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.StoredConnDelBtnClick(Sender: TObject);

var
  PConnections,
    PConnection,
    PDelConnection: Pointer;
  I: Integer;

begin
  if (StoredConnComboBox.ItemIndex <> -1) then
  begin
    if (ShowModalDialog(_('Delete stored connection.'),
      _('Are you sure you want to delete the stored connection?'),
      myx_mtInformation, _('Yes') + #13#10 + _('No')) = 1) then
    begin
      PDelConnection := StoredConnComboBox.Items.Objects[
        StoredConnComboBox.ItemIndex];

      PConnections := Grt.Global[FConnInfoPath + '/storedConns'];

      for I := 0 to Grt.ListCount(PConnections) - 1 do
      begin
        PConnection := Grt.ListItem[PConnections, I];

        // if so, delete it
        if (WideSameText(Grt.DictString[PConnection, 'driver'],
          Grt.DictString[PDelConnection, 'driver'])) and
          (WideSameText(Grt.DictString[PConnection, 'name'],
          Grt.DictString[PDelConnection, 'name'])) then
        begin
          Grt.ListDel(PConnections, I);

          DriverComboBoxCloseUp(self);

          break;
        end;
      end;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.LocateDriverBtnClick(Sender: TObject);

var
  OpenDlg: TOpenDialog;
  SourceDir,
    TargetDir: WideString;
  FilenameList: TTntStringList;
  I: Integer;
  PDriver,
    PFiles: Pointer;

begin
  if (DriverComboBox.ItemIndex = -1) then
    Exit;

  PDriver := DriverComboBox.Items.Objects[
    DriverComboBox.ItemIndex];

  PFiles := Grt.DictItem[PDriver, 'files'];

  TargetDir := GetApplDir + Tnt_WideStringReplace(
    Grt.DictString[PDriver, 'filesTarget'], '/', '\',
    [rfReplaceAll]);
  WideForceDirectories(TargetDir);

  FilenameList := TTntStringList.Create;
  try
    for I := 0 to Grt.ListCount(PFiles) - 1 do
      FilenameList.Add(Grt.ListString[PFiles, I]);

    OpenDlg := TOpenDialog.Create(self);
    try
      OpenDlg.Title := 'Attach Driver';
      while (FilenameList.Count > 0) do
      begin
        OpenDlg.Filter := _('Driver file')+
          ' (' + FilenameList[0] + ')|' + FilenameList[0] + '|'+
          _('All files')+' (*.*)|*.*';

        if (OpenDlg.Execute) then
        begin
          SourceDir := WideIncludeTrailingBackslash(
            WideExtractFilePath(OpenDlg.FileName));

          I := FilenameList.Count - 1;
          while (I >= 0) do
          begin
            if (FileExists(SourceDir + FilenameList[I])) then
            begin
              CopyDiskFile(SourceDir + FilenameList[I],
                TargetDir + FilenameList[I], False);

              FilenameList.Delete(I);
            end;

            dec(I);
          end;
        end
        else
          break;
      end;
    finally
      OpenDlg.Free;
    end;

    if (FilenameList.Count = 0) then
    begin
      if (ShowModalDialog(_('The application needs to be restarted.'),
        _('The application needs to be restarted. ' +
          'Please click on [Close] to close the application.'),
          myx_mtConfirmation, _('Close') + #13#10 + _('Cancel')) = 1) then
        Application.Terminate;
    end;
  finally
    FilenameList.Free;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.DownloadDriverBtnClick(Sender: TObject);

var
  PDriver: Pointer;

begin
  if (DriverComboBox.ItemIndex = -1) then
    Exit;

  PDriver := DriverComboBox.Items.Objects[
    DriverComboBox.ItemIndex];

  BrowseWebPage(Grt.DictString[PDriver, 'downloadUrl']);
end;

// -----------------------------------------------------------------------------

function TMyxConnectionDialogForm.GetParamValue(const Name: WideString): WideString;

var
  I: Integer;
  ParamMapping: PParamMapping;

begin
  for I := 0 to FParamMappingList.Count - 1 do
  begin
    ParamMapping := FParamMappingList[I];

    if (WideSameText(Grt.DictString[ParamMapping^.PParam, 'name'],
      name)) then
    begin
      if (ParamMapping^.ParamControl is TTntEdit) then
        Result := TTntEdit(ParamMapping^.ParamControl).Text
      else
        if (ParamMapping^.ParamControl is TTntCheckbox) then
          Result := IntToStr(Ord(TTntCheckbox(ParamMapping^.ParamControl).Checked));

      break;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.SetParamValue(const Name: WideString; Value: WideString);

var
  I: Integer;
  ParamMapping: PParamMapping;

begin
  for I := 0 to FParamMappingList.Count - 1 do
  begin
    ParamMapping := FParamMappingList[I];

    if (WideSameText(Grt.DictString[ParamMapping^.PParam, 'name'],
      name)) then
    begin
      if (ParamMapping^.ParamControl is TTntEdit) then
      begin
        TTntEdit(ParamMapping^.ParamControl).Text := Value;
        TTntEdit(ParamMapping^.ParamControl).SelStart :=
          Length(TTntEdit(ParamMapping^.ParamControl).Text);
      end
      else
        if (ParamMapping^.ParamControl is TTntCheckbox) then
          TTntCheckbox(ParamMapping^.ParamControl).Checked := (Value = '1');

      break;
    end;
  end;
end;

// -----------------------------------------------------------------------------

procedure TMyxConnectionDialogForm.SetDisplayDescriptions(DisplayDescriptions: Boolean);

begin
  FDisplayDescriptions := DisplayDescriptions;

  if (FDisplayDescriptions) and (FRdbmsDescLbl = nil) then
  begin
    FRdbmsDescLbl := TTntLabel.Create(self);
    FRdbmsDescLbl.Caption := _('Select a RDBMS from the list of supported systems');
    FRdbmsDescLbl.Top := RdbmsLbl.Top;
    FRdbmsDescLbl.Left := RdbmsComboBox.Left +
      RdbmsComboBox.Width + 20;
    FRdbmsDescLbl.Parent := ConnTypePnl;

    FDriverDescLbl := TTntLabel.Create(self);
    FDriverDescLbl.Caption := _('Choose from the list of available ' +
      'drivers for this RDBMS');
    FDriverDescLbl.Top := DriverLbl.Top;
    FDriverDescLbl.Left := RdbmsComboBox.Left +
      RdbmsComboBox.Width + 20;
    FDriverDescLbl.Parent := ConnTypePnl;
  end
  else
    if (FDisplayDescriptions) and (FRdbmsDescLbl <> nil) then
    begin
      FRdbmsDescLbl.Free;
      FRdbmsDescLbl := nil;
      FDriverDescLbl.Free;
      FDriverDescLbl := nil;
    end;
end;

// -----------------------------------------------------------------------------

end.