blob: 98c36f3cf4ea5cc23584f9d0868e61e75012cd4e (
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
<div id="systemPage" class="page" hidden>
<h1 i18n-content="systemPage"></h1>
<div class="displaytable">
<section>
<h3 i18n-content="datetimeTitle"></h3>
<div class="option-control-table">
<span class="option-name" i18n-content="timezone"></span>
<div id="timezone-value">
<select id="timezone-select" class="control"
i18n-options="timezoneList"
dataType="string"
pref="cros.system.timezone"></select>
</div>
<div class="checkbox">
<label>
<input id="use-24hour-clock"
pref="settings.clock.use_24hour_clock"
type="checkbox">
<span i18n-content="use24HourClock"></span>
</label>
</div>
</div>
</section>
<if expr="pp_ifdef('touchui')">
<section>
<h3 i18n-content="screen"></h3>
<div id="brightness-value">
<span i18n-content="brightness"></span>
<button id="brightness-decrease-button"
i18n-content="brightnessDecrease"></button>
<button id="brightness-increase-button"
i18n-content="brightnessIncrease"></button>
</div>
</section>
</if>
<section>
<h3 i18n-content="touchpad"></h3>
<div class="option-control-table">
<span class="option-name" i18n-content="sensitivity"></span>
<div id="touchpad-value">
<div id="slider-control">
<input id="sensitivity-range" type="range" min="1" max="5"
pref="settings.touchpad.sensitivity2" class="touch-slider">
<div>
<span i18n-content="sensitivityLess"></span>
<span i18n-content="sensitivityMore"
class="touchpad-sensitivity-more"></span>
</div>
</div>
</div>
<div id="tap-to-click" class="checkbox" hidden>
<label>
<input id="tap-to-click-check"
pref="settings.touchpad.enable_tap_to_click"
type="checkbox">
<span i18n-content="enableTapToClick"></span>
</label>
</div>
</div>
</section>
<!-- By default, the bluetooth section is hidden. It is only
visible if the command line flag --enable_bluetooth is set. -->
<section id="bluetooth-devices" hidden>
<h3 i18n-content="bluetooth"></h3>
<div id="bluetooth-options-div">
<div id="enable-bluetooth" class="checkbox">
<label>
<input id="enable-bluetooth-label" type="checkbox"
checked="checked" pref="settings.enable_bluetooth">
<span i18n-content="enableBluetooth"></span>
</label>
</div>
<div id="bluetooth-device-list">
<!-- A list of connected devices is inserted here on page load. -->
<!-- The list of devices is updated asynchronously on clicking
'Find Devices' -->
</div>
<div id = "bluetooth-finder-container">
<button id="bluetooth-find-devices"
i18n-content="findBluetoothDevices"></button>
<span id="bluetooth-scanning-label" class="transparent"
i18n-content="bluetoothScanning"></span>
<div id="bluetooth-scanning-icon"
class="throbber transparent"></div>
</div>
</div>
</section>
<section>
<h3 i18n-content="language"></h3>
<div class="option-control-table">
<div class="option-name">
<button id="language-button" i18n-content="languageCustomize">
</button>
</div>
<div class="option-name">
<button id="modifier-keys-button"
i18n-content="modifierKeysCustomize"></button>
</div>
</div>
</section>
<section>
<h3 i18n-content="accessibilityTitle"></h3>
<div class="option-control-table">
<div class="option-name">
<div class="checkbox">
<label>
<input id="accesibility-check" type="checkbox">
<span i18n-content="accessibility"></span>
</label>
</div>
</div>
</div>
</section>
</div>
</div>
|