Changeset 22 for trunk/UFormMain.lfm


Ignore:
Timestamp:
Mar 1, 2014, 5:56:14 PM (11 years ago)
Author:
chronos
Message:
  • Added: New Core unit which is responsible for non-visual functionality. FormMain will handle main form related stuff.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/UFormMain.lfm

    r20 r22  
    88  ClientWidth = 775
    99  Menu = MainMenu1
     10  OnActivate = FormActivate
    1011  OnCreate = FormCreate
    1112  OnDestroy = FormDestroy
     
    3435      Caption = 'Game'
    3536      object MenuItem2: TMenuItem
    36         Action = AGameNew
     37        Action = Core.AGameNew
    3738      end
    3839      object MenuItem3: TMenuItem
    39         Action = AGameEnd
     40        Action = Core.AGameEnd
    4041      end
    4142      object MenuItem7: TMenuItem
    42         Action = AGameRestart
     43        Action = Core.AGameRestart
    4344      end
    4445      object MenuItem4: TMenuItem
    45         Action = AGameEndTurn
     46        Action = Core.AGameEndTurn
    4647      end
    4748      object MenuItem5: TMenuItem
     
    4950      end
    5051      object MenuItem6: TMenuItem
    51         Action = AExit
     52        Action = Core.AExit
    5253      end
    53     end
    54   end
    55   object ActionList1: TActionList
    56     left = 224
    57     top = 49
    58     object AGameNew: TAction
    59       Caption = 'New'
    60       OnExecute = AGameNewExecute
    61       ShortCut = 16462
    62     end
    63     object AExit: TAction
    64       Caption = 'Exit'
    65       OnExecute = AExitExecute
    66       ShortCut = 32883
    67     end
    68     object AGameEnd: TAction
    69       Caption = 'End'
    70       OnExecute = AGameEndExecute
    71       ShortCut = 16454
    72     end
    73     object AGameEndTurn: TAction
    74       Caption = 'End turn'
    75       OnExecute = AGameEndTurnExecute
    76       ShortCut = 16468
    77     end
    78     object AGameRestart: TAction
    79       Caption = 'Restart'
    80       OnExecute = AGameRestartExecute
    81       ShortCut = 16466
    8254    end
    8355  end
Note: See TracChangeset for help on using the changeset viewer.