source: trunk/Forms/UFormKeyShortcuts.lfm@ 228

Last change on this file since 228 was 206, checked in by chronos, 7 years ago
  • 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.
File size: 1.0 KB
Line 
1object FormKeyShortcuts: TFormKeyShortcuts
2 Left = 528
3 Height = 437
4 Top = 303
5 Width = 527
6 Caption = 'Key shortcuts'
7 ClientHeight = 437
8 ClientWidth = 527
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnShow = FormShow
13 LCLVersion = '1.8.2.0'
14 object ListView1: TListView
15 Left = 4
16 Height = 429
17 Top = 4
18 Width = 519
19 Align = alClient
20 BorderSpacing.Around = 4
21 Columns = <
22 item
23 Caption = 'Action'
24 Width = 200
25 end
26 item
27 Caption = 'Window'
28 Width = 200
29 end
30 item
31 Caption = 'Shortcut'
32 Width = 80
33 end>
34 LargeImages = Core.ImageListLarge
35 PopupMenu = PopupMenu1
36 ReadOnly = True
37 RowSelect = True
38 SmallImages = Core.ImageListSmall
39 TabOrder = 0
40 ViewStyle = vsReport
41 end
42 object PopupMenu1: TPopupMenu
43 left = 299
44 top = 187
45 object MenuItem1: TMenuItem
46 Caption = 'Execute'
47 OnClick = MenuItem1Click
48 end
49 end
50end
Note: See TracBrowser for help on using the repository browser.