]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/menu/webview_navigation_menu.xml
Add a preference to control opening of intents in new tabs. https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / res / menu / webview_navigation_menu.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-2019 Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser 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 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.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <menu
22     xmlns:android="http://schemas.android.com/apk/res/android">
23
24     <item
25         android:id="@+id/close_tab"
26         android:title="@string/close_tab"
27         android:icon="@drawable/tab_enabled_light"
28         android:orderInCategory="10" />
29
30     <item
31         android:id="@+id/clear_and_exit"
32         android:title="@string/clear_and_exit"
33         android:icon="@drawable/open_with_external_app_enabled_light"
34         android:orderInCategory="20" />
35
36     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
37     <group
38         android:id="@+id/navigation_group" >
39
40         <item
41             android:id="@+id/home"
42             android:title="@string/home"
43             android:icon="@drawable/home_enabled_light"
44             android:orderInCategory="30" />
45
46         <item
47             android:id="@+id/back"
48             android:title="@string/back"
49             android:icon="@drawable/back"
50             android:orderInCategory="40" />
51
52         <item
53             android:id="@+id/forward"
54             android:title="@string/forward"
55             android:icon="@drawable/forward"
56             android:orderInCategory="50" />
57
58         <item
59             android:id="@+id/history"
60             android:title="@string/history"
61             android:icon="@drawable/history"
62             android:orderInCategory="60" />
63     </group>
64
65     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
66     <group
67         android:id="@+id/features_group" >
68
69         <item
70             android:id="@+id/requests"
71             android:title="@string/requests"
72             android:icon="@drawable/block_ads_enabled_light"
73             android:orderInCategory="70" />
74
75         <item
76             android:id="@+id/downloads"
77             android:title="@string/downloads"
78             android:icon="@drawable/downloads_light"
79             android:orderInCategory="80" />
80     </group>
81
82     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
83     <group
84         android:id="@+id/settings_group" >
85
86         <item
87             android:id="@+id/domains"
88             android:title="@string/domains"
89             android:icon="@drawable/domains"
90             android:orderInCategory="90" />
91
92         <item
93             android:id="@+id/settings"
94             android:title="@string/settings"
95             android:icon="@drawable/settings"
96             android:orderInCategory="100" />
97
98         <item
99             android:id="@+id/import_export"
100             android:title="@string/import_export"
101             android:icon="@drawable/import_export_light"
102             android:orderInCategory="110" />
103
104         <item
105             android:id="@+id/logcat"
106             android:title="@string/logcat"
107             android:icon="@drawable/bug"
108             android:orderInCategory="120" />
109     </group>
110
111     <!-- If a group has an id, a line is drawn above it in the navigation view. -->
112     <group
113         android:id="@+id/info_group" >
114
115         <item
116             android:id="@+id/guide"
117             android:title="@string/guide"
118             android:icon="@drawable/guide"
119             android:orderInCategory="130" />
120
121         <item
122             android:id="@+id/about"
123             android:title="@string/about"
124             android:icon="@drawable/about_light"
125             android:orderInCategory="140" />
126     </group>
127 </menu>