source: tags/1.1.0/Forms/UFormImportFormat.lfm

Last change on this file was 55, checked in by chronos, 8 years ago
  • Fixed: Set correct tab order of controls on forms.
File size: 3.7 KB
Line 
1object FormImportFormat: TFormImportFormat
2 Left = 462
3 Height = 433
4 Top = 322
5 Width = 664
6 Caption = 'Import format'
7 ClientHeight = 433
8 ClientWidth = 664
9 OnCreate = FormCreate
10 OnShow = FormShow
11 LCLVersion = '1.6.0.4'
12 object ButtonOk: TButton
13 Left = 560
14 Height = 25
15 Top = 384
16 Width = 75
17 Anchors = [akRight, akBottom]
18 Caption = 'Ok'
19 ModalResult = 1
20 TabOrder = 6
21 end
22 object ButtonCancel: TButton
23 Left = 464
24 Height = 25
25 Top = 384
26 Width = 75
27 Anchors = [akRight, akBottom]
28 Caption = 'Cancel'
29 ModalResult = 2
30 TabOrder = 5
31 end
32 object Label1: TLabel
33 Left = 20
34 Height = 20
35 Top = 53
36 Width = 43
37 Caption = 'Name:'
38 ParentColor = False
39 end
40 object EditName: TEdit
41 Left = 179
42 Height = 28
43 Top = 48
44 Width = 461
45 Anchors = [akTop, akLeft, akRight]
46 TabOrder = 1
47 end
48 object Label8: TLabel
49 Left = 20
50 Height = 20
51 Top = 90
52 Width = 72
53 Caption = 'Block start:'
54 ParentColor = False
55 end
56 object EditBlockStart: TEdit
57 Left = 179
58 Height = 28
59 Top = 85
60 Width = 461
61 Anchors = [akTop, akLeft, akRight]
62 TabOrder = 2
63 end
64 object Label9: TLabel
65 Left = 20
66 Height = 20
67 Top = 130
68 Width = 68
69 Caption = 'Block end:'
70 ParentColor = False
71 end
72 object EditBlockEnd: TEdit
73 Left = 179
74 Height = 28
75 Top = 125
76 Width = 461
77 Anchors = [akTop, akLeft, akRight]
78 TabOrder = 3
79 end
80 object ListViewItemRules: TListView
81 Left = 20
82 Height = 192
83 Top = 181
84 Width = 620
85 Anchors = [akTop, akLeft, akRight, akBottom]
86 Columns = <
87 item
88 Caption = 'Start string'
89 Width = 100
90 end
91 item
92 Caption = 'End string'
93 Width = 100
94 end
95 item
96 Caption = 'Action'
97 Width = 100
98 end
99 item
100 Caption = 'Variable'
101 Width = 100
102 end
103 item
104 Caption = 'Repetition'
105 Width = 100
106 end>
107 OwnerData = True
108 PopupMenu = PopupMenu1
109 ReadOnly = True
110 RowSelect = True
111 TabOrder = 4
112 ViewStyle = vsReport
113 OnData = ListViewItemRulesData
114 OnDblClick = AModifyExecute
115 end
116 object Label2: TLabel
117 Left = 20
118 Height = 20
119 Top = 157
120 Width = 68
121 Caption = 'Item rules:'
122 ParentColor = False
123 end
124 object Label3: TLabel
125 Left = 20
126 Height = 20
127 Top = 13
128 Width = 35
129 Caption = 'Type:'
130 ParentColor = False
131 end
132 object ComboBoxType: TComboBox
133 Left = 179
134 Height = 28
135 Top = 13
136 Width = 197
137 ItemHeight = 20
138 Items.Strings = (
139 'Text parse HTTP'
140 'MS Access database'
141 'Text parse file'
142 )
143 Style = csDropDownList
144 TabOrder = 0
145 end
146 object PopupMenu1: TPopupMenu
147 Images = FormMain.ImageList1
148 left = 181
149 top = 277
150 object MenuItem1: TMenuItem
151 Action = AAdd
152 end
153 object MenuItem2: TMenuItem
154 Action = AModify
155 end
156 object MenuItem3: TMenuItem
157 Action = ARemove
158 end
159 object MenuItem4: TMenuItem
160 Action = AMoveUp
161 end
162 object MenuItem5: TMenuItem
163 Action = AMoveDown
164 end
165 end
166 object ActionList1: TActionList
167 Images = FormMain.ImageList1
168 left = 383
169 top = 282
170 object AAdd: TAction
171 Caption = 'Add'
172 OnExecute = AAddExecute
173 ShortCut = 45
174 end
175 object AModify: TAction
176 Caption = 'Modify'
177 OnExecute = AModifyExecute
178 ShortCut = 13
179 end
180 object ARemove: TAction
181 Caption = 'Remove'
182 OnExecute = ARemoveExecute
183 ShortCut = 46
184 end
185 object AMoveUp: TAction
186 Caption = 'Move up'
187 OnExecute = AMoveUpExecute
188 end
189 object AMoveDown: TAction
190 Caption = 'Move down'
191 OnExecute = AMoveDownExecute
192 end
193 end
194end
Note: See TracBrowser for help on using the repository browser.