|
Last change
on this file was 108, checked in by chronos, 12 months ago |
- Added: Tools - Score menu action to show history of previously played games with score information.
|
|
File size:
1.9 KB
|
| Line | |
|---|
| 1 | object 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.6.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 | object MenuItemColorPalette: TMenuItem
|
|---|
| 45 | Caption = 'Color palette'
|
|---|
| 46 | end
|
|---|
| 47 | object MenuItemTileSkin: TMenuItem
|
|---|
| 48 | Caption = 'Tile skin'
|
|---|
| 49 | end
|
|---|
| 50 | end
|
|---|
| 51 | object MenuItemTools: TMenuItem
|
|---|
| 52 | Caption = 'Tools'
|
|---|
| 53 | object MenuItem1: TMenuItem
|
|---|
| 54 | Action = Core.ASettings
|
|---|
| 55 | end
|
|---|
| 56 | object MenuItem7: TMenuItem
|
|---|
| 57 | Action = Core.AScore
|
|---|
| 58 | end
|
|---|
| 59 | object MenuItemMovesHistory: TMenuItem
|
|---|
| 60 | Action = Core.AHistory
|
|---|
| 61 | end
|
|---|
| 62 | object MenuItem4: TMenuItem
|
|---|
| 63 | Action = Core.AComputer
|
|---|
| 64 | end
|
|---|
| 65 | end
|
|---|
| 66 | object MenuItemHelp: TMenuItem
|
|---|
| 67 | Caption = 'Help'
|
|---|
| 68 | object MenuItem3: TMenuItem
|
|---|
| 69 | Action = Core.AHelp
|
|---|
| 70 | end
|
|---|
| 71 | object MenuItemAbout: TMenuItem
|
|---|
| 72 | Action = Core.AAbout
|
|---|
| 73 | end
|
|---|
| 74 | end
|
|---|
| 75 | end
|
|---|
| 76 | object TimerDraw: TTimer
|
|---|
| 77 | Interval = 10
|
|---|
| 78 | OnTimer = TimerDrawTimer
|
|---|
| 79 | Left = 144
|
|---|
| 80 | Top = 152
|
|---|
| 81 | end
|
|---|
| 82 | end
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.