Changeset 100 for trunk/Forms
- Timestamp:
- Dec 26, 2014, 8:10:40 PM (10 years ago)
- Location:
- trunk/Forms
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormMain.lfm
r97 r100 5 5 Width = 775 6 6 Caption = 'xTactics' 7 ClientHeight = 59 27 ClientHeight = 595 8 8 ClientWidth = 775 9 9 Menu = MainMenu1 … … 18 18 object StatusBar1: TStatusBar 19 19 Left = 0 20 Height = 2 921 Top = 56 320 Height = 26 21 Top = 569 22 22 Width = 775 23 23 Panels = < … … 35 35 object ToolBar1: TToolBar 36 36 Left = 0 37 Height = 56 337 Height = 569 38 38 Top = 0 39 39 Width = 40 … … 73 73 object ToolButton6: TToolButton 74 74 Left = 1 75 Top = 1 7275 Top = 194 76 76 Action = AZoomIn 77 77 end 78 78 object ToolButton7: TToolButton 79 79 Left = 1 80 Top = 2 0480 Top = 226 81 81 Action = AZoomOut 82 82 end 83 83 object ToolButton8: TToolButton 84 84 Left = 1 85 Top = 2 3685 Top = 258 86 86 Action = AZoomAll 87 87 end 88 88 object ToolButton9: TToolButton 89 89 Left = 1 90 Height = 32 90 91 Top = 162 91 92 Width = 32 … … 94 95 object ToolButton10: TToolButton 95 96 Left = 1 96 Top = 268 97 Height = 32 98 Top = 290 97 99 Width = 32 98 100 Style = tbsSeparator … … 100 102 object ToolButton11: TToolButton 101 103 Left = 1 102 Top = 278104 Top = 322 103 105 Action = Core.AGameLoad 104 106 end 105 107 object ToolButton12: TToolButton 106 108 Left = 1 107 Top = 3 10109 Top = 354 108 110 Action = Core.AGameSave 109 111 end 110 112 object ToolButton13: TToolButton 111 113 Left = 1 112 Top = 3 42114 Top = 386 113 115 Action = Core.AExit 114 116 end … … 116 118 object PaintBox1: TPaintBox 117 119 Left = 40 118 Height = 56 3120 Height = 569 119 121 Top = 0 120 122 Width = 735 121 123 Align = alClient 122 124 OnMouseDown = PaintBox1MouseDown 125 OnMouseLeave = PaintBox1MouseLeave 123 126 OnMouseMove = PaintBox1MouseMove 124 127 OnMouseUp = PaintBox1MouseUp 125 OnMouseLeave = PaintBox1MouseLeave126 128 OnMouseWheelDown = PaintBox1MouseWheelDown 127 129 OnMouseWheelUp = PaintBox1MouseWheelUp -
trunk/Forms/UFormMain.pas
r97 r100 171 171 PaintBox1.Repaint; 172 172 StatusBar1.Panels[1].Text := IntToStr(Trunc(DrawDuration / OneMillisecond)) + ' / ' + 173 IntToStr(Trunc(TimerPeriod / OneMillisecond)) + ' ms'; 173 IntToStr(Trunc(TimerPeriod / OneMillisecond)) + ' ms' + 174 ' ' + IntToStr(Core.Game.Map.CellLinks.Count); 174 175 NewCaption := 'xTactics'; 175 176 if Assigned(Core.Game.CurrentPlayer) then -
trunk/Forms/UFormNew.lfm
r98 r100 49 49 object ListView1: TListView 50 50 Left = 4 51 Height = 36 451 Height = 367 52 52 Top = 4 53 53 Width = 1207 … … 88 88 Left = 224 89 89 Height = 25 90 Top = 37 690 Top = 379 91 91 Width = 83 92 92 Action = APlayerRemove … … 97 97 Left = 16 98 98 Height = 25 99 Top = 37 699 Top = 379 100 100 Width = 83 101 101 Action = APlayerAdd … … 106 106 Left = 120 107 107 Height = 25 108 Top = 37 6108 Top = 379 109 109 Width = 83 110 110 Action = APlayerModify … … 330 330 Caption = 'Image file:' 331 331 ParentColor = False 332 end 333 object CheckBoxBridges: TCheckBox 334 Left = 8 335 Height = 24 336 Top = 310 337 Width = 204 338 Caption = 'Bridges between cells' 339 TabOrder = 14 332 340 end 333 341 end … … 361 369 object Label6: TLabel 362 370 Left = 8 363 Height = 2 5371 Height = 22 364 372 Top = 248 365 Width = 1 29373 Width = 116 366 374 Caption = 'Win objective:' 367 375 ParentColor = False … … 369 377 object ComboBoxWinObjective: TComboBox 370 378 Left = 232 371 Height = 3 3379 Height = 30 372 380 Top = 240 373 381 Width = 328 -
trunk/Forms/UFormNew.lrt
r82 r100 21 21 TFORMNEW.BUTTONIMAGEBROWSE.CAPTION=Browse 22 22 TFORMNEW.LABEL9.CAPTION=Image file: 23 TFORMNEW.CHECKBOXBRIDGES.CAPTION=Bridges between cells 23 24 TFORMNEW.TABSHEET3.CAPTION=Rules 24 25 TFORMNEW.RADIOGROUPGROWCELLS.CAPTION=Growing cells -
trunk/Forms/UFormNew.pas
r91 r100 24 24 ButtonPlayerModify: TButton; 25 25 ButtonPlayerRemove: TButton; 26 CheckBoxBridges: TCheckBox; 26 27 CheckBoxFogOfWar: TCheckBox; 27 28 CheckBoxCity: TCheckBox; … … 354 355 EditImageFile.Text := Game.MapImageFileName; 355 356 CheckBoxFogOfWar.Checked := Game.FogOfWar; 357 CheckBoxBridges.Checked := Game.BridgeEnabled; 356 358 end; 357 359 … … 383 385 Game.MapImageFileName := EditImageFile.Text; 384 386 Game.FogOfWar := CheckBoxFogOfWar.Checked; 387 Game.BridgeEnabled := CheckBoxBridges.Checked; 385 388 end; 386 389
Note:
See TracChangeset
for help on using the changeset viewer.