source: trunk/Forms/UFormMain.lfm

Last change on this file was 79, checked in by chronos, 3 years ago
  • Added: Toggle full screen mode (F11) from View main menu.
  • Modified: Updated Common package files.
File size: 1.5 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 OnMouseDown = FormMouseDown
14 OnMouseMove = FormMouseMove
15 OnMouseUp = FormMouseUp
16 OnPaint = FormPaint
17 OnShow = FormShow
18 LCLVersion = '2.0.10.0'
19 object MainMenu1: TMainMenu
20 Left = 328
21 Top = 152
22 object MenuItemGame: TMenuItem
23 Caption = 'Game'
24 object MenuItemNew: TMenuItem
25 Action = Core.ANew
26 end
27 object MenuItem2: TMenuItem
28 Action = Core.AUndo
29 end
30 object MenuItem1: TMenuItem
31 Action = Core.ASettings
32 end
33 object MenuItemExit: TMenuItem
34 Action = Core.AExit
35 end
36 end
37 object MenuItem5: TMenuItem
38 Caption = 'View'
39 object MenuItemFullScreen: TMenuItem
40 Caption = 'Full screen'
41 ShortCut = 122
42 OnClick = MenuItemFullScreenClick
43 end
44 end
45 object MenuItemTools: TMenuItem
46 Caption = 'Tools'
47 object MenuItem4: TMenuItem
48 Action = Core.AComputer
49 end
50 object MenuItemMovesHistory: TMenuItem
51 Action = Core.AHistory
52 end
53 end
54 object MenuItemHelp: TMenuItem
55 Caption = 'Help'
56 object MenuItem3: TMenuItem
57 Action = Core.AHelp
58 end
59 object MenuItemAbout: TMenuItem
60 Action = Core.AAbout
61 end
62 end
63 end
64 object TimerDraw: TTimer
65 Interval = 10
66 OnTimer = TimerDrawTimer
67 Left = 144
68 Top = 152
69 end
70end
Note: See TracBrowser for help on using the repository browser.