source: trunk/Packages/ModularSystem/Demo/UMainForm.lfm

Last change on this file was 18, checked in by chronos, 12 years ago
  • Used external packages are now stored in uncompressed form rather in zipped files. This allow better package version synchronisation.
File size: 2.3 KB
Line 
1object MainForm: TMainForm
2 Left = 283
3 Height = 316
4 Top = 182
5 Width = 649
6 Caption = 'Module test'
7 ClientHeight = 316
8 ClientWidth = 649
9 OnCreate = FormCreate
10 OnDestroy = FormDestroy
11 OnShow = FormShow
12 LCLVersion = '1.1'
13 object ListViewModules: TListView
14 Left = 8
15 Height = 265
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 = 'State'
33 Width = 80
34 end
35 item
36 Caption = 'License'
37 Width = 70
38 end
39 item
40 Caption = 'Dependencies'
41 Width = 162
42 end
43 item
44 Caption = 'Description'
45 Width = 200
46 end>
47 OwnerData = True
48 PopupMenu = PopupMenu1
49 RowSelect = True
50 TabOrder = 0
51 ViewStyle = vsReport
52 OnData = ListViewModulesData
53 OnSelectItem = ListViewModulesSelectItem
54 end
55 object ButtonInstall: TButton
56 Left = 8
57 Height = 25
58 Top = 281
59 Width = 75
60 Action = AModuleInstall
61 Anchors = [akLeft, akBottom]
62 TabOrder = 1
63 end
64 object ButtonUninstall: TButton
65 Left = 88
66 Height = 25
67 Top = 281
68 Width = 75
69 Action = AModuleUninstall
70 Anchors = [akLeft, akBottom]
71 TabOrder = 2
72 end
73 object ButtonUpdate: TButton
74 Left = 168
75 Height = 25
76 Top = 281
77 Width = 75
78 Action = AModuleUpdate
79 Anchors = [akLeft, akBottom]
80 TabOrder = 3
81 end
82 object PopupMenu1: TPopupMenu
83 left = 183
84 top = 67
85 object MenuItem1: TMenuItem
86 Action = AModuleInstall
87 end
88 object MenuItem2: TMenuItem
89 Action = AModuleUninstall
90 end
91 object MenuItem3: TMenuItem
92 Action = AModuleUpdate
93 end
94 end
95 object ActionList1: TActionList
96 left = 137
97 top = 165
98 object AModuleInstall: TAction
99 Caption = 'Install'
100 OnExecute = ButtonInstallClick
101 end
102 object AModuleUninstall: TAction
103 Caption = 'Uninstall'
104 OnExecute = ButtonUninstallClick
105 end
106 object AModuleUpdate: TAction
107 Caption = 'Update'
108 OnExecute = ButtonUpdateClick
109 end
110 end
111end
Note: See TracBrowser for help on using the repository browser.