1<?xml version="1.0" encoding="UTF-8"?>
2<gui name="knights"
3     version="2"
4     xmlns="http://www.kde.org/standards/kxmlgui/1.0"
5     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
6     xsi:schemaLocation="http://www.kde.org/standards/kxmlgui/1.0
7                         http://www.kde.org/standards/kxmlgui/1.0/kxmlgui.xsd" >
8
9  <MenuBar>
10    <Menu name="game">
11      <Action name="game_new" />
12      <Action name="game_pause" />
13      <Action name="propose_draw" />
14      <Action name="resign" />
15      <Action name="adjourn" />
16      <Action name="abort" />
17	  <Separator/>
18      <Action name="quit" />
19    </Menu>
20
21    <Menu name="move">
22      <text>Move</text>
23      <Action name="move_undo" />
24      <Action name="move_redo" />
25    </Menu>
26
27    <Menu name="settings">
28      <Action name="show_history" />
29      <Action name="show_clock" />
30      <Action name="show_chat" />
31      <Action name="show_console_black" />
32      <Action name="show_console_white" />
33    </Menu>
34
35  </MenuBar>
36
37  <ToolBar name="mainToolBar" >
38    <text>Main Toolbar</text>
39    <Action name="game_new" />
40    <Action name="game_load" />
41    <Action name="game_save" />
42  </ToolBar>
43
44  <ToolBar name="actionsToolbar" >
45    <text>Game Actions Toolbar</text>
46    <Action name="move_undo" />
47    <Action name="move_redo" />
48	<Separator/>
49    <Action name="game_pause" />
50    <Action name="propose_draw" />
51    <Action name="resign" />
52    <Action name="adjourn" />
53	<Separator/>
54    <Action name="abort" />
55  </ToolBar>
56
57  <ToolBar name="dockToolBar" >
58    <text>Dockable Windows Toolbar</text>
59    <Action name="show_history" />
60    <Action name="show_clock" />
61    <Action name="show_chat" />
62    <Action name="show_console_black" />
63    <Action name="show_console_white" />
64  </ToolBar>
65
66</gui>
67