Changeset 206 for trunk/Forms


Ignore:
Timestamp:
May 21, 2018, 2:50:02 PM (6 years ago)
Author:
chronos
Message:
  • Added: New window to list all available actions with their keyboard shortcuts.
  • Fixed: Keyboard shortcuts didn't worked for FormClient docked into FormMain.
  • Fixed: Signal a turn start to first player if a game is loaded from a file.
Location:
trunk/Forms
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormClient.lfm

    r203 r206  
    11object FormClient: TFormClient
    2   Left = 662
     2  Left = 528
    33  Height = 621
    4   Top = 413
     4  Top = 280
    55  Width = 775
    66  Caption = 'Client'
    77  ClientHeight = 621
    88  ClientWidth = 775
    9   DesignTimePPI = 144
     9  DesignTimePPI = 120
    1010  OnClose = FormClose
    1111  OnCreate = FormCreate
     
    1717  object StatusBar1: TStatusBar
    1818    Left = 0
    19     Height = 30
    20     Top = 591
     19    Height = 28
     20    Top = 593
    2121    Width = 775
    2222    Panels = <   
     
    3434  object ToolBar1: TToolBar
    3535    Left = 0
    36     Height = 591
     36    Height = 593
    3737    Top = 0
    3838    Width = 32
     
    7575  object PaintBox1: TPaintBox
    7676    Left = 32
    77     Height = 591
     77    Height = 593
    7878    Top = 0
    7979    Width = 743
  • trunk/Forms/UFormClient.pas

    r205 r206  
    217217    Caption := NewCaption;
    218218    Drawing := False;
    219     AGameEndTurn.Enabled := Core.Game.Running;
    220219  end;
    221220end;
     
    299298  TimerPeriod := 0;
    300299  LastTimerTime := Now;
     300  Core.CoolTranslator1.TranslateComponentRecursive(Self);
    301301end;
    302302
  • trunk/Forms/UFormMain.lfm

    r203 r206  
    55  Width = 775
    66  Caption = 'xTactics'
    7   ClientHeight = 587
     7  ClientHeight = 596
    88  ClientWidth = 775
    9   DesignTimePPI = 144
     9  DesignTimePPI = 120
    1010  Menu = MainMenu1
    1111  OnClose = FormClose
     
    7777  object PanelMain: TPanel
    7878    Left = 0
    79     Height = 547
     79    Height = 556
    8080    Top = 40
    8181    Width = 775
     
    9292      object MenuItem2: TMenuItem
    9393        Action = Core.AGameNew
    94         Caption = 'New...'
    9594      end
    9695      object MenuItem3: TMenuItem
     
    108107      object MenuItem15: TMenuItem
    109108        Action = Core.AGameSave
    110         ShortCut = 16467
    111109      end
    112110      object MenuItem29: TMenuItem
    113111        Action = Core.AGameSaveAs
    114         Caption = 'Save as'
    115         ShortCut = 24659
    116112      end
    117113      object MenuItem5: TMenuItem
     
    177173      object MenuItem23: TMenuItem
    178174        Action = Core.AHelp
     175      end
     176      object MenuItem4: TMenuItem
     177        Action = Core.AShowKeyShortcuts
    179178      end
    180179      object MenuItem17: TMenuItem
  • trunk/Forms/UFormMain.pas

    r203 r206  
    4444    MenuItem28: TMenuItem;
    4545    MenuItem29: TMenuItem;
     46    MenuItem4: TMenuItem;
    4647    MenuItemLoadRecent: TMenuItem;
    4748    MenuItem3: TMenuItem;
Note: See TracChangeset for help on using the changeset viewer.