blob: 28b631b5300dbab322d8399a04516cbad87cd24e [file] [log] [blame]
maxwencd7421a2015-08-03 00:43:36 +02001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2015 The OmniROM Project
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>.
16 -->
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
maxwencd7421a2015-08-03 00:43:36 +020019 <PreferenceCategory
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010020 android:key="lockscreen_shortcut"
21 android:title="@string/lockscreen_shortcut_title" >
22
maxwenb24d71b2017-02-21 01:18:28 +010023 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
maxwen082d8472016-02-18 02:12:31 +010024 android:key="lockscreen_shortcuts_enable"
25 android:title="@string/lockscreen_shortcuts_enable_title"
26 android:defaultValue="true"/>
27
maxwenb24d71b2017-02-21 01:18:28 +010028 <org.omnirom.omnigears.preference.SecureCheckBoxPreference
maxwen3217a992016-03-03 02:45:04 +010029 android:key="lockscreen_camera_shortcut_enable"
30 android:title="@string/lockscreen_camera_shortcut_enable_title"
31 android:summary="@string/lockscreen_camera_shortcut_enable_summary"
32 android:defaultValue="true"
33 android:dependency="lockscreen_shortcuts_enable" />
34
maxwenb24d71b2017-02-21 01:18:28 +010035 <org.omnirom.omnigears.preference.SecureCheckBoxPreference
maxwen3217a992016-03-03 02:45:04 +010036 android:key="lockscreen_left_shortcut_enable"
37 android:title="@string/lockscreen_left_shortcut_enable_title"
38 android:summary="@string/lockscreen_left_shortcut_enable_summary"
39 android:defaultValue="true"
40 android:dependency="lockscreen_shortcuts_enable" />
41
maxwenb24d71b2017-02-21 01:18:28 +010042 <org.omnirom.omnigears.preference.SecureCheckBoxPreference
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010043 android:key="lockscreen_voice_shortcut"
44 android:title="@string/lockscreen_voice_shortcut_title"
45 android:summary="@string/lockscreen_voice_shortcut_summary"
maxwen082d8472016-02-18 02:12:31 +010046 android:defaultValue="true"
maxwen3217a992016-03-03 02:45:04 +010047 android:dependency="lockscreen_left_shortcut_enable" />
maxwenb24d71b2017-02-21 01:18:28 +010048 <!--
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010049
maxwen3217a992016-03-03 02:45:04 +010050 <Preference
51 android:key="lockscreen_shortcuts"
52 android:title="@string/lockscreen_shortcuts_title"
53 android:summary="@string/lockscreen_shortcuts_summary"
54 android:persistent="false"
55 android:dependency="lockscreen_shortcuts_enable" />
maxwenb24d71b2017-02-21 01:18:28 +010056 -->
57
maxwen3217a992016-03-03 02:45:04 +010058 </PreferenceCategory>
maxwen3217a992016-03-03 02:45:04 +010059 <PreferenceCategory
60 android:key="lockscreen_other"
61 android:title="@string/other_category" >
maxwenb24d71b2017-02-21 01:18:28 +010062
63 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
maxwen2589e2d2017-02-24 17:19:07 +010064 android:key="lockscreen_hide_indicator_display"
65 android:title="@string/lockscreen_hide_indicator_display_title"
66 android:summary="@string/lockscreen_hide_indicator_display_summary" />
maxwenb24d71b2017-02-21 01:18:28 +010067
Marko Man579ef012016-10-07 08:58:06 +020068 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
maxwenf427b5c2016-06-12 00:14:53 +020069 android:key="lockscreen_qs_disabled"
70 android:title="@string/lockscreen_qs_disabled_title"
Marko Man6010d692016-10-13 14:11:20 +020071 android:summary="@string/lockscreen_qs_summary"/>
maxwenf427b5c2016-06-12 00:14:53 +020072
maxwene84bfd42016-12-29 01:06:54 +010073 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
74 android:key="lockscreen_hide_media"
75 android:title="@string/lockscreen_hide_media_title"
76 android:summary="@string/lockscreen_hide_media_summary" />
77
maxwen9f9e3c62017-02-23 23:35:19 +010078 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
79 android:key="lockscreen_hide_status_bar"
80 android:title="@string/lockscreen_hide_status_bar_title"
81 android:summary="@string/lockscreen_hide_status_bar_summary"/>
82
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010083 </PreferenceCategory>
maxwen082d8472016-02-18 02:12:31 +010084
85 <PreferenceCategory
86 android:key="lockscreen_clock"
87 android:title="@string/lockscreen_clock" >
88
maxwenca6b14d2017-02-27 16:56:10 +010089 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
maxwen082d8472016-02-18 02:12:31 +010090 android:key="lockscreen_clock_enable"
91 android:title="@string/lockscreen_clock_enable_title"
maxwenca6b14d2017-02-27 16:56:10 +010092 android:summary="@string/lockscreen_clock_enable_summary"
maxwen082d8472016-02-18 02:12:31 +010093 android:defaultValue="true" />
94
95 <CheckBoxPreference
96 android:key="lockscreen_clock_display_time"
97 android:title="@string/lockscreen_clock_display_time_title"
98 android:persistent="false"
99 android:defaultValue="true"
100 android:dependency="lockscreen_clock_enable" />
101
102 <CheckBoxPreference
103 android:key="lockscreen_clock_display_date"
104 android:title="@string/lockscreen_clock_display_date_title"
105 android:persistent="false"
106 android:defaultValue="true"
107 android:dependency="lockscreen_clock_enable" />
108
109 <CheckBoxPreference
110 android:key="lockscreen_clock_display_alarm"
111 android:title="@string/lockscreen_clock_display_alarm_title"
112 android:persistent="false"
113 android:defaultValue="true"
114 android:dependency="lockscreen_clock_enable" />
115
116 <org.omnirom.omnigears.preference.FontPreference
117 android:key="lockscreen_clock_font"
118 android:title="@string/lockscreen_clock_font_title"
119 android:persistent="false"
120 android:dependency="lockscreen_clock_enable" />
121
122 <org.omnirom.omnigears.preference.ColorPickerPreference
123 android:key="lockscreen_clock_color"
124 android:title="@string/lockscreen_clock_color_title"
125 android:persistent="false"
126 android:dependency="lockscreen_clock_enable" />
127
128 <org.omnirom.omnigears.preference.NumberPickerPreference
129 android:key="lockscreen_clock_size"
130 android:title="@string/lockscreen_clock_size_title"
131 android:persistent="false"
132 android:dependency="lockscreen_clock_enable" />
133
maxwenca6b14d2017-02-27 16:56:10 +0100134 <CheckBoxPreference
maxwen082d8472016-02-18 02:12:31 +0100135 android:key="lockscreen_clock_shadow"
136 android:title="@string/lockscreen_clock_shadow_title"
maxwenca6b14d2017-02-27 16:56:10 +0100137 android:persistent="false"
maxwen082d8472016-02-18 02:12:31 +0100138 android:defaultValue="false"
139 android:dependency="lockscreen_clock_enable" />
140
141 </PreferenceCategory>
maxwencd7421a2015-08-03 00:43:36 +0200142</PreferenceScreen>