source: trunk/Forms/FormMain.lfm

Last change on this file was 91, checked in by chronos, 3 months ago
  • Added: Flatpak build files.
  • Added: Game menu restart action to start a new game without showing options dialog.
  • Fixed: Fullscreen error after another window was opened.
File size: 1.6 KB
Line 
1object FormMain: TFormMain
2 Left = 534
3 Height = 993
4 Top = 223
5 Width = 1491
6 Caption = '2048'
7 DesignTimePPI = 144
8 Menu = MainMenu1
9 OnActivate = FormActivate
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 = '3.4.0.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 MenuItem6: TMenuItem
28 Action = Core.ARestart
29 end
30 object MenuItem2: TMenuItem
31 Action = Core.AUndo
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 MenuItem1: TMenuItem
48 Action = Core.ASettings
49 end
50 object MenuItem4: TMenuItem
51 Action = Core.AComputer
52 end
53 object MenuItemMovesHistory: TMenuItem
54 Action = Core.AHistory
55 end
56 end
57 object MenuItemHelp: TMenuItem
58 Caption = 'Help'
59 object MenuItem3: TMenuItem
60 Action = Core.AHelp
61 end
62 object MenuItemAbout: TMenuItem
63 Action = Core.AAbout
64 end
65 end
66 end
67 object TimerDraw: TTimer
68 Interval = 10
69 OnTimer = TimerDrawTimer
70 Left = 144
71 Top = 152
72 end
73end
Note: See TracBrowser for help on using the repository browser.