close Warning: Can't synchronize with repository "(default)" (No changeset 184 in the repository). Look in the Trac log for more information.

source: branches/delphi/UCore.dfm

Last change on this file was 44, checked in by chronos, 10 years ago
  • Added: Test Delphi conversion.
File size: 1.9 KB
Line 
1object Core: TCore
2 OldCreateOrder = False
3 OnCreate = DataModuleCreate
4 OnDestroy = DataModuleDestroy
5 Height = 542
6 Width = 752
7 object ActionList1: TActionList
8 Images = ImageListSmall
9 Left = 252
10 Top = 72
11 object AGameNew: TAction
12 Caption = 'New'
13 Hint = 'New game'
14 ImageIndex = 5
15 ShortCut = 16462
16 OnExecute = AGameNewExecute
17 end
18 object AExit: TAction
19 Caption = 'Exit'
20 Hint = 'Exit application'
21 ImageIndex = 1
22 ShortCut = 32883
23 OnExecute = AExitExecute
24 end
25 object AGameEnd: TAction
26 Caption = 'End'
27 Hint = 'End game'
28 ImageIndex = 4
29 ShortCut = 16454
30 OnExecute = AGameEndExecute
31 end
32 object AGameEndTurn: TAction
33 Caption = 'End turn'
34 Hint = 'End player turn'
35 ImageIndex = 0
36 ShortCut = 16468
37 OnExecute = AGameEndTurnExecute
38 end
39 object AGameRestart: TAction
40 Caption = 'Restart'
41 Hint = 'Restart game'
42 ImageIndex = 3
43 ShortCut = 16466
44 OnExecute = AGameRestartExecute
45 end
46 object ASettings: TAction
47 Caption = 'Settings'
48 Hint = 'Application settings'
49 ImageIndex = 6
50 ShortCut = 120
51 OnExecute = ASettingsExecute
52 end
53 object AGameSave: TAction
54 Caption = 'Save'
55 ShortCut = 16467
56 OnExecute = AGameSaveExecute
57 end
58 object AGameLoad: TAction
59 Caption = 'Load'
60 ShortCut = 16463
61 OnExecute = AGameLoadExecute
62 end
63 end
64 object ImageListSmall: TImageList
65 Left = 248
66 Top = 152
67 end
68 object ImageListLarge: TImageList
69 Height = 32
70 Width = 32
71 Left = 419
72 Top = 153
73 end
74 object OpenDialog1: TOpenDialog
75 DefaultExt = '.xtmap'
76 Left = 600
77 Top = 155
78 end
79 object SaveDialog1: TSaveDialog
80 DefaultExt = '.xtmap'
81 Left = 600
82 Top = 88
83 end
84end
Note: See TracBrowser for help on using the repository browser.