close Warning: Can't synchronize with repository "(default)" (No changeset 184 in the repository). Look in the Trac log for more information.

source: trunk/Forms/UFormClient.lfm

Last change on this file was 180, checked in by chronos, 6 years ago
  • Modified: Client related interface moved from FormMain to FormClient. This code change will later allow to implement network client-server gameplay.
  • Added: Allow to open other spectator client windows.
File size: 2.9 KB
Line 
1object FormClient: TFormClient
2 Left = 418
3 Height = 621
4 Top = 253
5 Width = 775
6 Caption = 'Client'
7 ClientHeight = 621
8 ClientWidth = 775
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnDestroy = FormDestroy
13 OnKeyUp = FormKeyUp
14 OnShow = FormShow
15 LCLVersion = '1.8.0.6'
16 WindowState = wsMaximized
17 object StatusBar1: TStatusBar
18 Left = 0
19 Height = 28
20 Top = 593
21 Width = 775
22 Panels = <
23 item
24 Width = 200
25 end
26 item
27 Width = 150
28 end
29 item
30 Width = 100
31 end>
32 SimplePanel = False
33 end
34 object ToolBar1: TToolBar
35 Left = 0
36 Height = 593
37 Top = 0
38 Width = 32
39 Align = alLeft
40 ButtonHeight = 32
41 ButtonWidth = 32
42 Images = Core.ImageListSmall
43 ParentShowHint = False
44 PopupMenu = PopupMenuToolbar
45 ShowHint = True
46 TabOrder = 1
47 object ToolButton2: TToolButton
48 Left = 1
49 Top = 2
50 Action = Core.AGameEndTurn
51 end
52 object ToolButton6: TToolButton
53 Left = 1
54 Top = 39
55 Action = AZoomIn
56 end
57 object ToolButton7: TToolButton
58 Left = 1
59 Top = 71
60 Action = AZoomOut
61 end
62 object ToolButton8: TToolButton
63 Left = 1
64 Top = 103
65 Action = AZoomAll
66 end
67 object ToolButton9: TToolButton
68 Left = 1
69 Top = 34
70 Width = 32
71 AutoSize = True
72 Style = tbsDivider
73 end
74 end
75 object PaintBox1: TPaintBox
76 Left = 32
77 Height = 593
78 Top = 0
79 Width = 743
80 Align = alClient
81 OnMouseDown = PaintBox1MouseDown
82 OnMouseLeave = PaintBox1MouseLeave
83 OnMouseMove = PaintBox1MouseMove
84 OnMouseUp = PaintBox1MouseUp
85 OnMouseWheelDown = PaintBox1MouseWheelDown
86 OnMouseWheelUp = PaintBox1MouseWheelUp
87 OnPaint = PaintBox1Paint
88 OnResize = PaintBox1Resize
89 end
90 object Timer1: TTimer
91 Interval = 20
92 OnTimer = Timer1Timer
93 left = 160
94 top = 160
95 end
96 object ActionList1: TActionList
97 Images = Core.ImageListSmall
98 left = 280
99 top = 152
100 object AZoomIn: TAction
101 Caption = 'Zoom in'
102 ImageIndex = 8
103 OnExecute = AZoomInExecute
104 ShortCut = 16491
105 end
106 object AZoomOut: TAction
107 Caption = 'Zoom out'
108 ImageIndex = 9
109 OnExecute = AZoomOutExecute
110 ShortCut = 16493
111 end
112 object AZoomAll: TAction
113 Caption = 'Zoom all'
114 ImageIndex = 7
115 OnExecute = AZoomAllExecute
116 ShortCut = 16449
117 end
118 object AToolBarBigIcons: TAction
119 Caption = 'Toolbar big icons'
120 OnExecute = AToolBarBigIconsExecute
121 end
122 object AToolBarVisible: TAction
123 Caption = 'Toolbar visible'
124 OnExecute = AToolBarVisibleExecute
125 end
126 object AStatusBarVisible: TAction
127 Caption = 'Statusbar visible'
128 OnExecute = AStatusBarVisibleExecute
129 end
130 end
131 object PopupMenuToolbar: TPopupMenu
132 left = 452
133 top = 98
134 object MenuItem18: TMenuItem
135 Action = AToolBarBigIcons
136 end
137 end
138end
Note: See TracBrowser for help on using the repository browser.