blob: 4598f097a18ce2a303a5a29fa8e1cf9364ab7d54 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
<?xml version="1.0"?>
<!DOCTYPE gui SYSTEM "kpartgui.dtd">
<gui name="rekonq" version="39">
<MenuBar>
<!-- ============ FILE menu =========== -->
<Menu name="file" noMerge="1"><text>&File</text>
<Action name="file_open" />
<Action name="open_location" />
<Separator/>
<Action name="new_tab" />
<Action name="close_tab" />
<Separator/>
<Action name="file_save_as" />
<Separator/>
<Action name="file_print_preview" />
<Action name="file_print" />
<Separator/>
<Action name="file_quit" />
</Menu>
<!-- ============ EDIT menu =========== -->
<Menu name="edit" noMerge="1"><text>&Edit</text>
<Action name="edit_undo" />
<Action name="edit_redo" />
<Separator/>
<Action name="edit_cut" />
<Action name="edit_copy" />
<Action name="edit_paste" />
<Separator/>
<Action name="edit_find" />
<Action name="edit_find_next" />
<Action name="edit_find_prev" />
</Menu>
<!-- ============ VIEW menu =========== -->
<Menu name="view" noMerge="1"><text>&View</text>
<Action name="stop_reload" />
<Action name="go_home" />
<Separator/>
<Action name="bigger_font" />
<Action name="normal_font" />
<Action name="smaller_font" />
<Separator/>
<Action name="page_source" />
</Menu>
<!-- ============ GO menu =========== -->
<Menu name="go" deleted="true">
</Menu>
<!-- ============ BOOKMARKS menu =========== -->
<Action name="bookmarks" ><text>&Bookmarks</text>
</Action>
<!-- ============ TOOLS menu =========== -->
<Menu name="tools" noMerge="1"><text>&Tools</text>
<Action name="web_inspector" />
<Action name="private_browsing" />
</Menu>
<!-- ============ SETTINGS menu =========== -->
<Menu name="settings" noMerge="1"><text>&Settings</text>
<Action name="options_show_menubar" />
<Action name="options_show_statusbar" />
<Merge name="StandardToolBarMenuHandler" />
<Merge/>
<Menu name="side_panels"><text>Side &Panels</text>
<Action name="show_history_panel" />
</Menu>
<Separator/>
<Action name="fullscreen" />
<Separator/>
<Action name="options_configure_keybinding" />
<Action name="options_configure_toolbars" />
<Action name="options_configure" />
</Menu>
</MenuBar>
<!-- ============ Main ToolBar =========== -->
<ToolBar name="mainToolBar" position="top" iconText="iconOnly" newline="true" noMerge="1">
<text>Main Toolbar</text>
<Action name="history_back" />
<Action name="history_forward" />
<Action name="stop_reload" />
<Action name="go_home" />
<Action name="new_tab" />
</ToolBar>
<!-- ============ Location ToolBar =========== -->
<ToolBar name="locationToolBar" iconText="iconOnly" newline="false" noEdit="true">
<text>Location Toolbar</text>
<Action name="url_bar" />
<Action name="search_bar" />
</ToolBar>
<!-- ============ Bookmarks ToolBar =========== -->
<ToolBar name="bookmarksToolBar" fullWidth="true" iconText="icontextright" iconSize="16" newline="true" hidden="true" noEdit="true">
<text>Bookmark Toolbar</text>
<Action noEdit="true" name="bookmarks_bar" />
</ToolBar>
</gui>
|