]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/res/xml/preferences.xml
Add controls for displaying webpage images. Implements https://redmine.stoutner...
[PrivacyBrowserAndroid.git] / app / src / main / res / xml / preferences.xml
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <!--
4   Copyright © 2016-2017 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 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
22     <PreferenceCategory
23         android:key="privacy"
24         android:title="@string/privacy" >
25
26         <SwitchPreference
27             android:key="javascript_enabled"
28             android:title="@string/javascript_preference"
29             android:summary="@string/javascript_preference_summary"
30             android:defaultValue="false" />
31
32         <SwitchPreference
33             android:key="first_party_cookies_enabled"
34             android:title="@string/first_party_cookies_preference"
35             android:summary="@string/first_party_cookies_preference_summary"
36             android:defaultValue="false" />
37
38         <SwitchPreference
39             android:key="third_party_cookies_enabled"
40             android:title="@string/third_party_cookies_preference"
41             android:summary="@string/third_party_cookies_summary"
42             android:defaultValue="false" />
43
44         <SwitchPreference
45             android:key="dom_storage_enabled"
46             android:title="@string/dom_storage_preference"
47             android:summary="@string/dom_storage_preference_summary"
48             android:defaultValue="false" />
49
50         <SwitchPreference
51             android:key="save_form_data_enabled"
52             android:title="@string/save_form_data_preference"
53             android:summary="@string/save_form_data_preference_summary"
54             android:defaultValue="false" />
55
56         <ListPreference
57             android:key="user_agent"
58             android:title="@string/user_agent"
59             android:entries="@array/user_agent_entries"
60             android:entryValues="@array/user_agent_entry_values"
61             android:defaultValue="PrivacyBrowser/1.0"
62             android:icon="@drawable/user_agent" />
63
64         <!-- android:inputType="textVisiblePassword" sets the keyboard to have a dedicated number row.-->
65         <EditTextPreference
66             android:key="custom_user_agent"
67             android:title="@string/custom_user_agent"
68             android:defaultValue="PrivacyBrowser/1.0"
69             android:inputType="textVisiblePassword|textMultiLine" />
70
71         <SwitchPreference
72             android:key="block_ads"
73             android:title="@string/block_ads"
74             android:summary="@string/block_ads_summary"
75             android:defaultValue="true" />
76
77         <SwitchPreference
78             android:key="incognito_mode"
79             android:title="@string/incognito_mode"
80             android:summary="@string/incognito_mode_summary"
81             android:defaultValue="false" />
82
83         <SwitchPreference
84             android:key="do_not_track"
85             android:title="@string/do_not_track"
86             android:summary="@string/do_not_track_summary"
87             android:defaultValue="false" />
88     </PreferenceCategory>
89
90     <PreferenceCategory
91         android:key="tor"
92         android:title="@string/tor" >
93
94         <SwitchPreference
95             android:key="proxy_through_orbot"
96             android:title="@string/proxy_through_orbot"
97             android:summary="@string/proxy_through_orbot_summary"
98             android:defaultValue="false" />
99
100         <EditTextPreference
101             android:key="tor_homepage"
102             android:title="@string/tor_homepage"
103             android:defaultValue="https://3g2upl4pq6kufc4m.onion"
104             android:inputType="textUri" />
105
106         <ListPreference
107             android:key="tor_search"
108             android:title="@string/tor_search"
109             android:entries="@array/tor_search_entries"
110             android:entryValues="@array/tor_search_entry_values"
111             android:defaultValue="https://3g2upl4pq6kufc4m.onion/html/?q=" />
112
113         <EditTextPreference
114             android:key="tor_search_custom_url"
115             android:title="@string/tor_search_custom_url"
116             android:defaultValue=""
117             android:inputType="textUri" />
118     </PreferenceCategory>
119
120     <PreferenceCategory
121         android:key="search_category"
122         android:title="@string/search">
123
124         <ListPreference
125             android:key="search"
126             android:title="@string/search"
127             android:entries="@array/search_entries"
128             android:entryValues="@array/search_entry_values"
129             android:defaultValue="https://duckduckgo.com/html/?q="
130             android:icon="@drawable/search_enabled" />
131
132         <EditTextPreference
133             android:key="search_custom_url"
134             android:title="@string/search_custom_url"
135             android:defaultValue=""
136             android:inputType="textUri" />
137     </PreferenceCategory>
138
139     <PreferenceCategory
140         android:key="full_screen"
141         android:title="@string/full_screen">
142
143         <SwitchPreference
144             android:key="full_screen_browsing_mode"
145             android:title="@string/full_screen_browsing_mode"
146             android:summary="@string/full_screen_browsing_mode_summary"
147             android:defaultValue="false" />
148
149         <SwitchPreference
150             android:key="hide_system_bars"
151             android:title="@string/hide_system_bars"
152             android:summary="@string/hide_system_bars_summary"
153             android:defaultValue="false" />
154
155         <SwitchPreference
156             android:key="translucent_navigation_bar"
157             android:title="@string/translucent_navigation_bar"
158             android:summary="@string/translucent_navigation_bar_summary"
159             android:defaultValue="true" />
160     </PreferenceCategory>
161
162     <PreferenceCategory
163         android:key="general"
164         android:title="@string/general" >
165
166         <EditTextPreference
167             android:key="homepage"
168             android:title="@string/homepage"
169             android:defaultValue="https://duckduckgo.com"
170             android:inputType="textUri"
171             android:icon="@drawable/home_enabled" />
172
173         <ListPreference
174             android:key="default_font_size"
175             android:title="@string/default_font_size"
176             android:entries="@array/default_font_size_entries"
177             android:entryValues="@array/default_font_size_entry_values"
178             android:defaultValue="100"
179             android:icon="@drawable/font_size" />
180
181         <SwitchPreference
182             android:key="swipe_to_refresh"
183             android:title="@string/swipe_to_refresh_enabled"
184             android:summary="@string/swipe_to_refresh_enabled_summary"
185             android:defaultValue="false" />
186
187         <SwitchPreference
188             android:key="display_additional_app_bar_icons"
189             android:title="@string/display_additional_app_bar_icons"
190             android:summary="@string/display_additional_app_bar_icons_summary"
191             android:defaultValue="false" />
192
193         <SwitchPreference
194             android:key="display_webpage_images"
195             android:title="@string/display_webpage_images"
196             android:summary="@string/display_webpage_images_summary"
197             android:defaultValue="true" />
198     </PreferenceCategory>
199 </PreferenceScreen>