source: tags/1.3.1/Forms/UFormMain.lfm

Last change on this file was 112, checked in by chronos, 8 years ago
  • Fixed: Put back accidently removed actions to tray icon popup menu.
File size: 8.2 KB
Line 
1object FormMain: TFormMain
2 Left = 460
3 Height = 447
4 Top = 289
5 Width = 782
6 Caption = 'Acronym Decoder'
7 ClientHeight = 422
8 ClientWidth = 782
9 Menu = MainMenu1
10 OnClose = FormClose
11 OnCloseQuery = FormCloseQuery
12 OnCreate = FormCreate
13 OnDestroy = FormDestroy
14 OnHide = FormHide
15 OnShow = FormShow
16 LCLVersion = '1.6.0.4'
17 object Panel1: TPanel
18 Left = 0
19 Height = 396
20 Top = 26
21 Width = 782
22 Align = alClient
23 BevelOuter = bvNone
24 ClientHeight = 396
25 ClientWidth = 782
26 TabOrder = 1
27 object CheckBoxExactMath: TCheckBox
28 Left = 8
29 Height = 24
30 Top = 3
31 Width = 104
32 Caption = 'Exact match'
33 OnChange = CheckBoxExactMathChange
34 TabOrder = 0
35 end
36 object ListViewFilter1: TListViewFilter
37 Left = 8
38 Height = 30
39 Top = 32
40 Width = 767
41 OnChange = ListViewFilter1Change
42 Anchors = [akTop, akLeft, akRight]
43 end
44 object ListViewAcronyms: TListView
45 Left = 8
46 Height = 324
47 Top = 64
48 Width = 767
49 Anchors = [akTop, akLeft, akRight, akBottom]
50 Columns = <
51 item
52 Caption = 'Name'
53 Width = 100
54 end
55 item
56 Caption = 'Meaning'
57 Width = 300
58 end
59 item
60 Caption = 'Categories'
61 Width = 347
62 end>
63 OwnerData = True
64 ReadOnly = True
65 RowSelect = True
66 TabOrder = 2
67 ViewStyle = vsReport
68 OnData = ListViewAcronymsData
69 OnResize = ListViewAcronymsResize
70 OnSelectItem = ListViewAcronymsSelectItem
71 end
72 end
73 object ToolBar1: TToolBar
74 Left = 0
75 Height = 26
76 Top = 0
77 Width = 782
78 Caption = 'ToolBar1'
79 Images = Core.ImageList1
80 ParentShowHint = False
81 ShowHint = True
82 TabOrder = 0
83 object ToolButton1: TToolButton
84 Left = 1
85 Top = 2
86 Action = AFileNew
87 end
88 object ToolButton2: TToolButton
89 Left = 110
90 Top = 2
91 Action = AShowAcronyms
92 end
93 object ToolButton3: TToolButton
94 Left = 133
95 Top = 2
96 Action = AShowCategories
97 end
98 object ToolButton4: TToolButton
99 Left = 179
100 Top = 2
101 Action = AShowImportFormats
102 end
103 object ToolButton5: TToolButton
104 Left = 156
105 Top = 2
106 Action = AShowImportSources
107 end
108 object ToolButton6: TToolButton
109 Left = 24
110 Top = 2
111 Action = AFileOpen
112 DropdownMenu = PopupMenuOpenRecent
113 Style = tbsDropDown
114 end
115 object ToolButton7: TToolButton
116 Left = 59
117 Top = 2
118 Action = AFileSave
119 end
120 object ToolButton8: TToolButton
121 Left = 105
122 Height = 22
123 Top = 2
124 Width = 5
125 Caption = 'ToolButton8'
126 Style = tbsDivider
127 end
128 object ToolButton9: TToolButton
129 Left = 202
130 Top = 2
131 Action = AProcessImports
132 end
133 object ToolButton10: TToolButton
134 Left = 225
135 Height = 22
136 Top = 2
137 Width = 5
138 Caption = 'ToolButton10'
139 Style = tbsDivider
140 end
141 object ToolButton11: TToolButton
142 Left = 230
143 Top = 2
144 Action = ASettings
145 end
146 object ToolButton12: TToolButton
147 Left = 82
148 Top = 2
149 Action = AFileClose
150 end
151 end
152 object ActionList1: TActionList
153 Images = Core.ImageList1
154 left = 472
155 top = 192
156 object AExit: TAction
157 Caption = 'Exit'
158 ImageIndex = 2
159 OnExecute = AExitExecute
160 end
161 object AShow: TAction
162 Caption = 'Show'
163 OnExecute = AShowExecute
164 end
165 object AHide: TAction
166 Caption = 'Hide'
167 OnExecute = AHideExecute
168 end
169 object AImport: TAction
170 Caption = 'Import'
171 OnExecute = AImportExecute
172 end
173 object AFileOpen: TAction
174 Caption = 'Open'
175 ImageIndex = 8
176 OnExecute = AFileOpenExecute
177 ShortCut = 16463
178 end
179 object AFileNew: TAction
180 Caption = 'New'
181 ImageIndex = 16
182 OnExecute = AFileNewExecute
183 ShortCut = 16462
184 end
185 object AFileSave: TAction
186 Caption = 'Save'
187 ImageIndex = 10
188 OnExecute = AFileSaveExecute
189 ShortCut = 16467
190 end
191 object AFileClose: TAction
192 Caption = 'Close'
193 ImageIndex = 12
194 OnExecute = AFileCloseExecute
195 end
196 object AFileSaveAs: TAction
197 Caption = 'Save as...'
198 ImageIndex = 10
199 OnExecute = AFileSaveAsExecute
200 ShortCut = 24659
201 end
202 object ASettings: TAction
203 Caption = 'Settings'
204 ImageIndex = 6
205 OnExecute = ASettingsExecute
206 ShortCut = 121
207 end
208 object AShowCategories: TAction
209 Caption = 'Categories'
210 ImageIndex = 11
211 OnExecute = AShowCategoriesExecute
212 ShortCut = 116
213 end
214 object AShowAcronyms: TAction
215 Caption = 'Acronyms'
216 ImageIndex = 15
217 OnExecute = AShowAcronymsExecute
218 ShortCut = 115
219 end
220 object AShowImportSources: TAction
221 Caption = 'Import sources'
222 ImageIndex = 13
223 OnExecute = AShowImportSourcesExecute
224 ShortCut = 117
225 end
226 object AShowAbout: TAction
227 Caption = 'About'
228 ImageIndex = 7
229 OnExecute = AShowAboutExecute
230 end
231 object AShowImportFormats: TAction
232 Caption = 'Import formats'
233 ImageIndex = 14
234 OnExecute = AShowImportFormatsExecute
235 ShortCut = 118
236 end
237 object AProcessImports: TAction
238 Caption = 'Process imports'
239 ImageIndex = 5
240 OnExecute = AProcessImportsExecute
241 ShortCut = 119
242 end
243 object AExport: TAction
244 Caption = 'Export'
245 OnExecute = AExportExecute
246 end
247 end
248 object MainMenu1: TMainMenu
249 Images = Core.ImageList1
250 left = 472
251 top = 136
252 object MenuItem8: TMenuItem
253 Caption = 'File'
254 object MenuItem10: TMenuItem
255 Action = AFileNew
256 end
257 object MenuItem11: TMenuItem
258 Action = AFileOpen
259 end
260 object MenuItemOpenRecent: TMenuItem
261 Caption = 'Open recent'
262 end
263 object MenuItem12: TMenuItem
264 Action = AFileSave
265 end
266 object MenuItem13: TMenuItem
267 Action = AFileSaveAs
268 end
269 object MenuItem14: TMenuItem
270 Action = AFileClose
271 end
272 object MenuItem15: TMenuItem
273 Caption = '-'
274 end
275 object MenuItem9: TMenuItem
276 Action = AExit
277 end
278 end
279 object MenuItem20: TMenuItem
280 Caption = 'View'
281 object MenuItem22: TMenuItem
282 Action = AShowAcronyms
283 end
284 object MenuItem21: TMenuItem
285 Action = AShowCategories
286 end
287 object MenuItem4: TMenuItem
288 Action = AShowImportSources
289 end
290 object MenuItem7: TMenuItem
291 Action = AShowImportFormats
292 end
293 object MenuItem24: TMenuItem
294 Caption = '-'
295 end
296 object MenuItemToolbar: TMenuItem
297 Caption = 'Toolbar'
298 OnClick = MenuItemToolbarClick
299 end
300 end
301 object MenuItem16: TMenuItem
302 Caption = 'Tools'
303 object MenuItem17: TMenuItem
304 Action = AImport
305 end
306 object MenuItem25: TMenuItem
307 Action = AExport
308 end
309 object MenuItem23: TMenuItem
310 Action = AProcessImports
311 end
312 object MenuItem18: TMenuItem
313 Action = ASettings
314 end
315 end
316 object MenuItem5: TMenuItem
317 Caption = 'Help'
318 object MenuItem6: TMenuItem
319 Action = AShowAbout
320 end
321 end
322 end
323 object OpenDialog1: TOpenDialog
324 left = 80
325 top = 208
326 end
327 object SaveDialog1: TSaveDialog
328 left = 80
329 top = 144
330 end
331 object LastOpenedList1: TLastOpenedList
332 MaxCount = 10
333 OnChange = LastOpenedList1Change
334 left = 264
335 top = 240
336 end
337 object ListViewSort1: TListViewSort
338 ListView = ListViewAcronyms
339 OnCompareItem = ListViewSort1CompareItem
340 OnFilter = ListViewSort1Filter
341 OnColumnWidthChanged = ListViewSort1ColumnWidthChanged
342 Column = 0
343 Order = soUp
344 left = 472
345 top = 256
346 end
347 object PopupMenuOpenRecent: TPopupMenu
348 Images = Core.ImageList1
349 left = 80
350 top = 280
351 end
352end
Note: See TracBrowser for help on using the repository browser.