]> gitweb.stoutner.com Git - PrivacyBrowserPC.git/blob - src/ui.rcs/browserwindowui.rc
Add a default folder icon to the edit folder dialog. https://redmine.stoutner.com...
[PrivacyBrowserPC.git] / src / ui.rcs / browserwindowui.rc
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!--
4   Copyright 2022-2023 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc>.
7
8   Privacy Browser PC is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser PC is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser PC.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <!-- Documentation at <https://techbase.kde.org/Development/Architecture/KDE4/XMLGUI_Technology>. -->
22 <!-- Better documentation at <https://invent.kde.org/frameworks/kxmlgui/-/blob/master/src/kxmlgui.xsd>. -->
23 <!-- This file interacts with the default template located at /etc/xdg/ui/ui_standards.rc, which is part of the libkf5xmlgui-data package. -->
24 <gui
25     name="privacybrowser"
26     version="1"
27     xmlns="http://www.kde.org/standards/kxmlgui/1.0"
28     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
29     xsi:schemaLocation="http://www.kde.org/standards/kxmlgui/1.0 http://www.kde.org/standards/kxmlgui/1.0/kxmlgui.xsd" >
30
31     <!-- The menu bar. -->
32     <MenuBar>
33         <!-- File. -->
34         <Menu name="file">
35             <Action name="new_tab" append="new_merge" />
36             <Action name="new_window" append="new_merge" />
37
38             <Action name="save_archive" append="save_merge" />
39         </Menu>
40
41         <!-- View. -->
42         <Menu name="view">
43             <Action name="zoom_default" append="view_zoom_merge" />
44
45             <Action name="reload_and_bypass_cache" />
46             <Action name="stop" />
47
48             <Separator />
49
50             <Action name="view_source" />
51             <Action name="view_source_in_new_tab" />
52             <Action name="developer_tools" />
53         </Menu>
54
55         <!-- On-the-fly Settings. -->
56         <Menu name="on_the_fly_settings"> <text>On-The-Fly Settings</text>
57             <Action name="javascript" />
58             <Action name="local_storage" />
59             <Action name="dom_storage" />
60
61             <Menu name="user_agent">
62                 <Action name="user_agent_privacy_browser" />
63                 <Action name="user_agent_webengine_default" />
64                 <Action name="user_agent_firefox_linux" />
65                 <Action name="user_agent_chromium_linux" />
66                 <Action name="user_agent_firefox_windows" />
67                 <Action name="user_agent_chrome_windows" />
68                 <Action name="user_agent_edge_windows" />
69                 <Action name="user_agent_safari_macos" />
70                 <Action name="user_agent_custom" />
71             </Menu>
72
73             <Action name="zoom_factor" />
74
75             <Separator />
76
77             <Menu name="search_engine">
78                 <Action name="search_engine_mojeek" />
79                 <Action name="search_engine_monocles" />
80                 <Action name="search_engine_metager" />
81                 <Action name="search_engine_google" />
82                 <Action name="search_engine_bing" />
83                 <Action name="search_engine_yahoo" />
84                 <Action name="search_engine_custom" />
85             </Menu>
86         </Menu>
87
88         <!-- Bookmarks. -->
89         <Menu name="bookmarks">
90             <Action name="view_bookmarks_toolbar" />
91
92             <Separator />
93         </Menu>
94
95         <!-- Settings. -->
96         <Menu name="settings">
97             <Action name="domain_settings" />
98             <Action name="cookies" />
99         </Menu>
100     </MenuBar>
101
102     <!-- The main toolbar is removed. -->
103     <ToolBar name="mainToolBar" deleted="true" />
104
105     <!-- The navigation toolbar. -->
106     <ToolBar name="navigation_toolbar" iconText="icononly"> <text>Navigation Toolbar</text>
107         <Action name="go_back" />
108         <Action name="go_forward" />
109         <Action name="view_redisplay" />
110         <Action name="stop" />
111         <Action name="go_home" />
112     </ToolBar>
113
114     <!-- The URL toolbar. -->
115     <ToolBar name="url_toolbar" iconText="icononly"> <text>URL Toolbar</text>
116         <Action name="javascript" />
117         <Action name="local_storage" />
118         <Action name="dom_storage" />
119         <Action name="edit_find_next" />
120         <Action name="edit_find_prev" />
121         <Action name="find_case_sensitive" />
122         <Action name="hide_find_actions" />
123     </ToolBar>
124
125     <!-- The bookmarks toolbar. The newline aspect of this doesn't currently work. -->
126     <ToolBar name="bookmarks_toolbar" iconText="icontextright" newline="true" hidden="true"> <text>Bookmarks Toolbar</text> </ToolBar>
127 </gui>