-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCodeTemplates.dfm
165 lines (165 loc) · 3.44 KB
/
CodeTemplates.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
object frmCodeTemplates: TfrmCodeTemplates
Left = 261
Top = 140
HelpContext = 5200
BorderIcons = [biSystemMenu, biHelp]
BorderStyle = bsDialog
Caption = 'Code Templates'
ClientHeight = 300
ClientWidth = 369
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object grpTemplates: TGroupBox
Left = 4
Top = 4
Width = 361
Height = 263
Caption = 'Code Templates'
TabOrder = 0
object lblTemplate: TLabel
Left = 8
Top = 16
Width = 47
Height = 13
Caption = '&Template:'
end
object lblCode: TLabel
Left = 8
Top = 99
Width = 28
Height = 13
Caption = '&Code:'
end
object grdTemplates: TStringGrid
Left = 59
Top = 16
Width = 233
Height = 80
HelpContext = 5204
ColCount = 2
DefaultRowHeight = 18
FixedCols = 0
RowCount = 2
Options = [goFixedVertLine, goFixedHorzLine, goDrawFocusSelected]
TabOrder = 0
OnSelectCell = grdTemplatesSelectCell
ColWidths = (
57
151)
end
object btnAdd: TButton
Left = 299
Top = 17
Width = 55
Height = 24
HelpContext = 5205
Caption = '&Add...'
TabOrder = 2
OnClick = btnAddClick
end
object btnEdit: TButton
Left = 299
Top = 44
Width = 55
Height = 24
HelpContext = 5206
Caption = '&Edit...'
TabOrder = 3
OnClick = btnEditClick
end
object btnDelete: TButton
Left = 299
Top = 71
Width = 55
Height = 24
HelpContext = 5207
Caption = '&Delete'
TabOrder = 4
OnClick = btnDeleteClick
end
object mmoCode: TMemo
Left = 59
Top = 99
Width = 296
Height = 157
HelpContext = 5208
ScrollBars = ssBoth
TabOrder = 1
OnChange = mmoCodeChange
end
object btnLoad: TButton
Left = 6
Top = 204
Width = 50
Height = 24
HelpContext = 5209
Caption = '&Load'
TabOrder = 5
OnClick = btnLoadClick
end
object btnSave: TButton
Left = 6
Top = 232
Width = 50
Height = 24
HelpContext = 5210
Caption = '&Save'
TabOrder = 6
OnClick = btnSaveClick
end
end
object btnOK: TButton
Left = 129
Top = 272
Width = 75
Height = 25
HelpContext = 5211
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 1
end
object btnCancel: TButton
Left = 209
Top = 272
Width = 75
Height = 25
HelpContext = 5212
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object btnHelp: TButton
Left = 289
Top = 272
Width = 75
Height = 25
HelpContext = 5215
Caption = '&Help'
TabOrder = 3
OnClick = btnHelpClick
end
object dlgOpen: TOpenDialog
DefaultExt = 'dci'
Filter = 'Code Templates (*.dci)|*.dci'
Left = 216
Top = 8
end
object dlgSave: TSaveDialog
DefaultExt = 'dci'
Filter = 'Code Templates (*.dci)|*.dci'
Left = 248
Top = 8
end
end