source: trunk/Forms/FormImportFormats.lfm

Last change on this file was 230, checked in by chronos, 5 months ago
  • Modified: Fixed Import sources modification.
  • Modified: Catogires don't have direct object references to import sources and acronym meanings.
  • Modified: Updated acronyms example file.
File size: 2.2 KB
Line 
1object FormImportFormats: TFormImportFormats
2 Left = 473
3 Height = 622
4 Top = 327
5 Width = 887
6 Caption = 'Import formats'
7 ClientHeight = 622
8 ClientWidth = 887
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 Position = poScreenCenter
13 LCLVersion = '3.6.0.0'
14 object ListView1: TListView
15 Left = 6
16 Height = 577
17 Top = 6
18 Width = 875
19 Align = alClient
20 BorderSpacing.Around = 6
21 Columns = <
22 item
23 Caption = 'Name'
24 Width = 860
25 end>
26 MultiSelect = True
27 OwnerData = True
28 ParentFont = False
29 PopupMenu = PopupMenuImportSource
30 ReadOnly = True
31 RowSelect = True
32 TabOrder = 0
33 ViewStyle = vsReport
34 OnData = ListView1Data
35 OnDblClick = ListView1DblClick
36 OnKeyPress = ListView1KeyPress
37 OnSelectItem = ListView1SelectItem
38 end
39 object ToolBar1: TToolBar
40 Left = 0
41 Height = 33
42 Top = 589
43 Width = 887
44 Align = alBottom
45 Images = Core.ImageListSmall
46 ParentFont = False
47 ParentShowHint = False
48 ShowHint = True
49 TabOrder = 1
50 object ToolButton1: TToolButton
51 Left = 1
52 Top = 2
53 Action = AAdd
54 end
55 object ToolButton2: TToolButton
56 Left = 36
57 Top = 2
58 Action = AModify
59 end
60 object ToolButton3: TToolButton
61 Left = 71
62 Top = 2
63 Action = ARemove
64 end
65 end
66 object ActionList1: TActionList
67 Images = Core.ImageListSmall
68 Left = 612
69 Top = 336
70 object AAdd: TAction
71 Caption = 'Add'
72 ImageIndex = 0
73 OnExecute = AAddExecute
74 ShortCut = 45
75 end
76 object ARemove: TAction
77 Caption = 'Remove'
78 ImageIndex = 4
79 OnExecute = ARemoveExecute
80 ShortCut = 46
81 end
82 object AModify: TAction
83 Caption = 'Modify'
84 ImageIndex = 3
85 OnExecute = AModifyExecute
86 ShortCut = 13
87 end
88 end
89 object PopupMenuImportSource: TPopupMenu
90 Images = Core.ImageListSmall
91 Left = 221
92 Top = 330
93 object MenuItem1: TMenuItem
94 Action = AAdd
95 end
96 object MenuItem2: TMenuItem
97 Action = AModify
98 end
99 object MenuItem3: TMenuItem
100 Action = ARemove
101 end
102 end
103end
Note: See TracBrowser for help on using the repository browser.