source: trunk/Forms/FormProperties.lfm

Last change on this file was 167, checked in by chronos, 11 months ago
  • Added: Import form preparation.
File size: 4.2 KB
Line 
1object FormProperties: TFormProperties
2 Left = 675
3 Height = 908
4 Top = 266
5 Width = 1210
6 Caption = 'Contacts'
7 ClientHeight = 908
8 ClientWidth = 1210
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnShow = FormShow
12 LCLVersion = '2.2.6.0'
13 object ListView1: TListView
14 Left = 0
15 Height = 809
16 Top = 0
17 Width = 1210
18 Align = alClient
19 Columns = <
20 item
21 Caption = 'Name'
22 Width = 300
23 end
24 item
25 Caption = 'Attributes'
26 Width = 150
27 end
28 item
29 Caption = 'Values'
30 Width = 746
31 end>
32 MultiSelect = True
33 OwnerData = True
34 ParentFont = False
35 PopupMenu = PopupMenuField
36 ReadOnly = True
37 RowSelect = True
38 TabOrder = 0
39 ViewStyle = vsReport
40 OnData = ListView1Data
41 OnDblClick = ListView1DblClick
42 OnSelectItem = ListView1SelectItem
43 end
44 object ToolBar1: TToolBar
45 Left = 0
46 Height = 39
47 Top = 841
48 Width = 1210
49 Align = alBottom
50 Images = Core.ImageList1
51 ParentFont = False
52 ParentShowHint = False
53 ShowHint = True
54 TabOrder = 1
55 object ToolButton1: TToolButton
56 Left = 1
57 Top = 2
58 Action = AAdd
59 end
60 object ToolButton2: TToolButton
61 Left = 36
62 Top = 2
63 Action = AModify
64 end
65 object ToolButton3: TToolButton
66 Left = 106
67 Top = 2
68 Action = ARemove
69 end
70 object ToolButton4: TToolButton
71 Left = 71
72 Top = 2
73 Action = AClone
74 end
75 object ToolButton5: TToolButton
76 Left = 141
77 Height = 33
78 Top = 2
79 Style = tbsSeparator
80 end
81 object ToolButton6: TToolButton
82 Left = 149
83 Top = 2
84 Action = ALoadValueFromFile
85 end
86 object ToolButton7: TToolButton
87 Left = 184
88 Top = 2
89 Action = ASaveValueToFile
90 end
91 end
92 object ListViewFilter1: TListViewFilter
93 Left = 0
94 Height = 32
95 Top = 809
96 Width = 1210
97 OnChange = ListViewFilter1Change
98 Align = alBottom
99 end
100 object StatusBar1: TStatusBar
101 Left = 0
102 Height = 28
103 Top = 880
104 Width = 1210
105 Panels = <
106 item
107 Width = 50
108 end>
109 SimplePanel = False
110 end
111 object PopupMenuField: TPopupMenu
112 Images = Core.ImageList1
113 Left = 435
114 Top = 263
115 object MenuItem1: TMenuItem
116 Action = AAdd
117 end
118 object MenuItem2: TMenuItem
119 Action = AModify
120 end
121 object MenuItem5: TMenuItem
122 Action = AClone
123 end
124 object MenuItem3: TMenuItem
125 Action = ARemove
126 end
127 object MenuItem4: TMenuItem
128 Action = ASelectAll
129 end
130 object MenuItem6: TMenuItem
131 Caption = '-'
132 end
133 object MenuItem7: TMenuItem
134 Action = ALoadValueFromFile
135 end
136 object MenuItem8: TMenuItem
137 Action = ASaveValueToFile
138 end
139 end
140 object ActionList1: TActionList
141 Images = Core.ImageList1
142 Left = 732
143 Top = 257
144 object AAdd: TAction
145 Caption = 'Add'
146 ImageIndex = 9
147 OnExecute = AAddExecute
148 ShortCut = 45
149 end
150 object AModify: TAction
151 Caption = 'Modify'
152 ImageIndex = 6
153 OnExecute = AModifyExecute
154 ShortCut = 13
155 end
156 object ARemove: TAction
157 Caption = 'Remove'
158 ImageIndex = 10
159 OnExecute = ARemoveExecute
160 ShortCut = 46
161 end
162 object ASelectAll: TAction
163 Caption = 'Select all'
164 OnExecute = ASelectAllExecute
165 ShortCut = 16449
166 end
167 object AClone: TAction
168 Caption = 'Clone'
169 ImageIndex = 11
170 OnExecute = ACloneExecute
171 end
172 object ASaveValueToFile: TAction
173 Caption = 'Save value to file...'
174 ImageIndex = 7
175 OnExecute = ASaveValueToFileExecute
176 end
177 object ALoadValueFromFile: TAction
178 Caption = 'Load value from file...'
179 ImageIndex = 5
180 OnExecute = ALoadValueFromFileExecute
181 end
182 end
183 object ListViewSort1: TListViewSort
184 ListView = ListView1
185 OnCompareItem = ListViewSort1CompareItem
186 OnFilter = ListViewSort1Filter
187 OnColumnWidthChanged = ListViewSort1ColumnWidthChanged
188 Column = 0
189 Order = soNone
190 Left = 528
191 Top = 428
192 end
193 object SaveDialog1: TSaveDialog
194 Left = 760
195 Top = 448
196 end
197 object OpenDialog1: TOpenDialog
198 Left = 760
199 Top = 520
200 end
201end
Note: See TracBrowser for help on using the repository browser.