blob: e0f97d24a0ad1b6a48a63a5d6577822303ed91a9 [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">
Marko Man579ef012016-10-07 08:58:06 +020019<!--
maxwencd7421a2015-08-03 00:43:36 +020020 <PreferenceCategory
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010021 android:key="lockscreen_shortcut"
22 android:title="@string/lockscreen_shortcut_title" >
23
maxwen082d8472016-02-18 02:12:31 +010024 <com.android.settings.preference.SecureSettingSwitchPreference
25 android:key="lockscreen_shortcuts_enable"
26 android:title="@string/lockscreen_shortcuts_enable_title"
27 android:defaultValue="true"/>
28
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010029 <com.android.settings.preference.SecureCheckBoxPreference
maxwen3217a992016-03-03 02:45:04 +010030 android:key="lockscreen_camera_shortcut_enable"
31 android:title="@string/lockscreen_camera_shortcut_enable_title"
32 android:summary="@string/lockscreen_camera_shortcut_enable_summary"
33 android:defaultValue="true"
34 android:dependency="lockscreen_shortcuts_enable" />
35
36 <com.android.settings.preference.SecureCheckBoxPreference
37 android:key="lockscreen_left_shortcut_enable"
38 android:title="@string/lockscreen_left_shortcut_enable_title"
39 android:summary="@string/lockscreen_left_shortcut_enable_summary"
40 android:defaultValue="true"
41 android:dependency="lockscreen_shortcuts_enable" />
42
43 <com.android.settings.preference.SecureCheckBoxPreference
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010044 android:key="lockscreen_voice_shortcut"
45 android:title="@string/lockscreen_voice_shortcut_title"
46 android:summary="@string/lockscreen_voice_shortcut_summary"
maxwen082d8472016-02-18 02:12:31 +010047 android:defaultValue="true"
maxwen3217a992016-03-03 02:45:04 +010048 android:dependency="lockscreen_left_shortcut_enable" />
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" />
56 </PreferenceCategory>
Marko Man579ef012016-10-07 08:58:06 +020057-->
maxwen3217a992016-03-03 02:45:04 +010058 <PreferenceCategory
59 android:key="lockscreen_other"
60 android:title="@string/other_category" >
Marko Man579ef012016-10-07 08:58:06 +020061<!--
maxwen3217a992016-03-03 02:45:04 +010062 <com.android.settings.preference.SystemSettingSwitchPreference
63 android:key="lockscreen_indicator_display"
64 android:title="@string/lockscreen_indicator_display_title"
65 android:summary="@string/lockscreen_indicator_display_summary"
66 android:defaultValue="true" />
Marko Man579ef012016-10-07 08:58:06 +020067-->
68 <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"
71 android:summary="@string/lockscreen_qs_disabled_summary"/>
72
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010073 </PreferenceCategory>
Marko Man579ef012016-10-07 08:58:06 +020074<!--
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010075 <PreferenceCategory
maxwencd7421a2015-08-03 00:43:36 +020076 android:key="lockscreen_wallpaper"
77 android:title="@string/lockscreen_wallpaper_title" >
78
79 <Preference
80 android:key="lockscreen_wallpaper_set"
81 android:title="@string/lockscreen_wallpaper_set_title"
82 android:persistent="false"/>
83
84 <Preference
85 android:key="lockscreen_wallpaper_clear"
86 android:title="@string/lockscreen_wallpaper_clear_title"
87 android:persistent="false"/>
88
89 </PreferenceCategory>
maxwen082d8472016-02-18 02:12:31 +010090
91 <PreferenceCategory
92 android:key="lockscreen_clock"
93 android:title="@string/lockscreen_clock" >
94
95 <com.android.settings.preference.SystemSettingSwitchPreference
96 android:key="lockscreen_clock_enable"
97 android:title="@string/lockscreen_clock_enable_title"
98 android:defaultValue="true" />
99
100 <CheckBoxPreference
101 android:key="lockscreen_clock_display_time"
102 android:title="@string/lockscreen_clock_display_time_title"
103 android:persistent="false"
104 android:defaultValue="true"
105 android:dependency="lockscreen_clock_enable" />
106
107 <CheckBoxPreference
108 android:key="lockscreen_clock_display_date"
109 android:title="@string/lockscreen_clock_display_date_title"
110 android:persistent="false"
111 android:defaultValue="true"
112 android:dependency="lockscreen_clock_enable" />
113
114 <CheckBoxPreference
115 android:key="lockscreen_clock_display_alarm"
116 android:title="@string/lockscreen_clock_display_alarm_title"
117 android:persistent="false"
118 android:defaultValue="true"
119 android:dependency="lockscreen_clock_enable" />
120
121 <org.omnirom.omnigears.preference.FontPreference
122 android:key="lockscreen_clock_font"
123 android:title="@string/lockscreen_clock_font_title"
124 android:persistent="false"
125 android:dependency="lockscreen_clock_enable" />
126
127 <org.omnirom.omnigears.preference.ColorPickerPreference
128 android:key="lockscreen_clock_color"
129 android:title="@string/lockscreen_clock_color_title"
130 android:persistent="false"
131 android:dependency="lockscreen_clock_enable" />
132
133 <org.omnirom.omnigears.preference.NumberPickerPreference
134 android:key="lockscreen_clock_size"
135 android:title="@string/lockscreen_clock_size_title"
136 android:persistent="false"
137 android:dependency="lockscreen_clock_enable" />
138
139 <com.android.settings.preference.SystemCheckBoxPreference
140 android:key="lockscreen_clock_shadow"
141 android:title="@string/lockscreen_clock_shadow_title"
142 android:defaultValue="false"
143 android:dependency="lockscreen_clock_enable" />
144
145 </PreferenceCategory>
Marko Man579ef012016-10-07 08:58:06 +0200146-->
maxwencd7421a2015-08-03 00:43:36 +0200147</PreferenceScreen>