Changeset 6 for trunk/UMainForm.lfm


Ignore:
Timestamp:
Mar 6, 2011, 7:31:53 PM (14 years ago)
Author:
george
Message:
  • Added: Fullscreen mode.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UMainForm.lfm

    r4 r6  
    4747      Caption = 'Game'
    4848      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
    5550      end
    5651      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
    5962      end
    6063    end
     
    6669    top = 104
    6770  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
    6894end
Note: See TracChangeset for help on using the changeset viewer.