source: trunk/Forms/FormField.lfm

Last change on this file was 32, checked in by chronos, 6 months ago
  • Modified: Removed U prefix from units names.
  • Modified: Use TFormEx for all forms.
File size: 4.9 KB
Line 
1object FormField: TFormField
2 Left = 721
3 Height = 463
4 Top = 85
5 Width = 1015
6 Caption = 'Field'
7 ClientHeight = 463
8 ClientWidth = 1015
9 DesignTimePPI = 125
10 OnCreate = FormCreate
11 OnShow = FormShow
12 Position = poMainFormCenter
13 LCLVersion = '3.2.0.0'
14 object EditName: TEdit
15 Left = 175
16 Height = 39
17 Top = 11
18 Width = 275
19 TabOrder = 0
20 end
21 object Label1: TLabel
22 Left = 17
23 Height = 22
24 Top = 22
25 Width = 49
26 Caption = 'Name:'
27 ParentColor = False
28 end
29 object ButtonOk: TButton
30 Left = 917
31 Height = 26
32 Top = 417
33 Width = 78
34 Anchors = [akRight, akBottom]
35 Caption = 'Ok'
36 ModalResult = 1
37 TabOrder = 1
38 end
39 object EditTextBefore: TEdit
40 Left = 174
41 Height = 39
42 Top = 92
43 Width = 276
44 TabOrder = 2
45 end
46 object Label2: TLabel
47 Left = 16
48 Height = 22
49 Top = 102
50 Width = 87
51 Caption = 'Text before:'
52 ParentColor = False
53 end
54 object EditTextAfter: TEdit
55 Left = 174
56 Height = 39
57 Top = 141
58 Width = 276
59 TabOrder = 3
60 end
61 object Label3: TLabel
62 Left = 16
63 Height = 22
64 Top = 150
65 Width = 74
66 Caption = 'Text after:'
67 ParentColor = False
68 end
69 object Label4: TLabel
70 Left = 17
71 Height = 22
72 Top = 58
73 Width = 76
74 Caption = 'Data type:'
75 ParentColor = False
76 end
77 object ComboBoxType: TComboBox
78 Left = 174
79 Height = 38
80 Top = 50
81 Width = 276
82 ItemHeight = 0
83 Style = csDropDownList
84 TabOrder = 4
85 OnChange = ComboBoxTypeChange
86 end
87 object ButtonCancel: TButton
88 Left = 817
89 Height = 26
90 Top = 417
91 Width = 78
92 Anchors = [akRight, akBottom]
93 Caption = 'Cancel'
94 ModalResult = 2
95 TabOrder = 5
96 end
97 object PageControl1: TPageControl
98 Left = 16
99 Height = 209
100 Top = 192
101 Width = 976
102 ActivePage = TabSheetBoolean
103 Anchors = [akTop, akLeft, akRight, akBottom]
104 ShowTabs = False
105 TabIndex = 3
106 TabOrder = 6
107 object TabSheetString: TTabSheet
108 ClientHeight = 205
109 ClientWidth = 966
110 object EditStringDefault: TEdit
111 Left = 167
112 Height = 39
113 Top = 9
114 Width = 276
115 TabOrder = 0
116 end
117 object Label5: TLabel
118 Left = 16
119 Height = 22
120 Top = 9
121 Width = 102
122 Caption = 'Default value:'
123 ParentColor = False
124 end
125 end
126 object TabSheetInteger: TTabSheet
127 ClientHeight = 205
128 ClientWidth = 966
129 object Label10: TLabel
130 Left = 12
131 Height = 22
132 Top = 22
133 Width = 76
134 Caption = 'Minimum:'
135 ParentColor = False
136 end
137 object SpinEditMin: TSpinEdit
138 Left = 160
139 Height = 39
140 Top = 20
141 Width = 266
142 MaxValue = 10000000
143 TabOrder = 0
144 end
145 object SpinEditMax: TSpinEdit
146 Left = 160
147 Height = 39
148 Top = 58
149 Width = 266
150 TabOrder = 1
151 end
152 object Label11: TLabel
153 Left = 12
154 Height = 22
155 Top = 61
156 Width = 79
157 Caption = 'Maximum:'
158 ParentColor = False
159 end
160 end
161 object TabSheetDateTime: TTabSheet
162 ClientHeight = 205
163 ClientWidth = 966
164 object DateEditMin: TDateEdit
165 Left = 141
166 Height = 39
167 Top = 25
168 Width = 225
169 CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
170 DateOrder = doNone
171 ButtonWidth = 24
172 NumGlyphs = 1
173 MaxLength = 0
174 TabOrder = 0
175 end
176 object Label6: TLabel
177 Left = 16
178 Height = 22
179 Top = 33
180 Width = 76
181 Caption = 'Minimum:'
182 ParentColor = False
183 end
184 object DateEditMax: TDateEdit
185 Left = 141
186 Height = 39
187 Top = 75
188 Width = 225
189 CalendarDisplaySettings = [dsShowHeadings, dsShowDayNames]
190 DateOrder = doNone
191 ButtonWidth = 24
192 NumGlyphs = 1
193 MaxLength = 0
194 TabOrder = 1
195 end
196 object Label7: TLabel
197 Left = 16
198 Height = 22
199 Top = 83
200 Width = 79
201 Caption = 'Maximum:'
202 ParentColor = False
203 end
204 end
205 object TabSheetBoolean: TTabSheet
206 end
207 object TabSheetFloat: TTabSheet
208 ClientHeight = 205
209 ClientWidth = 966
210 object FloatSpinEditMin: TFloatSpinEdit
211 Left = 150
212 Height = 39
213 Top = 16
214 Width = 277
215 MaxValue = 100000000
216 TabOrder = 0
217 end
218 object Label8: TLabel
219 Left = 9
220 Height = 22
221 Top = 26
222 Width = 76
223 Caption = 'Minimum:'
224 ParentColor = False
225 end
226 object FloatSpinEditMax: TFloatSpinEdit
227 Left = 150
228 Height = 39
229 Top = 67
230 Width = 277
231 MaxValue = 100
232 TabOrder = 1
233 end
234 object Label9: TLabel
235 Left = 9
236 Height = 22
237 Top = 76
238 Width = 79
239 Caption = 'Maximum:'
240 ParentColor = False
241 end
242 end
243 end
244end
Note: See TracBrowser for help on using the repository browser.