source: tags/1.2.0/Forms/UFormMain.lfm

Last change on this file was 36, checked in by chronos, 5 years ago
  • Fixed: Missing UFormHistory files.
  • Added: Allow to disable moves history recording.
File size: 1.3 KB
Line 
1object FormMain: TFormMain
2 Left = 684
3 Height = 521
4 Top = 307
5 Width = 580
6 Caption = '2048'
7 DesignTimePPI = 144
8 Menu = MainMenu1
9 OnClose = FormClose
10 OnCreate = FormCreate
11 OnDestroy = FormDestroy
12 OnKeyUp = FormKeyUp
13 OnPaint = FormPaint
14 OnShow = FormShow
15 LCLVersion = '2.0.2.0'
16 object MainMenu1: TMainMenu
17 left = 325
18 top = 152
19 object MenuItemGame: TMenuItem
20 Caption = 'Game'
21 object MenuItemNew: TMenuItem
22 Action = Core.ANew
23 end
24 object MenuItem2: TMenuItem
25 Action = Core.AUndo
26 end
27 object MenuItem1: TMenuItem
28 Action = Core.ASettings
29 end
30 object MenuItemExit: TMenuItem
31 Action = Core.AExit
32 end
33 end
34 object MenuItemTools: TMenuItem
35 Caption = 'Tools'
36 object MenuItem4: TMenuItem
37 Action = Core.AComputer
38 end
39 object MenuItemMovesHistory: TMenuItem
40 Action = Core.AHistory
41 end
42 end
43 object MenuItemHelp: TMenuItem
44 Caption = 'Help'
45 object MenuItem3: TMenuItem
46 Action = Core.AHelp
47 end
48 object MenuItemAbout: TMenuItem
49 Action = Core.AAbout
50 end
51 end
52 end
53 object TimerDraw: TTimer
54 Interval = 20
55 OnTimer = TimerDrawTimer
56 left = 138
57 top = 152
58 end
59end
Note: See TracBrowser for help on using the repository browser.