forked from treejames/OneSQL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunPreferences.dfm
More file actions
954 lines (954 loc) · 27.6 KB
/
unPreferences.dfm
File metadata and controls
954 lines (954 loc) · 27.6 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
object Preferences: TPreferences
Left = 0
Top = 0
Caption = 'Preferences'
ClientHeight = 554
ClientWidth = 334
Color = clBtnFace
Constraints.MinWidth = 350
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Panel1: TPanel
Left = 0
Top = 526
Width = 334
Height = 28
Align = alBottom
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
334
28)
object buCancel: TcxButton
Left = 254
Top = 0
Width = 75
Height = 25
Anchors = [akTop, akRight]
Cancel = True
Caption = 'Cancel'
ModalResult = 11
OptionsImage.ImageIndex = 1
OptionsImage.Images = dm.imListSmall
TabOrder = 0
end
object buSave: TcxButton
Left = 173
Top = 0
Width = 75
Height = 25
Anchors = [akTop, akRight]
Caption = 'Save'
OptionsImage.ImageIndex = 2
OptionsImage.Images = dm.imListSmall
TabOrder = 1
OnClick = buSaveClick
end
end
object Panel2: TPanel
Left = 0
Top = 0
Width = 334
Height = 526
Align = alClient
BevelOuter = bvNone
BorderWidth = 4
TabOrder = 1
object cxPageControl1: TcxPageControl
Left = 4
Top = 4
Width = 326
Height = 518
Align = alClient
TabOrder = 0
Properties.ActivePage = tsGeneral
Properties.CustomButtons.Buttons = <>
ClientRectBottom = 514
ClientRectLeft = 4
ClientRectRight = 322
ClientRectTop = 24
object tsGeneral: TcxTabSheet
BorderWidth = 4
Caption = 'General'
object GroupBox5: TGroupBox
Left = 0
Top = 0
Width = 310
Height = 97
Align = alTop
Caption = ' File Open/Save '
TabOrder = 0
object Label18: TLabel
Left = 21
Top = 28
Width = 61
Height = 13
Alignment = taRightJustify
Caption = 'Sql Directory'
end
object Label23: TLabel
Left = 28
Top = 55
Width = 54
Height = 13
Alignment = taRightJustify
Caption = 'Line Ending'
end
object edSqlDirectory: TEdit
Left = 88
Top = 25
Width = 174
Height = 21
TabOrder = 0
end
object cbLineEnding: TComboBox
Left = 88
Top = 52
Width = 200
Height = 21
TabOrder = 2
Text = 'Windows'
Items.Strings = (
'Windows'
'Unix'
'Mac OS')
end
object buSqlDirectory: TcxButton
Left = 265
Top = 24
Width = 23
Height = 23
OptionsImage.ImageIndex = 4
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 2
TabOrder = 1
OnClick = buSqlDirectoryClick
end
end
object GroupBox6: TGroupBox
Left = 0
Top = 97
Width = 310
Height = 56
Align = alTop
Caption = ' Layout '
TabOrder = 1
object cboxShowObjectInspector: TCheckBox
Left = 16
Top = 24
Width = 272
Height = 17
Caption = 'Show Object Inspector'
TabOrder = 0
end
end
end
object tsEditor: TcxTabSheet
BorderWidth = 4
Caption = 'SQL Editor'
ExplicitLeft = 0
ExplicitTop = 0
ExplicitWidth = 0
ExplicitHeight = 0
object GroupBox1: TGroupBox
Left = 0
Top = 0
Width = 310
Height = 120
Align = alTop
Caption = ' Font '
TabOrder = 0
object Label7: TLabel
Left = 32
Top = 58
Width = 50
Height = 13
Alignment = taRightJustify
Caption = 'Font Color'
end
object Label8: TLabel
Left = 26
Top = 85
Width = 56
Height = 13
Alignment = taRightJustify
Caption = 'Background'
end
object Label5: TLabel
Left = 33
Top = 28
Width = 49
Height = 13
Alignment = taRightJustify
Caption = 'Font Type'
end
object ceEditorColor: TdxColorEdit
Left = 88
Top = 54
ColorValue = clBlack
Properties.ColorSet = csCustom
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 0
Width = 89
end
object buFontEditor: TcxButton
Left = 88
Top = 23
Width = 89
Height = 25
Caption = 'Font...'
OptionsImage.ImageIndex = 19
OptionsImage.Images = dm.imListSmall
TabOrder = 1
OnClick = buFontEditorClick
end
object ceEditorBackground: TdxColorEdit
Left = 88
Top = 81
ColorValue = clWhite
Properties.ColorSet = csCustom
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 2
Width = 89
end
end
object GroupBox2: TGroupBox
Left = 0
Top = 120
Width = 310
Height = 362
Align = alClient
Caption = ' Syntax Highlight '
TabOrder = 1
object sePreview: TSynEdit
AlignWithMargins = True
Left = 6
Top = 167
Width = 298
Height = 189
Margins.Left = 4
Margins.Top = 4
Margins.Right = 4
Margins.Bottom = 4
Align = alClient
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Courier New'
Font.Style = []
TabOrder = 0
Gutter.Font.Charset = DEFAULT_CHARSET
Gutter.Font.Color = clWindowText
Gutter.Font.Height = -11
Gutter.Font.Name = 'Courier New'
Gutter.Font.Style = []
Gutter.LeftOffset = 0
Gutter.ShowLineNumbers = True
Highlighter = syntax
Lines.Strings = (
'select'
' count(*) no, # Testing'
' coalesce(name, desc) name'
'from'
' MyTable'
'where'
' name like '#39'sql'#39
'order by'
' id desc')
Options = [eoAutoIndent, eoDragDropEditing, eoEnhanceEndKey, eoGroupUndo, eoShowScrollHint, eoSmartTabDelete, eoSmartTabs, eoTabsToSpaces]
ReadOnly = True
RightEdge = 0
FontSmoothing = fsmNone
end
object Panel3: TPanel
Left = 2
Top = 15
Width = 306
Height = 148
Align = alTop
BevelOuter = bvNone
TabOrder = 1
object Label15: TLabel
Left = 8
Top = 133
Width = 38
Height = 13
Caption = 'Preview'
end
object laComments: TLabel
Left = 13
Top = 75
Width = 50
Height = 13
Alignment = taRightJustify
Caption = 'Comments'
end
object laDataTypes: TLabel
Left = 8
Top = 103
Width = 55
Height = 13
Alignment = taRightJustify
Caption = 'Data Types'
end
object laFunctions: TLabel
Left = 17
Top = 47
Width = 46
Height = 13
Alignment = taRightJustify
Caption = 'Functions'
end
object laKeywords: TLabel
Left = 16
Top = 19
Width = 47
Height = 13
Alignment = taRightJustify
Caption = 'Keywords'
end
object laNumbers: TLabel
Left = 166
Top = 47
Width = 42
Height = 13
Alignment = taRightJustify
Caption = 'Numbers'
end
object laStrings: TLabel
Left = 175
Top = 75
Width = 33
Height = 13
Alignment = taRightJustify
Caption = 'Strings'
end
object laTables: TLabel
Left = 177
Top = 19
Width = 31
Height = 13
Alignment = taRightJustify
Caption = 'Tables'
end
object buCommentsBold: TcxButton
Left = 113
Top = 70
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 5
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 0
OnClick = buKeywordsBoldClick
end
object buCommentsItalic: TcxButton
Left = 135
Top = 70
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 6
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 1
OnClick = buKeywordsBoldClick
end
object buDataTypesBold: TcxButton
Left = 113
Top = 98
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 7
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 2
OnClick = buKeywordsBoldClick
end
object buDataTypesItalic: TcxButton
Left = 135
Top = 98
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 8
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 3
OnClick = buKeywordsBoldClick
end
object buFunctionsBold: TcxButton
Left = 113
Top = 42
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 3
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 4
OnClick = buKeywordsBoldClick
end
object buFunctionsItalic: TcxButton
Left = 135
Top = 42
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 4
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 5
OnClick = buKeywordsBoldClick
end
object buKeywordsBold: TcxButton
Left = 113
Top = 14
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 1
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 6
OnClick = buKeywordsBoldClick
end
object buKeywordsItalic: TcxButton
Left = 135
Top = 14
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 2
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 7
OnClick = buKeywordsBoldClick
end
object buNumbersBold: TcxButton
Left = 258
Top = 42
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 11
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 8
OnClick = buKeywordsBoldClick
end
object buNumbersItalic: TcxButton
Left = 280
Top = 42
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 12
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 9
OnClick = buKeywordsBoldClick
end
object buStringsBold: TcxButton
Left = 258
Top = 70
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 13
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 10
OnClick = buKeywordsBoldClick
end
object buStringsItalic: TcxButton
Left = 280
Top = 70
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 14
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 11
OnClick = buKeywordsBoldClick
end
object buTablesBold: TcxButton
Left = 258
Top = 14
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 9
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 12
OnClick = buKeywordsBoldClick
end
object buTablesItalic: TcxButton
Left = 280
Top = 14
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 10
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 13
OnClick = buKeywordsBoldClick
end
object ceComments: TdxColorEdit
Left = 69
Top = 71
ColorValue = clGreen
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 14
Width = 44
end
object ceDataTypes: TdxColorEdit
Left = 69
Top = 99
ColorValue = clMaroon
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 15
Width = 44
end
object ceFunctions: TdxColorEdit
Left = 69
Top = 43
ColorValue = clFuchsia
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 16
Width = 44
end
object ceKeywords: TdxColorEdit
Left = 69
Top = 15
ColorValue = 15168792
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 17
Width = 44
end
object ceNumbers: TdxColorEdit
Left = 214
Top = 43
ColorValue = clBlue
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 18
Width = 44
end
object ceStrings: TdxColorEdit
Left = 214
Top = 71
ColorValue = clRed
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 19
Width = 44
end
object ceTables: TdxColorEdit
Left = 214
Top = 15
ColorValue = clOlive
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 20
Width = 44
end
end
end
end
object tsGrid: TcxTabSheet
BorderWidth = 4
Caption = 'Data Grid'
object GroupBox3: TGroupBox
Left = 0
Top = 0
Width = 310
Height = 120
Align = alTop
Caption = ' Font '
TabOrder = 0
object Label6: TLabel
Left = 33
Top = 28
Width = 49
Height = 13
Alignment = taRightJustify
Caption = 'Font Type'
end
object Label9: TLabel
Left = 32
Top = 58
Width = 50
Height = 13
Alignment = taRightJustify
Caption = 'Font Color'
end
object Label10: TLabel
Left = 26
Top = 85
Width = 56
Height = 13
Alignment = taRightJustify
Caption = 'Background'
end
object buFontGrid: TcxButton
Left = 88
Top = 23
Width = 89
Height = 25
Caption = 'Font...'
OptionsImage.ImageIndex = 19
OptionsImage.Images = dm.imListSmall
TabOrder = 0
OnClick = buFontEditorClick
end
object ceGridColor: TdxColorEdit
Left = 88
Top = 54
ColorValue = clBlack
Properties.ColorSet = csCustom
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 1
Width = 89
end
object ceGridBackground: TdxColorEdit
Left = 88
Top = 81
ColorValue = clWhite
Properties.ColorSet = csCustom
Properties.OnInitPopup = ColorEditInitPopup
TabOrder = 2
Width = 89
end
end
object GroupBox4: TGroupBox
Left = 0
Top = 120
Width = 310
Height = 161
Align = alTop
Caption = ' Style '
TabOrder = 1
object Label1: TLabel
Left = 34
Top = 27
Width = 48
Height = 13
Alignment = taRightJustify
Caption = 'Null String'
end
object edNullString: TEdit
Left = 88
Top = 24
Width = 89
Height = 21
TabOrder = 0
Text = '{null}'
end
object ceNullStringBackground: TdxColorEdit
Left = 179
Top = 24
ColorValue = clWhite
Properties.OnInitPopup = ceNullStringBackgroundPropertiesInitPopup
TabOrder = 1
Width = 44
end
object buNullStringBold: TcxButton
Left = 223
Top = 23
Width = 23
Height = 23
OptionsImage.ImageIndex = 20
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 1
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 2
OnClick = buNullStringBoldClick
end
object buNullStringItalic: TcxButton
Left = 245
Top = 23
Width = 23
Height = 23
OptionsImage.ImageIndex = 21
OptionsImage.Images = dm.imListSmall
SpeedButtonOptions.GroupIndex = 2
SpeedButtonOptions.CanBeFocused = False
SpeedButtonOptions.AllowAllUp = True
TabOrder = 3
OnClick = buNullStringItalicClick
end
object cboxFitSmallColumnsToCaption: TCheckBox
Left = 88
Top = 60
Width = 219
Height = 17
Caption = 'Fit small columns to caption size'
TabOrder = 4
end
end
end
object tsAbout: TcxTabSheet
Caption = 'About'
ImageIndex = 2
object paInfoLeft: TPanel
Left = 0
Top = 0
Width = 71
Height = 490
Align = alLeft
BevelOuter = bvNone
TabOrder = 0
DesignSize = (
71
490)
object Label2: TLabel
Left = -49
Top = 6
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Name:'
ExplicitLeft = 57
end
object Label3: TLabel
Left = -49
Top = 23
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Description:'
ExplicitLeft = 57
end
object Label4: TLabel
Left = -49
Top = 91
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Web:'
ExplicitLeft = 57
end
object Label11: TLabel
Left = -49
Top = 40
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Version:'
ExplicitLeft = 57
end
object Label12: TLabel
Left = -49
Top = 57
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Company:'
ExplicitLeft = 57
end
object Label13: TLabel
Left = -49
Top = 74
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'Email:'
ExplicitLeft = 57
end
object Label14: TLabel
Left = -49
Top = 108
Width = 120
Height = 13
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'GitHub:'
ExplicitLeft = 57
end
end
object paInfoRight: TPanel
Left = 71
Top = 0
Width = 247
Height = 490
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object Label16: TLabel
Left = 2
Top = 6
Width = 160
Height = 13
AutoSize = False
Caption = 'OneSQL'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label17: TLabel
Left = 2
Top = 23
Width = 160
Height = 13
AutoSize = False
Caption = 'Universal SQL Editor'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object laVersion: TLabel
Left = 2
Top = 40
Width = 160
Height = 13
AutoSize = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label19: TLabel
Left = 2
Top = 57
Width = 160
Height = 13
AutoSize = False
Caption = 'CrashIT'
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
end
object Label20: TLabel
Left = 2
Top = 74
Width = 160
Height = 13
Cursor = crHandPoint
AutoSize = False
Caption = 'igrubisic@gmail.com'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
OnClick = Label20Click
end
object laWeb: TLabel
Left = 2
Top = 91
Width = 160
Height = 13
Cursor = crHandPoint
AutoSize = False
Caption = 'http://onesql.net'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
OnClick = laWebClick
end
object Label22: TLabel
Left = 2
Top = 108
Width = 239
Height = 13
Cursor = crHandPoint
AutoSize = False
Caption = 'https://github.com/CrAsH1101/OneSQL'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
WordWrap = True
OnClick = laWebClick
end
end
end
end
end
object colorDialog: TColorDialog
Left = 264
end
object fd: TFontDialog
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Options = [fdWysiwyg]
Left = 296
end
object syntax: TSynSQLSyn
Options.AutoDetectEnabled = False
Options.AutoDetectLineLimit = 0
Options.Visible = False
CommentAttri.Foreground = clGreen
DataTypeAttri.Foreground = clMaroon
FunctionAttri.Foreground = clFuchsia
KeyAttri.Foreground = 15168792
NumberAttri.Foreground = clBlue
StringAttri.Foreground = clRed
TableNameAttri.Foreground = clOlive
TableNameAttri.Style = [fsBold]
TableNames.Strings = (
'MyTable')
SQLDialect = sqlMySQL
Left = 288
Top = 280
end
end