summaryrefslogtreecommitdiff
path: root/libopie2
Unidiff
Diffstat (limited to 'libopie2') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_jornada.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/libopie2/opiecore/device/odevice_jornada.cpp b/libopie2/opiecore/device/odevice_jornada.cpp
index bcde425..3acba03 100644
--- a/libopie2/opiecore/device/odevice_jornada.cpp
+++ b/libopie2/opiecore/device/odevice_jornada.cpp
@@ -149,25 +149,30 @@ void Jornada::initButtons()
149 b. setPixmap ( Resource::loadPixmap ( ib->pix )); 149 b. setPixmap ( Resource::loadPixmap ( ib->pix ));
150 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); 150 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction ));
151 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); 151 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction ));
152 152
153 d->m_buttons->append ( b ); 153 d->m_buttons->append ( b );
154 } 154 }
155 } 155 }
156 reloadButtonMapping(); 156 reloadButtonMapping();
157} 157}
158 158
159int Jornada::displayBrightnessResolution() const 159int Jornada::displayBrightnessResolution() const
160{ 160{
161 return 255; 161 if ( d->m_model == Model_Jornada_56x )
162 return 190;
163 else if (d->m_model == Model_Jornada_720 )
164 return 255;
165 else
166 return 0;
162} 167}
163 168
164 169
165bool Jornada::setDisplayBrightness( int bright ) 170bool Jornada::setDisplayBrightness( int bright )
166{ 171{
167 bool res = false; 172 bool res = false;
168 173
169 if ( bright > 255 ) 174 if ( bright > 255 )
170 bright = 255; 175 bright = 255;
171 if ( bright < 0 ) 176 if ( bright < 0 )
172 bright = 0; 177 bright = 0;
173 178