source: trunk/Packages/Common/Forms/FormList.lfm

Last change on this file was 219, checked in by chronos, 5 days ago
  • Modified: Updated Common package.
  • Modified: Remove U prefix from unit names.
  • Modified: Use Gneeric.Collections instead of fgl.
  • Modified: Do not use global form variables.
File size: 2.5 KB
Line 
1object FormList: TFormList
2 Left = 1040
3 Height = 360
4 Top = 540
5 Width = 480
6 Caption = 'List'
7 ClientHeight = 360
8 ClientWidth = 480
9 DesignTimePPI = 144
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnShow = FormShow
13 LCLVersion = '3.6.0.0'
14 object ListView1: TListView
15 Left = 0
16 Height = 322
17 Top = 0
18 Width = 480
19 Align = alClient
20 Columns = <
21 item
22 Caption = 'Name'
23 Width = 467
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 Height = 38
43 Top = 322
44 Width = 480
45 Align = alBottom
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 object ToolButton4: TToolButton
66 Left = 106
67 Top = 2
68 Action = AClone
69 end
70 end
71 object ActionList1: TActionList
72 Left = 209
73 Top = 160
74 object AAdd: TAction
75 Caption = 'Add'
76 ImageIndex = 16
77 OnExecute = AAddExecute
78 ShortCut = 45
79 end
80 object AModify: TAction
81 Caption = 'Modify'
82 ImageIndex = 6
83 OnExecute = AModifyExecute
84 ShortCut = 13
85 end
86 object ARemove: TAction
87 Caption = 'Remove'
88 ImageIndex = 18
89 OnExecute = ARemoveExecute
90 ShortCut = 46
91 end
92 object AClone: TAction
93 Caption = 'Clone'
94 ImageIndex = 17
95 OnExecute = ACloneExecute
96 end
97 object ASelectAll: TAction
98 Caption = 'Select all'
99 OnExecute = ASelectAllExecute
100 ShortCut = 16449
101 end
102 end
103 object PopupMenu1: TPopupMenu
104 Left = 353
105 Top = 160
106 object MenuItem1: TMenuItem
107 Action = AAdd
108 end
109 object MenuItem2: TMenuItem
110 Action = AModify
111 end
112 object MenuItem3: TMenuItem
113 Action = ARemove
114 end
115 object MenuItem4: TMenuItem
116 Action = AClone
117 end
118 object MenuItem5: TMenuItem
119 Action = ASelectAll
120 end
121 end
122end
Note: See TracBrowser for help on using the repository browser.