summaryrefslogtreecommitdiff
path: root/core
authorschurig <schurig>2003-06-06 07:46:09 (UTC)
committer schurig <schurig>2003-06-06 07:46:09 (UTC)
commitb02b57cc34fdba0b3d9058ed263e283f0660ffb7 (patch) (unidiff)
tree3f04bf0c7b9cbcb6f29bcab706b89473e79d15a5 /core
parente7d5436f3379f45d9c165a2826b1f4ae5adaeea4 (diff)
downloadopie-b02b57cc34fdba0b3d9058ed263e283f0660ffb7.zip
opie-b02b57cc34fdba0b3d9058ed263e283f0660ffb7.tar.gz
opie-b02b57cc34fdba0b3d9058ed263e283f0660ffb7.tar.bz2
scale for qcop protocol and conf file is now 0.255 as well
simplified settings for TickInterval, LineStep, PageStep removed lot's of scale adaptions enhanced reset-timer from 2 sec to 4 sec do not set values in the *.ui for things that get overwritten by cpp anyway now the binary is smaller (with contrast) when it was before (without contrast)
Diffstat (limited to 'core') (more/less context) (ignore whitespace changes)
-rw-r--r--core/settings/light-and-power/light.cpp64
-rw-r--r--core/settings/light-and-power/lightsettingsbase.ui86
2 files changed, 36 insertions, 114 deletions
diff --git a/core/settings/light-and-power/light.cpp b/core/settings/light-and-power/light.cpp
index a58b1c1..8b98672 100644
--- a/core/settings/light-and-power/light.cpp
+++ b/core/settings/light-and-power/light.cpp
@@ -77,25 +77,23 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
77 interval_suspend-> setValue ( config. readNumEntry ( "Suspend", 60 )); 77 interval_suspend-> setValue ( config. readNumEntry ( "Suspend", 60 ));
78 78
79 // battery check and slider 79 // battery check and slider
80 LcdOffOnly-> setChecked ( config. readBoolEntry ( "LcdOffOnly", false )); 80 LcdOffOnly-> setChecked ( config. readBoolEntry ( "LcdOffOnly", false ));
81 81
82 int bright = config. readNumEntry ( "Brightness", 127 ); 82 int bright = config. readNumEntry ( "Brightness", 127 );
83 int contr = config. readNumEntry ( "Contrast", 127 ); 83 int contr = m_oldcontrast = config. readNumEntry ( "Contrast", 127 );
84 brightness-> setMaxValue ( m_bres - 1 ); 84 brightness-> setTickInterval ( QMAX( 16, 256 / m_bres ));
85 brightness-> setTickInterval ( QMAX( 1, m_bres / 16 )); 85 brightness-> setLineStep ( QMAX( 1, 256 / m_bres ));
86 brightness-> setLineStep ( QMAX( 1, m_bres / 16 )); 86 brightness-> setPageStep ( QMAX( 1, 256 / m_bres ));
87 brightness-> setPageStep ( QMAX( 1, m_bres / 16 )); 87 brightness-> setValue ( bright );
88 brightness-> setValue (( bright * ( m_bres - 1 ) + 127 ) / 255 );
89 88
90 if (m_cres) { 89 if (m_cres) {
91 contrast-> setMaxValue ( m_cres - 1 ); 90 contrast-> setTickInterval ( QMAX( 16, 256 / m_cres ));
92 contrast-> setTickInterval ( QMAX( 1, m_cres / 16 )); 91 contrast-> setLineStep ( QMAX( 1, 256 / m_cres ));
93 contrast-> setLineStep ( QMAX( 1, m_cres / 16 )); 92 contrast-> setPageStep ( QMAX( 1, 256 / m_cres ));
94 contrast-> setPageStep ( QMAX( 1, m_cres / 16 )); 93 contrast-> setValue ( contr );
95 contrast-> setValue (( contr * ( m_cres - 1 ) + 127 ) / 255 );
96 } 94 }
97 95
98 // light sensor 96 // light sensor
99 auto_brightness-> setChecked ( config. readBoolEntry ( "LightSensor", false )); 97 auto_brightness-> setChecked ( config. readBoolEntry ( "LightSensor", false ));
100 m_sensordata = config. readListEntry ( "LightSensorData", ';' ); 98 m_sensordata = config. readListEntry ( "LightSensorData", ';' );
101 99
@@ -107,25 +105,23 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
107 interval_suspend_ac-> setValue ( config. readNumEntry ( "Suspend", 0 )); 105 interval_suspend_ac-> setValue ( config. readNumEntry ( "Suspend", 0 ));
108 106
109 // ac check and slider 107 // ac check and slider
110 LcdOffOnly_ac-> setChecked ( config. readBoolEntry ( "LcdOffOnly", false )); 108 LcdOffOnly_ac-> setChecked ( config. readBoolEntry ( "LcdOffOnly", false ));
111 109
112 bright = config. readNumEntry ( "Brightness", 255 ); 110 bright = config. readNumEntry ( "Brightness", 255 );
113 brightness_ac-> setMaxValue ( m_bres - 1 ); 111 brightness_ac-> setTickInterval ( QMAX( 16, 256 / m_bres ));
114 brightness_ac-> setTickInterval ( QMAX( 1, m_bres / 16 )); 112 brightness_ac-> setLineStep ( QMAX( 1, 256 / m_bres ));
115 brightness_ac-> setLineStep ( QMAX( 1, m_bres / 16 )); 113 brightness_ac-> setPageStep ( QMAX( 1, 256 / m_bres ));
116 brightness_ac-> setPageStep ( QMAX( 1, m_bres / 16 )); 114 brightness_ac-> setValue ( bright );
117 brightness_ac-> setValue (( bright * ( m_bres - 1 ) + 127 ) / 255 );
118 115
119 if (m_cres) { 116 if (m_cres) {
120 contr = config. readNumEntry ( "Contrast", 127); 117 contr = config. readNumEntry ( "Contrast", 127);
121 contrast_ac-> setMaxValue ( m_cres - 1 ); 118 contrast_ac-> setTickInterval ( QMAX( 16, 256 / m_cres ));
122 contrast_ac-> setTickInterval ( QMAX( 1, m_cres / 16 )); 119 contrast_ac-> setLineStep ( QMAX( 1, 256 / m_cres ));
123 contrast_ac-> setLineStep ( QMAX( 1, m_cres / 16 )); 120 contrast_ac-> setPageStep ( QMAX( 1, 256 / m_cres ));
124 contrast_ac-> setPageStep ( QMAX( 1, m_cres / 16 )); 121 contrast_ac-> setValue ( contr );
125 contrast_ac-> setValue (( contr * ( m_cres - 1 ) + 127 ) / 255 );
126 } 122 }
127 123
128 // light sensor 124 // light sensor
129 auto_brightness_ac-> setChecked ( config. readBoolEntry ( "LightSensor", false )); 125 auto_brightness_ac-> setChecked ( config. readBoolEntry ( "LightSensor", false ));
130 m_sensordata_ac = config. readListEntry ( "LightSensorData", ';' ); 126 m_sensordata_ac = config. readListEntry ( "LightSensorData", ';' );
131 127
@@ -144,13 +140,13 @@ LightSettings::LightSettings( QWidget* parent, const char* name, WFlags )
144 else { 140 else {
145 tabs-> setCurrentPage ( 1 ); 141 tabs-> setCurrentPage ( 1 );
146 } 142 }
147 143
148 connect ( brightness, SIGNAL( valueChanged ( int )), this, SLOT( setBacklight ( int ))); 144 connect ( brightness, SIGNAL( valueChanged ( int )), this, SLOT( setBacklight ( int )));
149 connect ( brightness_ac, SIGNAL( valueChanged ( int )), this, SLOT( setBacklight ( int ))); 145 connect ( brightness_ac, SIGNAL( valueChanged ( int )), this, SLOT( setBacklight ( int )));
150 if (m_havecontrast) { 146 if (m_cres) {
151 connect ( contrast, SIGNAL( valueChanged ( int )), this, SLOT( setContrast ( int ))); 147 connect ( contrast, SIGNAL( valueChanged ( int )), this, SLOT( setContrast ( int )));
152 connect ( contrast_ac, SIGNAL( valueChanged ( int )), this, SLOT( setContrast ( int ))); 148 connect ( contrast_ac, SIGNAL( valueChanged ( int )), this, SLOT( setContrast ( int )));
153 } 149 }
154} 150}
155 151
156LightSettings::~LightSettings ( ) 152LightSettings::~LightSettings ( )
@@ -174,36 +170,26 @@ void LightSettings::calibrateSensorAC ( )
174 s-> exec ( ); 170 s-> exec ( );
175 delete s; 171 delete s;
176} 172}
177 173
178void LightSettings::setBacklight ( int bright ) 174void LightSettings::setBacklight ( int bright )
179{ 175{
180 if ( bright >= 0 )
181 bright = bright * 255 / ( m_bres - 1 );
182
183 QCopEnvelope e ( "QPE/System", "setBacklight(int)" ); 176 QCopEnvelope e ( "QPE/System", "setBacklight(int)" );
184 e << bright; 177 e << bright;
185 178
186 if ( bright != -1 ) { 179 if ( bright != -1 ) {
187 m_resettimer-> stop ( ); 180 m_resettimer-> stop ( );
188 m_resettimer-> start ( 2000, true ); 181 m_resettimer-> start ( 4000, true );
189 } 182 }
190} 183}
191 184
192void LightSettings::setContrast ( int contr ) 185void LightSettings::setContrast ( int contr )
193{ 186{
194 if ( contr >= 0 ) 187 if (contr == -1) contr = m_oldcontrast;
195 contr = contr * 255 / ( m_cres - 1 );
196
197 QCopEnvelope e ( "QPE/System", "setContrast(int)" );
198 e << contr;
199 188
200 if ( contr != -1 ) { 189 ODevice::inst ( )-> setDisplayContrast(contr);
201 m_resettimer-> stop ( );
202 m_resettimer-> start ( 2000, true );
203 }
204} 190}
205 191
206void LightSettings::resetBacklight ( ) 192void LightSettings::resetBacklight ( )
207{ 193{
208 setBacklight ( -1 ); 194 setBacklight ( -1 );
209 setContrast ( -1 ); 195 setContrast ( -1 );
@@ -216,25 +202,25 @@ void LightSettings::accept ( )
216 // bat 202 // bat
217 config. setGroup ( "Battery" ); 203 config. setGroup ( "Battery" );
218 config. writeEntry ( "LcdOffOnly", LcdOffOnly-> isChecked ( )); 204 config. writeEntry ( "LcdOffOnly", LcdOffOnly-> isChecked ( ));
219 config. writeEntry ( "Dim", interval_dim-> value ( )); 205 config. writeEntry ( "Dim", interval_dim-> value ( ));
220 config. writeEntry ( "LightOff", interval_lightoff-> value ( )); 206 config. writeEntry ( "LightOff", interval_lightoff-> value ( ));
221 config. writeEntry ( "Suspend", interval_suspend-> value ( )); 207 config. writeEntry ( "Suspend", interval_suspend-> value ( ));
222 config. writeEntry ( "Brightness", brightness-> value ( ) * 255 / ( m_bres - 1 ) ); 208 config. writeEntry ( "Brightness", brightness-> value () );
223 if (m_cres) 209 if (m_cres)
224 config. writeEntry ( "Contrast", contrast-> value ( ) * 255 / ( m_cres - 1 ) ); 210 config. writeEntry ( "Contrast", contrast-> value () );
225 211
226 // ac 212 // ac
227 config. setGroup ( "AC" ); 213 config. setGroup ( "AC" );
228 config. writeEntry ( "LcdOffOnly", LcdOffOnly_ac-> isChecked ( )); 214 config. writeEntry ( "LcdOffOnly", LcdOffOnly_ac-> isChecked ( ));
229 config. writeEntry ( "Dim", interval_dim_ac-> value ( )); 215 config. writeEntry ( "Dim", interval_dim_ac-> value ( ));
230 config. writeEntry ( "LightOff", interval_lightoff_ac-> value ( )); 216 config. writeEntry ( "LightOff", interval_lightoff_ac-> value ( ));
231 config. writeEntry ( "Suspend", interval_suspend_ac-> value ( )); 217 config. writeEntry ( "Suspend", interval_suspend_ac-> value ( ));
232 config. writeEntry ( "Brightness", brightness_ac-> value ( ) * 255 / ( m_bres - 1 )); 218 config. writeEntry ( "Brightness", brightness_ac-> value () );
233 if (m_cres) 219 if (m_cres)
234 config. writeEntry ( "Contrast", contrast_ac-> value ( ) * 255 / ( m_cres - 1 )); 220 config. writeEntry ( "Contrast", contrast_ac-> value () );
235 221
236 // only make light sensor stuff appear if the unit has a sensor 222 // only make light sensor stuff appear if the unit has a sensor
237 if ( ODevice::inst ( )-> hasLightSensor ( )) { 223 if ( ODevice::inst ( )-> hasLightSensor ( )) {
238 config. setGroup ( "Battery" ); 224 config. setGroup ( "Battery" );
239 config. writeEntry ( "LightSensor", auto_brightness->isChecked() ); 225 config. writeEntry ( "LightSensor", auto_brightness->isChecked() );
240 config. writeEntry ( "LightSensorData", m_sensordata, ';' ); 226 config. writeEntry ( "LightSensorData", m_sensordata, ';' );
diff --git a/core/settings/light-and-power/lightsettingsbase.ui b/core/settings/light-and-power/lightsettingsbase.ui
index 8fdd604..884c21c 100644
--- a/core/settings/light-and-power/lightsettingsbase.ui
+++ b/core/settings/light-and-power/lightsettingsbase.ui
@@ -8,13 +8,13 @@
8 </property> 8 </property>
9 <property stdset="1"> 9 <property stdset="1">
10 <name>geometry</name> 10 <name>geometry</name>
11 <rect> 11 <rect>
12 <x>0</x> 12 <x>0</x>
13 <y>0</y> 13 <y>0</y>
14 <width>355</width> 14 <width>347</width>
15 <height>532</height> 15 <height>532</height>
16 </rect> 16 </rect>
17 </property> 17 </property>
18 <property stdset="1"> 18 <property stdset="1">
19 <name>sizePolicy</name> 19 <name>sizePolicy</name>
20 <sizepolicy> 20 <sizepolicy>
@@ -77,13 +77,13 @@
77 <number>3</number> 77 <number>3</number>
78 </property> 78 </property>
79 <widget> 79 <widget>
80 <class>QGroupBox</class> 80 <class>QGroupBox</class>
81 <property stdset="1"> 81 <property stdset="1">
82 <name>name</name> 82 <name>name</name>
83 <cstring>GroupBox3</cstring> 83 <cstring>Group1</cstring>
84 </property> 84 </property>
85 <property stdset="1"> 85 <property stdset="1">
86 <name>enabled</name> 86 <name>enabled</name>
87 <bool>true</bool> 87 <bool>true</bool>
88 </property> 88 </property>
89 <property stdset="1"> 89 <property stdset="1">
@@ -137,13 +137,13 @@
137 </property> 137 </property>
138 </widget> 138 </widget>
139 <widget row="1" column="0" > 139 <widget row="1" column="0" >
140 <class>QLabel</class> 140 <class>QLabel</class>
141 <property stdset="1"> 141 <property stdset="1">
142 <name>name</name> 142 <name>name</name>
143 <cstring>TextLabel2_2</cstring> 143 <cstring>TL2</cstring>
144 </property> 144 </property>
145 <property stdset="1"> 145 <property stdset="1">
146 <name>sizePolicy</name> 146 <name>sizePolicy</name>
147 <sizepolicy> 147 <sizepolicy>
148 <hsizetype>3</hsizetype> 148 <hsizetype>3</hsizetype>
149 <vsizetype>1</vsizetype> 149 <vsizetype>1</vsizetype>
@@ -155,13 +155,13 @@
155 </property> 155 </property>
156 </widget> 156 </widget>
157 <widget row="0" column="0" > 157 <widget row="0" column="0" >
158 <class>QLabel</class> 158 <class>QLabel</class>
159 <property stdset="1"> 159 <property stdset="1">
160 <name>name</name> 160 <name>name</name>
161 <cstring>TextLabel1_3</cstring> 161 <cstring>TL1</cstring>
162 </property> 162 </property>
163 <property stdset="1"> 163 <property stdset="1">
164 <name>sizePolicy</name> 164 <name>sizePolicy</name>
165 <sizepolicy> 165 <sizepolicy>
166 <hsizetype>3</hsizetype> 166 <hsizetype>3</hsizetype>
167 <vsizetype>1</vsizetype> 167 <vsizetype>1</vsizetype>
@@ -235,13 +235,13 @@
235 </property> 235 </property>
236 </widget> 236 </widget>
237 <widget row="2" column="0" > 237 <widget row="2" column="0" >
238 <class>QLabel</class> 238 <class>QLabel</class>
239 <property stdset="1"> 239 <property stdset="1">
240 <name>name</name> 240 <name>name</name>
241 <cstring>TextLabel1_2</cstring> 241 <cstring>TL3</cstring>
242 </property> 242 </property>
243 <property stdset="1"> 243 <property stdset="1">
244 <name>sizePolicy</name> 244 <name>sizePolicy</name>
245 <sizepolicy> 245 <sizepolicy>
246 <hsizetype>3</hsizetype> 246 <hsizetype>3</hsizetype>
247 <vsizetype>1</vsizetype> 247 <vsizetype>1</vsizetype>
@@ -305,35 +305,19 @@
305 </property> 305 </property>
306 <property stdset="1"> 306 <property stdset="1">
307 <name>maxValue</name> 307 <name>maxValue</name>
308 <number>255</number> 308 <number>255</number>
309 </property> 309 </property>
310 <property stdset="1"> 310 <property stdset="1">
311 <name>lineStep</name>
312 <number>1</number>
313 </property>
314 <property stdset="1">
315 <name>pageStep</name>
316 <number>16</number>
317 </property>
318 <property stdset="1">
319 <name>tracking</name>
320 <bool>true</bool>
321 </property>
322 <property stdset="1">
323 <name>orientation</name> 311 <name>orientation</name>
324 <enum>Horizontal</enum> 312 <enum>Horizontal</enum>
325 </property> 313 </property>
326 <property stdset="1"> 314 <property stdset="1">
327 <name>tickmarks</name> 315 <name>tickmarks</name>
328 <enum>Right</enum> 316 <enum>Right</enum>
329 </property> 317 </property>
330 <property stdset="1">
331 <name>tickInterval</name>
332 <number>32</number>
333 </property>
334 <property> 318 <property>
335 <name>whatsThis</name> 319 <name>whatsThis</name>
336 <string>set a fix value for backlight</string> 320 <string>set a fix value for backlight</string>
337 </property> 321 </property>
338 </widget> 322 </widget>
339 <widget> 323 <widget>
@@ -344,35 +328,19 @@
344 </property> 328 </property>
345 <property stdset="1"> 329 <property stdset="1">
346 <name>maxValue</name> 330 <name>maxValue</name>
347 <number>255</number> 331 <number>255</number>
348 </property> 332 </property>
349 <property stdset="1"> 333 <property stdset="1">
350 <name>lineStep</name>
351 <number>1</number>
352 </property>
353 <property stdset="1">
354 <name>pageStep</name>
355 <number>16</number>
356 </property>
357 <property stdset="1">
358 <name>tracking</name>
359 <bool>true</bool>
360 </property>
361 <property stdset="1">
362 <name>orientation</name> 334 <name>orientation</name>
363 <enum>Horizontal</enum> 335 <enum>Horizontal</enum>
364 </property> 336 </property>
365 <property stdset="1"> 337 <property stdset="1">
366 <name>tickmarks</name> 338 <name>tickmarks</name>
367 <enum>Right</enum> 339 <enum>Right</enum>
368 </property> 340 </property>
369 <property stdset="1">
370 <name>tickInterval</name>
371 <number>32</number>
372 </property>
373 <property> 341 <property>
374 <name>whatsThis</name> 342 <name>whatsThis</name>
375 <string>set a fix value for contrast</string> 343 <string>set a fix value for contrast</string>
376 </property> 344 </property>
377 </widget> 345 </widget>
378 <widget> 346 <widget>
@@ -409,13 +377,13 @@
409 </property> 377 </property>
410 </widget> 378 </widget>
411 <widget> 379 <widget>
412 <class>QLabel</class> 380 <class>QLabel</class>
413 <property stdset="1"> 381 <property stdset="1">
414 <name>name</name> 382 <name>name</name>
415 <cstring>TextLabel4</cstring> 383 <cstring>TL4</cstring>
416 </property> 384 </property>
417 <property stdset="1"> 385 <property stdset="1">
418 <name>text</name> 386 <name>text</name>
419 <string>Off</string> 387 <string>Off</string>
420 </property> 388 </property>
421 </widget> 389 </widget>
@@ -441,13 +409,13 @@
441 </property> 409 </property>
442 </spacer> 410 </spacer>
443 <widget> 411 <widget>
444 <class>QLabel</class> 412 <class>QLabel</class>
445 <property stdset="1"> 413 <property stdset="1">
446 <name>name</name> 414 <name>name</name>
447 <cstring>TextLabel5</cstring> 415 <cstring>TL5</cstring>
448 </property> 416 </property>
449 <property stdset="1"> 417 <property stdset="1">
450 <name>text</name> 418 <name>text</name>
451 <string>Full</string> 419 <string>Full</string>
452 </property> 420 </property>
453 </widget> 421 </widget>
@@ -563,13 +531,13 @@
563 <number>3</number> 531 <number>3</number>
564 </property> 532 </property>
565 <widget> 533 <widget>
566 <class>QGroupBox</class> 534 <class>QGroupBox</class>
567 <property stdset="1"> 535 <property stdset="1">
568 <name>name</name> 536 <name>name</name>
569 <cstring>GroupBox4</cstring> 537 <cstring>Group3</cstring>
570 </property> 538 </property>
571 <property stdset="1"> 539 <property stdset="1">
572 <name>enabled</name> 540 <name>enabled</name>
573 <bool>true</bool> 541 <bool>true</bool>
574 </property> 542 </property>
575 <property stdset="1"> 543 <property stdset="1">
@@ -759,13 +727,13 @@
759 </grid> 727 </grid>
760 </widget> 728 </widget>
761 <widget> 729 <widget>
762 <class>QGroupBox</class> 730 <class>QGroupBox</class>
763 <property stdset="1"> 731 <property stdset="1">
764 <name>name</name> 732 <name>name</name>
765 <cstring>GroupBox8</cstring> 733 <cstring>Group4</cstring>
766 </property> 734 </property>
767 <property stdset="1"> 735 <property stdset="1">
768 <name>title</name> 736 <name>title</name>
769 <string>Backlight</string> 737 <string>Backlight</string>
770 </property> 738 </property>
771 <property> 739 <property>
@@ -787,36 +755,20 @@
787 <class>QSlider</class> 755 <class>QSlider</class>
788 <property stdset="1"> 756 <property stdset="1">
789 <name>name</name> 757 <name>name</name>
790 <cstring>brightness_ac</cstring> 758 <cstring>brightness_ac</cstring>
791 </property> 759 </property>
792 <property stdset="1"> 760 <property stdset="1">
793 <name>minValue</name>
794 <number>0</number>
795 </property>
796 <property stdset="1">
797 <name>maxValue</name> 761 <name>maxValue</name>
798 <number>255</number> 762 <number>255</number>
799 </property> 763 </property>
800 <property stdset="1"> 764 <property stdset="1">
801 <name>lineStep</name>
802 <number>16</number>
803 </property>
804 <property stdset="1">
805 <name>pageStep</name>
806 <number>16</number>
807 </property>
808 <property stdset="1">
809 <name>value</name> 765 <name>value</name>
810 <number>255</number> 766 <number>255</number>
811 </property> 767 </property>
812 <property stdset="1"> 768 <property stdset="1">
813 <name>tracking</name>
814 <bool>true</bool>
815 </property>
816 <property stdset="1">
817 <name>orientation</name> 769 <name>orientation</name>
818 <enum>Horizontal</enum> 770 <enum>Horizontal</enum>
819 </property> 771 </property>
820 <property stdset="1"> 772 <property stdset="1">
821 <name>tickmarks</name> 773 <name>tickmarks</name>
822 <enum>Right</enum> 774 <enum>Right</enum>
@@ -830,46 +782,30 @@
830 <class>QSlider</class> 782 <class>QSlider</class>
831 <property stdset="1"> 783 <property stdset="1">
832 <name>name</name> 784 <name>name</name>
833 <cstring>contrast_ac</cstring> 785 <cstring>contrast_ac</cstring>
834 </property> 786 </property>
835 <property stdset="1"> 787 <property stdset="1">
836 <name>minValue</name>
837 <number>0</number>
838 </property>
839 <property stdset="1">
840 <name>maxValue</name> 788 <name>maxValue</name>
841 <number>255</number> 789 <number>255</number>
842 </property> 790 </property>
843 <property stdset="1"> 791 <property stdset="1">
844 <name>lineStep</name>
845 <number>16</number>
846 </property>
847 <property stdset="1">
848 <name>pageStep</name>
849 <number>16</number>
850 </property>
851 <property stdset="1">
852 <name>value</name> 792 <name>value</name>
853 <number>255</number> 793 <number>255</number>
854 </property> 794 </property>
855 <property stdset="1"> 795 <property stdset="1">
856 <name>tracking</name>
857 <bool>true</bool>
858 </property>
859 <property stdset="1">
860 <name>orientation</name> 796 <name>orientation</name>
861 <enum>Horizontal</enum> 797 <enum>Horizontal</enum>
862 </property> 798 </property>
863 <property stdset="1"> 799 <property stdset="1">
864 <name>tickmarks</name> 800 <name>tickmarks</name>
865 <enum>Right</enum> 801 <enum>Right</enum>
866 </property> 802 </property>
867 <property> 803 <property>
868 <name>whatsThis</name> 804 <name>whatsThis</name>
869 <string>set a fix value for backlight</string> 805 <string>set a fix value for contrast</string>
870 </property> 806 </property>
871 </widget> 807 </widget>
872 <widget> 808 <widget>
873 <class>QLayoutWidget</class> 809 <class>QLayoutWidget</class>
874 <property stdset="1"> 810 <property stdset="1">
875 <name>name</name> 811 <name>name</name>
@@ -1057,13 +993,13 @@
1057 <number>3</number> 993 <number>3</number>
1058 </property> 994 </property>
1059 <widget> 995 <widget>
1060 <class>QGroupBox</class> 996 <class>QGroupBox</class>
1061 <property stdset="1"> 997 <property stdset="1">
1062 <name>name</name> 998 <name>name</name>
1063 <cstring>GroupBox5</cstring> 999 <cstring>Group5</cstring>
1064 </property> 1000 </property>
1065 <property stdset="1"> 1001 <property stdset="1">
1066 <name>title</name> 1002 <name>title</name>
1067 <string>Warnings</string> 1003 <string>Warnings</string>
1068 </property> 1004 </property>
1069 <property> 1005 <property>