summaryrefslogtreecommitdiffstats
path: root/res/xml/livedisplay.xml
blob: 141fc6892c72b6e7923737b2d023aea5ab9ae67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2015 The CyanogenMod Project

     Licensed under the Apache License, Version 2.0 (the "License");
     you may not use this file except in compliance with the License.
     You may obtain a copy of the License at

          http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing, software
     distributed under the License is distributed on an "AS IS" BASIS,
     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     See the License for the specific language governing permissions and
     limitations under the License.
-->
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">

    <PreferenceCategory
        android:key="live_display_options"
        android:title="@string/live_display_title">

        <!-- Color profile -->
        <ListPreference
                android:key="live_display_color_profile"
                android:title="@string/live_display_color_profile_title"
                android:persistent="false" />

        <ListPreference
                android:key="live_display"
                android:title="@string/live_display_mode"
                android:persistent="false" />

        <!-- Manual temperature selection -->
        <com.android.settings.livedisplay.DisplayTemperature
                android:key="live_display_color_temperature"
                android:title="@string/live_display_color_temperature_title"
                android:dialogTitle="@string/live_display_title"
                android:persistent="false" />

        <!-- Outdoor mode / SRE -->
        <com.android.settings.cyanogenmod.CMSystemSettingSwitchPreference
                android:key="display_auto_outdoor_mode"
                android:title="@string/live_display_outdoor_mode_title"
                android:summary="@string/live_display_outdoor_mode_summary"
                android:defaultValue="true" />

    </PreferenceCategory>

    <PreferenceCategory
            android:key="advanced"
            android:title="@string/advanced">

        <!-- screen color -->
        <PreferenceScreen
                android:persistent="false"
                android:key="screencolor_settings"
                android:title="@string/screencolor"
                android:summary="@string/screencolor_summary">
            <intent
                    android:action="com.qualcomm.display.PPService"
                    android:targetPackage="com.android.settings"
                    android:targetClass="com.android.settings.ScreenColorSettings" />
        </PreferenceScreen>

        <com.android.settings.livedisplay.DisplayColor
                android:key="color_calibration"
                android:title="@string/color_calibration_title"
                android:dialogTitle="@string/color_calibration_title"
                android:summary="@string/color_calibration_summary"
                android:persistent="false"/>

        <com.android.settings.livedisplay.DisplayGamma
                android:key="gamma_tuning"
                android:title="@string/gamma_tuning_title_head"
                android:dialogTitle="@string/gamma_tuning_title_head"
                android:summary="@string/gamma_tuning_summary_head"
                android:persistent="false"/>

        <!-- Adaptive backlight -->
        <com.android.settings.cyanogenmod.CMSystemSettingSwitchPreference
                android:key="display_low_power"
                android:title="@string/live_display_low_power_title"
                android:summary="@string/live_display_low_power_summary"
                android:defaultValue="true" />

        <!-- Color enhancement -->
        <com.android.settings.cyanogenmod.CMSystemSettingSwitchPreference
                android:key="display_color_enhance"
                android:title="@string/live_display_enhance_color_title"
                android:summary="@string/live_display_enhance_color_summary"
                android:defaultValue="true" />

    </PreferenceCategory>

</PreferenceScreen>