source: ModularSystem/Demo/UMainForm.lfm

Last change on this file was 429, checked in by chronos, 12 years ago
File size: 3.2 KB
Line 
1object MainForm: TMainForm
2 Left = 217
3 Height = 308
4 Top = 177
5 Width = 649
6 Caption = 'Module test'
7 ClientHeight = 308
8 ClientWidth = 649
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '1.0.1.3'
13 object ListViewModules: TListView
14 Left = 8
15 Height = 257
16 Top = 8
17 Width = 632
18 Anchors = [akTop, akLeft, akRight, akBottom]
19 Columns = <
20 item
21 Caption = 'Name'
22 Width = 70
23 end
24 item
25 Caption = 'System name'
26 Width = 70
27 end
28 item
29 Caption = 'Version'
30 end
31 item
32 Caption = 'Installed'
33 Width = 80
34 end
35 item
36 Caption = 'Running'
37 Width = 80
38 end
39 item
40 Caption = 'License'
41 Width = 70
42 end
43 item
44 Caption = 'Dependencies'
45 Width = 162
46 end
47 item
48 Caption = 'Description'
49 Width = 200
50 end>
51 OwnerData = True
52 PopupMenu = PopupMenu1
53 ReadOnly = True
54 RowSelect = True
55 TabOrder = 0
56 ViewStyle = vsReport
57 OnData = ListViewModulesData
58 OnSelectItem = ListViewModulesSelectItem
59 end
60 object ButtonInstall: TButton
61 Left = 8
62 Height = 25
63 Top = 273
64 Width = 75
65 Action = AModuleInstall
66 Anchors = [akLeft, akBottom]
67 TabOrder = 1
68 end
69 object ButtonUninstall: TButton
70 Left = 88
71 Height = 25
72 Top = 273
73 Width = 75
74 Action = AModuleUninstall
75 Anchors = [akLeft, akBottom]
76 TabOrder = 2
77 end
78 object ButtonUpdate: TButton
79 Left = 168
80 Height = 25
81 Top = 273
82 Width = 75
83 Action = AModuleUpdate
84 Anchors = [akLeft, akBottom]
85 TabOrder = 3
86 end
87 object ButtonUpdate1: TButton
88 Left = 248
89 Height = 25
90 Top = 273
91 Width = 75
92 Action = AModuleStart
93 Anchors = [akLeft, akBottom]
94 TabOrder = 4
95 end
96 object ButtonUpdate2: TButton
97 Left = 328
98 Height = 25
99 Top = 273
100 Width = 75
101 Action = AModuleStop
102 Anchors = [akLeft, akBottom]
103 TabOrder = 5
104 end
105 object PopupMenu1: TPopupMenu
106 left = 183
107 top = 67
108 object MenuItem1: TMenuItem
109 Action = AModuleInstall
110 end
111 object MenuItem2: TMenuItem
112 Action = AModuleUninstall
113 end
114 object MenuItem3: TMenuItem
115 Action = AModuleUpdate
116 end
117 object MenuItem4: TMenuItem
118 Action = AModuleStart
119 end
120 object MenuItem5: TMenuItem
121 Action = AModuleStop
122 end
123 end
124 object ActionList1: TActionList
125 left = 184
126 top = 136
127 object AModuleInstall: TAction
128 Caption = 'Install'
129 OnExecute = ButtonInstallClick
130 end
131 object AModuleUninstall: TAction
132 Caption = 'Uninstall'
133 OnExecute = ButtonUninstallClick
134 end
135 object AModuleUpdate: TAction
136 Caption = 'Update'
137 OnExecute = ButtonUpdateClick
138 end
139 object AModuleStart: TAction
140 Caption = 'Start'
141 OnExecute = AModuleStartExecute
142 end
143 object AModuleStop: TAction
144 Caption = 'Stop'
145 OnExecute = AModuleStopExecute
146 end
147 end
148 object ModuleManager: TModuleManager
149 left = 296
150 top = 72
151 end
152end
Note: See TracBrowser for help on using the repository browser.