source: Common/Forms/FormList.lfm

Last change on this file was 583, checked in by chronos, 10 days ago
  • Added: ItemList class and forms to Common package.
File size: 2.5 KB
Line 
1object FormList: TFormList
2 Left = 1040
3 Height = 300
4 Top = 540
5 Width = 400
6 Caption = 'List'
7 ClientHeight = 300
8 ClientWidth = 400
9 DesignTimePPI = 120
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '3.6.0.0'
14 object ListView1: TListView
15 Left = 0
16 Height = 268
17 Top = 0
18 Width = 400
19 Align = alClient
20 Columns = <
21 item
22 Caption = 'Name'
23 Width = 389
24 end>
25 MultiSelect = True
26 OwnerData = True
27 ParentFont = False
28 PopupMenu = PopupMenu1
29 ReadOnly = True
30 RowSelect = True
31 TabOrder = 0
32 ViewStyle = vsReport
33 OnCustomDrawSubItem = ListView1CustomDrawSubItem
34 OnData = ListView1Data
35 OnDblClick = AModifyExecute
36 OnKeyPress = ListView1KeyPress
37 OnKeyUp = ListView1KeyUp
38 OnSelectItem = ListView1SelectItem
39 end
40 object ToolBar1: TToolBar
41 Left = 0
42 Top = 268
43 Width = 400
44 Align = alBottom
45 ParentFont = False
46 ParentShowHint = False
47 ShowHint = True
48 TabOrder = 1
49 object ToolButton1: TToolButton
50 Left = 1
51 Top = 2
52 Action = AAdd
53 end
54 object ToolButton2: TToolButton
55 Left = 30
56 Top = 2
57 Action = AModify
58 end
59 object ToolButton3: TToolButton
60 Left = 59
61 Top = 2
62 Action = ARemove
63 end
64 object ToolButton4: TToolButton
65 Left = 88
66 Top = 2
67 Action = AClone
68 end
69 end
70 object ActionList1: TActionList
71 Left = 174
72 Top = 133
73 object AAdd: TAction
74 Caption = 'Add'
75 ImageIndex = 16
76 OnExecute = AAddExecute
77 ShortCut = 45
78 end
79 object AModify: TAction
80 Caption = 'Modify'
81 ImageIndex = 6
82 OnExecute = AModifyExecute
83 ShortCut = 13
84 end
85 object ARemove: TAction
86 Caption = 'Remove'
87 ImageIndex = 18
88 OnExecute = ARemoveExecute
89 ShortCut = 46
90 end
91 object AClone: TAction
92 Caption = 'Clone'
93 ImageIndex = 17
94 OnExecute = ACloneExecute
95 end
96 object ASelectAll: TAction
97 Caption = 'Select all'
98 OnExecute = ASelectAllExecute
99 ShortCut = 16449
100 end
101 end
102 object PopupMenu1: TPopupMenu
103 Left = 294
104 Top = 133
105 object MenuItem1: TMenuItem
106 Action = AAdd
107 end
108 object MenuItem2: TMenuItem
109 Action = AModify
110 end
111 object MenuItem3: TMenuItem
112 Action = ARemove
113 end
114 object MenuItem4: TMenuItem
115 Action = AClone
116 end
117 object MenuItem5: TMenuItem
118 Action = ASelectAll
119 end
120 end
121end
Note: See TracBrowser for help on using the repository browser.