blob: b6d8b674607ebf31cc9768d4900afa0b842eef0a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<!DOCTYPE kpartgui SYSTEM "kpartgui.dtd">
<kpartgui name="Kiten Learn" version="3">
<MenuBar>
<Menu name="file" noMerge="1"><text>&File</text>
<Action name="file_new"/>
<Action name="file_open"/>
<Separator/>
<Action name="file_save"/>
<Action name="file_save_as"/>
<Separator/>
<Action name="file_print"/>
<Separator/>
<Action name="file_close"/>
</Menu>
<Menu name="edit">
<Action name="add" />
<Action name="addall" />
<Action name="del" />
</Menu>
<Menu name="go_web">
<Action name="grade" />
<Action name="random" />
<Action name="cheat" />
</Menu>
</MenuBar>
<ToolBar name="mainToolBar" fullWidth="true"><text>Main Toolbar</text>
<Action name="go_back" />
<Action name="go_forward" />
<Action name="random" />
<Separator />
<Action name="add" />
<Action name="del" />
<Separator />
<Action name="grade" />
</ToolBar>
</kpartgui>
|