source: platform/trunk/LDPlatform.Core.dfm

Last change on this file was 11, checked in by chronos, 10 years ago
  • Added: Some new concept forms and actions.
File size: 1.5 KB
Line 
1object Core: TCore
2 OldCreateOrder = False
3 OnCreate = DataModuleCreate
4 OnDestroy = DataModuleDestroy
5 Height = 526
6 Width = 625
7 object ActionList1: TActionList
8 Images = ImageList1
9 Left = 320
10 Top = 144
11 object AOptions: TAction
12 Caption = '&Options'
13 OnExecute = AOptionsExecute
14 end
15 object AQuit: TAction
16 Caption = '&Quit'
17 OnExecute = AQuitExecute
18 end
19 object AFileOpen: TAction
20 Caption = '&Open...'
21 ShortCut = 16463
22 OnExecute = AFileOpenExecute
23 end
24 object AFileClose: TAction
25 Caption = 'Close'
26 end
27 object AFileSave: TAction
28 Caption = 'Save'
29 ShortCut = 16467
30 OnExecute = AFileSaveExecute
31 end
32 object AFileSaveAs: TAction
33 Caption = 'Save as...'
34 OnExecute = AFileSaveAsExecute
35 end
36 object ANew: TAction
37 Caption = 'Other...'
38 OnExecute = ANewExecute
39 end
40 object AFileCloseAll: TAction
41 Caption = 'Close all'
42 end
43 object AFileSaveAll: TAction
44 Caption = 'Save all'
45 end
46 object AHelpAbout: TAction
47 Caption = 'About'
48 end
49 end
50 object ImageList1: TImageList
51 Left = 224
52 Top = 144
53 end
54 object OpenDialog1: TOpenDialog
55 Filter =
56 'Delphi project (.dpr)|*.dpr|Delphi source (.pas)|*.pas|Delphi pa' +
57 'ckage (.dpk)|*.dpk|Any file|*.*'
58 Left = 432
59 Top = 312
60 end
61 object SaveDialog1: TSaveDialog
62 Left = 352
63 Top = 312
64 end
65end
Note: See TracBrowser for help on using the repository browser.