blob: 443e17ae48d512cb088c9ad39d63fa99940b4c08 [file] [log] [blame]
Steve Kondik4ecd7e52016-09-08 14:47:47 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 The CyanogenMod Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
Steve Kondik165ebdf2016-10-07 00:17:49 -070017<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 android:key="livedisplay"
19 android:title="@*cyanogenmod.platform:string/live_display_title">
Steve Kondik4ecd7e52016-09-08 14:47:47 -070020
21 <PreferenceCategory
22 android:key="live_display_options"
23 android:title="@*cyanogenmod.platform:string/live_display_title">
24
25 <!-- Color profile -->
26 <ListPreference
27 android:key="live_display_color_profile"
28 android:title="@string/live_display_color_profile_title"
29 android:persistent="false" />
30
31 <ListPreference
32 android:key="live_display"
33 android:title="@string/live_display_mode"
34 android:persistent="false" />
35
36 <!-- Manual temperature selection -->
37 <org.cyanogenmod.cmparts.livedisplay.DisplayTemperature
38 android:key="live_display_color_temperature"
39 android:title="@string/live_display_color_temperature_title"
40 android:dialogTitle="@*cyanogenmod.platform:string/live_display_title"
41 android:persistent="false" />
42
43 <!-- Outdoor mode / SRE -->
44 <cyanogenmod.preference.CMSystemSettingSwitchPreference
45 android:key="display_auto_outdoor_mode"
46 android:title="@string/live_display_outdoor_mode_title"
47 android:summary="@string/live_display_outdoor_mode_summary"
48 android:defaultValue="@*cyanogenmod.platform:bool/config_defaultAutoOutdoorMode" />
49
50 </PreferenceCategory>
51
52 <PreferenceCategory
53 android:key="advanced"
54 android:title="@string/advanced">
55
56 <!-- RGB display color adjustments -->
57 <org.cyanogenmod.cmparts.livedisplay.DisplayColor
58 android:key="color_calibration"
59 android:title="@string/color_calibration_title"
60 android:dialogTitle="@string/color_calibration_title"
61 android:summary="@string/color_calibration_summary"
62 android:persistent="false"/>
63
64 <!-- HSIC display color adjustments -->
65 <org.cyanogenmod.cmparts.livedisplay.PictureAdjustment
66 android:key="picture_adjustment"
67 android:title="@string/picture_adjustment_title"
68 android:dialogTitle="@string/picture_adjustment_title"
69 android:summary="@string/picture_adjustment_summary"
70 android:persistent="false"/>
71
72 <!-- Adaptive backlight -->
73 <cyanogenmod.preference.CMSystemSettingSwitchPreference
74 android:key="display_low_power"
75 android:title="@string/live_display_low_power_title"
76 android:summary="@string/live_display_low_power_summary"
77 android:defaultValue="@*cyanogenmod.platform:bool/config_defaultCABC" />
78
79 <!-- Color enhancement -->
80 <cyanogenmod.preference.CMSystemSettingSwitchPreference
81 android:key="display_color_enhance"
82 android:title="@string/live_display_enhance_color_title"
83 android:summary="@string/live_display_enhance_color_summary"
84 android:defaultValue="@*cyanogenmod.platform:bool/config_defaultColorEnhancement" />
85
86 </PreferenceCategory>
87
88</PreferenceScreen>