blob: f6555b815a20c6946ba78e72a92ce66298c2fc86 [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
maxwen3217a992016-03-03 02:45:04 +010064 android:key="lockscreen_indicator_display"
65 android:title="@string/lockscreen_indicator_display_title"
66 android:summary="@string/lockscreen_indicator_display_summary"
67 android:defaultValue="true" />
maxwenb24d71b2017-02-21 01:18:28 +010068
Marko Man579ef012016-10-07 08:58:06 +020069 <org.omnirom.omnigears.preference.SecureSettingSwitchPreference
maxwenf427b5c2016-06-12 00:14:53 +020070 android:key="lockscreen_qs_disabled"
71 android:title="@string/lockscreen_qs_disabled_title"
Marko Man6010d692016-10-13 14:11:20 +020072 android:summary="@string/lockscreen_qs_summary"/>
maxwenf427b5c2016-06-12 00:14:53 +020073
maxwene84bfd42016-12-29 01:06:54 +010074 <org.omnirom.omnigears.preference.SystemSettingSwitchPreference
75 android:key="lockscreen_hide_media"
76 android:title="@string/lockscreen_hide_media_title"
77 android:summary="@string/lockscreen_hide_media_summary" />
78
Hernán Castañón Álvarez48f27ce2015-12-06 13:19:50 +010079 </PreferenceCategory>
Marko Man579ef012016-10-07 08:58:06 +020080<!--
maxwen082d8472016-02-18 02:12:31 +010081
82 <PreferenceCategory
83 android:key="lockscreen_clock"
84 android:title="@string/lockscreen_clock" >
85
86 <com.android.settings.preference.SystemSettingSwitchPreference
87 android:key="lockscreen_clock_enable"
88 android:title="@string/lockscreen_clock_enable_title"
89 android:defaultValue="true" />
90
91 <CheckBoxPreference
92 android:key="lockscreen_clock_display_time"
93 android:title="@string/lockscreen_clock_display_time_title"
94 android:persistent="false"
95 android:defaultValue="true"
96 android:dependency="lockscreen_clock_enable" />
97
98 <CheckBoxPreference
99 android:key="lockscreen_clock_display_date"
100 android:title="@string/lockscreen_clock_display_date_title"
101 android:persistent="false"
102 android:defaultValue="true"
103 android:dependency="lockscreen_clock_enable" />
104
105 <CheckBoxPreference
106 android:key="lockscreen_clock_display_alarm"
107 android:title="@string/lockscreen_clock_display_alarm_title"
108 android:persistent="false"
109 android:defaultValue="true"
110 android:dependency="lockscreen_clock_enable" />
111
112 <org.omnirom.omnigears.preference.FontPreference
113 android:key="lockscreen_clock_font"
114 android:title="@string/lockscreen_clock_font_title"
115 android:persistent="false"
116 android:dependency="lockscreen_clock_enable" />
117
118 <org.omnirom.omnigears.preference.ColorPickerPreference
119 android:key="lockscreen_clock_color"
120 android:title="@string/lockscreen_clock_color_title"
121 android:persistent="false"
122 android:dependency="lockscreen_clock_enable" />
123
124 <org.omnirom.omnigears.preference.NumberPickerPreference
125 android:key="lockscreen_clock_size"
126 android:title="@string/lockscreen_clock_size_title"
127 android:persistent="false"
128 android:dependency="lockscreen_clock_enable" />
129
130 <com.android.settings.preference.SystemCheckBoxPreference
131 android:key="lockscreen_clock_shadow"
132 android:title="@string/lockscreen_clock_shadow_title"
133 android:defaultValue="false"
134 android:dependency="lockscreen_clock_enable" />
135
136 </PreferenceCategory>
Marko Man579ef012016-10-07 08:58:06 +0200137-->
maxwencd7421a2015-08-03 00:43:36 +0200138</PreferenceScreen>