-
-
Notifications
You must be signed in to change notification settings - Fork 555
Expand file tree
/
Copy pathreformatter.lfm
More file actions
90 lines (90 loc) · 2.19 KB
/
reformatter.lfm
File metadata and controls
90 lines (90 loc) · 2.19 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
object frmReformatter: TfrmReformatter
Left = 0
Height = 217
Top = 0
Width = 503
BorderStyle = bsDialog
Caption = 'Reformat SQL'
ClientHeight = 217
ClientWidth = 503
Color = clBtnFace
Position = poOwnerFormCenter
LCLVersion = '4.4.0.0'
OnCreate = FormCreate
OnDestroy = FormDestroy
object grpReformatter: TRadioGroup
Left = 8
Height = 128
Top = 8
Width = 487
Anchors = [akTop, akLeft, akRight, akBottom]
AutoFill = True
Caption = 'Select reformatter'
ChildSizing.LeftRightSpacing = 6
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.EnlargeVertical = crsHomogenousChildResize
ChildSizing.ShrinkHorizontal = crsScaleChilds
ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1
ClientHeight = 108
ClientWidth = 483
ItemIndex = 0
Items.Strings = (
'Internal'
'Online (heidisql.com)'
'Online (sqlformat.org)'
)
ParentBackground = False
TabOrder = 0
OnClick = grpReformatterClick
end
object btnCancel: TButton
Left = 420
Height = 25
Top = 184
Width = 75
Anchors = [akRight, akBottom]
BorderSpacing.Around = 5
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
end
object btnOk: TButton
Left = 339
Height = 25
Top = 184
Width = 75
Anchors = [akRight, akBottom]
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 2
OnClick = btnOkClick
end
object lblFormatProviderLink: TLabel
AnchorSideTop.Control = grpReformatter
AnchorSideTop.Side = asrBottom
Cursor = crHandPoint
Left = 8
Height = 15
Top = 151
Width = 117
Anchors = [akLeft, akBottom]
Caption = 'lblFormatProviderLink'
Visible = False
OnClick = lblFormatProviderLinkClick
end
object chkKeepAsking: TCheckBox
Left = 8
Height = 19
Top = 186
Width = 257
Anchors = [akLeft, akRight, akBottom]
Caption = 'Keep asking this question.'
Checked = True
State = cbChecked
TabOrder = 3
end
end