source: tags/1.3.0/Forms/UFormProperties.lfm

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