Changeset 6 for trunk/UMainForm.lfm
- Timestamp:
- Mar 6, 2011, 7:31:53 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/UMainForm.lfm
r4 r6 47 47 Caption = 'Game' 48 48 object MenuItem3: TMenuItem 49 Caption = 'New...' 50 OnClick = MenuItem3Click 51 end 52 object MenuItemShowMap: TMenuItem 53 Caption = 'Show map' 54 OnClick = MenuItemShowMapClick 49 Action = ANewGame 55 50 end 56 51 object MenuItem2: TMenuItem 57 Caption = 'Exit' 58 OnClick = MenuItem2Click 52 Action = AExit 53 end 54 end 55 object MenuItem4: TMenuItem 56 Caption = 'View' 57 object MenuItem5: TMenuItem 58 Action = AShowMap 59 end 60 object MenuItem6: TMenuItem 61 Action = AFullScreen 59 62 end 60 63 end … … 66 69 top = 104 67 70 end 71 object ActionList1: TActionList 72 left = 272 73 top = 24 74 object AFullScreen: TAction 75 Caption = 'Fullscreen mode' 76 OnExecute = AFullScreenExecute 77 ShortCut = 122 78 end 79 object AExit: TAction 80 Caption = 'Exit' 81 OnExecute = AExitExecute 82 end 83 object ANewGame: TAction 84 Caption = 'New game' 85 OnExecute = ANewGameExecute 86 ShortCut = 16462 87 end 88 object AShowMap: TAction 89 Caption = 'Show map' 90 OnExecute = AShowMapExecute 91 ShortCut = 123 92 end 93 end 68 94 end
Note:
See TracChangeset
for help on using the changeset viewer.