source: trunk/StudioModules/LDModuleProject/ULDModuleProject.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: 1.8 KB
Line 
1object DataModuleProject: TDataModuleProject
2 OnCreate = DataModuleCreate
3 OnDestroy = DataModuleDestroy
4 OldCreateOrder = False
5 Height = 328
6 HorizontalOffset = 390
7 VerticalOffset = 142
8 Width = 409
9 object ActionList1: TActionList
10 left = 208
11 top = 171
12 object ANew: TAction
13 Caption = 'New'
14 OnExecute = ANewExecute
15 end
16 object AOpen: TAction
17 Caption = 'Open...'
18 OnExecute = AOpenExecute
19 end
20 object AOpenRecent: TAction
21 Caption = 'Open recent'
22 OnExecute = AOpenRecentExecute
23 end
24 object ASave: TAction
25 Caption = 'Save'
26 OnExecute = ASaveExecute
27 end
28 object ASaveAs: TAction
29 Caption = 'Save as...'
30 OnExecute = ASaveAsExecute
31 end
32 object AClose: TAction
33 Caption = 'Close'
34 OnExecute = ACloseExecute
35 end
36 object AProjectManager: TAction
37 Caption = 'Project manager'
38 OnExecute = AProjectManagerExecute
39 end
40 end
41 object PopupMenu1: TPopupMenu
42 left = 125
43 top = 171
44 object MenuItem1: TMenuItem
45 Action = ANew
46 end
47 object MenuItem2: TMenuItem
48 Action = AOpen
49 end
50 object MenuItemOpenRecent: TMenuItem
51 Action = AOpenRecent
52 end
53 object MenuItem4: TMenuItem
54 Action = ASave
55 end
56 object MenuItem5: TMenuItem
57 Action = ASaveAs
58 end
59 object MenuItem6: TMenuItem
60 Action = AClose
61 end
62 object MenuItem7: TMenuItem
63 Caption = '-'
64 end
65 object MenuItem8: TMenuItem
66 Action = AProjectManager
67 end
68 end
69 object OpenDialog1: TOpenDialog
70 left = 125
71 top = 120
72 end
73 object SaveDialog1: TSaveDialog
74 left = 208
75 top = 120
76 end
77 object LastOpenedList1: TLastOpenedList
78 MaxCount = 10
79 OnChange = LastOpenedList1Change
80 left = 125
81 top = 64
82 end
83end
Note: See TracBrowser for help on using the repository browser.