summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/volumeapplet/volume.cpp49
-rw-r--r--core/applets/volumeapplet/volume.h2
2 files changed, 22 insertions, 29 deletions
diff --git a/core/applets/volumeapplet/volume.cpp b/core/applets/volumeapplet/volume.cpp
index b047877..eedc749 100644
--- a/core/applets/volumeapplet/volume.cpp
+++ b/core/applets/volumeapplet/volume.cpp
@@ -178,30 +178,21 @@ static const char * alarm_xpm[] = {
178" /@. ", 178" /@. ",
179" "}; 179" "};
180 180
181VolumeControl::VolumeControl ( VolumeApplet *icon, bool /*showMic*/, QWidget *parent, const char *name ) 181VolumeControl::VolumeControl ( VolumeApplet *icon, bool /*showMic*/, QWidget *parent, const char *name )
182 : QFrame ( parent, name, WStyle_StaysOnTop | WType_Popup ) 182 : QFrame ( parent, name, WStyle_StaysOnTop | WType_Popup )
183{ 183{
184 m_icon = icon; 184 m_icon = icon;
185 185
186 bool has_wav_alarm = false; 186 bool has_wav_alarm = true;
187 187
188 switch ( ODevice::inst ( )-> model ( )) { // we need to add other devices eventually 188 switch ( ODevice::inst ( )-> model ( )) { // we need to add other devices eventually
189 case OMODEL_iPAQ_H31xx:
190 case OMODEL_iPAQ_H36xx:
191 case OMODEL_iPAQ_H37xx:
192 case OMODEL_iPAQ_H38xx:
193 has_wav_alarm = true;
194 break;
195 case OMODEL_Zaurus_SL5000: 189 case OMODEL_Zaurus_SL5000:
196 has_wav_alarm = false; //poor guys probably feeling left out... 190 has_wav_alarm = false; //poor guys probably feeling left out...
197 break;
198 default:
199 has_wav_alarm = true; //lets just presume
200 break; 191 break;
201 } 192 }
202 193
203 194
204 setFrameStyle ( QFrame::PopupPanel | QFrame::Raised ); 195 setFrameStyle ( QFrame::PopupPanel | QFrame::Raised );
205 196
206 QGridLayout *grid = new QGridLayout ( this, 1, 1, 6, 4 ); 197 QGridLayout *grid = new QGridLayout ( this, 1, 1, 6, 4 );
207 grid-> setSpacing ( 4 ); 198 grid-> setSpacing ( 4 );
@@ -403,26 +394,23 @@ void VolumeControl::rateTimerDone ( )
403 volSlider-> setValue ( volSlider-> value ( ) + 2 ); 394 volSlider-> setValue ( volSlider-> value ( ) + 2 );
404} 395}
405 396
406void VolumeControl::show ( bool /*showMic*/ ) 397void VolumeControl::show ( bool /*showMic*/ )
407{ 398{
408 readConfig ( ); 399 readConfig ( );
409 400
410 QPoint curPos = m_icon-> mapToGlobal ( QPoint ( 0, 0 )); 401 QPoint curPos = m_icon-> mapToGlobal ( QPoint ( 0, 0 ));
411 printf ( "SHOW AT : %d/%d\n", curPos.x(), curPos.y());
412 printf ( "SIZEHINT: %d/%d\n", sizeHint().width(),sizeHint().height());
413 402
414 int w = sizeHint ( ). width ( ); 403 int w = sizeHint ( ). width ( );
415 int x = curPos.x ( ) - ( w / 2 ); 404 int x = curPos.x ( ) - ( w / 2 );
416 405
417 if (( x + w ) > QPEApplication::desktop ( )-> width ( )) 406 if (( x + w ) > QPEApplication::desktop ( )-> width ( ))
418 x = QPEApplication::desktop ( )-> width ( ) - w; 407 x = QPEApplication::desktop ( )-> width ( ) - w;
419 408
420
421 move ( x, curPos. y ( ) - sizeHint ( ). height ( )); 409 move ( x, curPos. y ( ) - sizeHint ( ). height ( ));
422 QFrame::show ( ); 410 QFrame::show ( );
423 411
424} 412}
425 413
426void VolumeControl::readConfig ( bool force ) 414void VolumeControl::readConfig ( bool force )
427{ 415{
428 Config cfg ( "qpe" ); 416 Config cfg ( "qpe" );
@@ -466,31 +454,26 @@ void VolumeControl::readConfig ( bool force )
466 tapBox-> setChecked ( m_snd_touch ); 454 tapBox-> setChecked ( m_snd_touch );
467 if ( force || ( m_snd_alarm != old_sa )) 455 if ( force || ( m_snd_alarm != old_sa ))
468 alarmBox-> setChecked ( m_snd_alarm ); 456 alarmBox-> setChecked ( m_snd_alarm );
469} 457}
470 458
471 459
472void VolumeControl::volumeChanged ( bool nowMuted ) 460void VolumeControl::volumeChanged ( bool nowMuted )
473{ 461{
474 int previousVolume = m_vol_percent; 462 int prevVol = m_vol_percent;
463 bool prevMute = m_vol_muted;
475 464
476 if ( !nowMuted ) 465 readConfig ( );
477 readConfig ( );
478 466
479 // Handle case where muting it toggled 467 // Handle case where muting it toggled
480 if ( m_vol_muted != nowMuted ) { 468 if ( m_vol_muted != prevMute )
481 m_vol_muted = nowMuted; 469 m_icon-> redraw ( true );
482 m_icon-> repaint ( true ); 470 else if ( prevVol != m_vol_percent ) // Avoid over repainting
483 } 471 m_icon-> redraw ( false );
484 else if ( previousVolume != m_vol_percent ) {
485 // Avoid over repainting
486 m_icon-> repaint( 2, height ( ) - 3, width ( ) - 4, 2, false );
487 }
488
489} 472}
490 473
491void VolumeControl::micChanged ( bool nowMuted ) 474void VolumeControl::micChanged ( bool nowMuted )
492{ 475{
493 if ( !nowMuted ) 476 if ( !nowMuted )
494 readConfig ( ); 477 readConfig ( );
495 m_mic_muted = nowMuted; 478 m_mic_muted = nowMuted;
496} 479}
@@ -512,17 +495,17 @@ void VolumeControl::alarmSoundToggled ( bool b )
512 m_snd_alarm = b; 495 m_snd_alarm = b;
513 writeConfigEntry ( "AlarmSound", m_snd_alarm, UPD_Vol ); 496 writeConfigEntry ( "AlarmSound", m_snd_alarm, UPD_Vol );
514} 497}
515 498
516void VolumeControl::volMuteToggled ( bool b ) 499void VolumeControl::volMuteToggled ( bool b )
517{ 500{
518 m_vol_muted = !b; 501 m_vol_muted = !b;
519 502
520 m_icon-> repaint ( !m_vol_muted ); // clear if removing mute 503 m_icon-> redraw ( true );
521 504
522 writeConfigEntry ( "Mute", m_vol_muted, UPD_Vol ); 505 writeConfigEntry ( "Mute", m_vol_muted, UPD_Vol );
523} 506}
524 507
525void VolumeControl::micMuteToggled ( bool b ) 508void VolumeControl::micMuteToggled ( bool b )
526{ 509{
527 m_mic_muted = !b; 510 m_mic_muted = !b;
528 writeConfigEntry ( "MicMute", m_mic_muted, UPD_Mic ); 511 writeConfigEntry ( "MicMute", m_mic_muted, UPD_Mic );
@@ -531,18 +514,18 @@ void VolumeControl::micMuteToggled ( bool b )
531 514
532void VolumeControl::volMoved ( int percent ) 515void VolumeControl::volMoved ( int percent )
533{ 516{
534 m_vol_percent = 100 - percent; 517 m_vol_percent = 100 - percent;
535 518
536 // clamp volume percent to be between 0 and 100 519 // clamp volume percent to be between 0 and 100
537 m_vol_percent = ( m_vol_percent < 0 ) ? 0 : (( m_vol_percent > 100 ) ? 100 : m_vol_percent ); 520 m_vol_percent = ( m_vol_percent < 0 ) ? 0 : (( m_vol_percent > 100 ) ? 100 : m_vol_percent );
538 // repaint just the little volume rectangle 521 // repaint just the little volume rectangle
539 repaint ( 2, height ( ) - 3, width ( ) - 4, 2, false ); 522 m_icon-> redraw ( false );
540 523
541 writeConfigEntry ( "VolumePercent", m_vol_percent, UPD_Vol ); 524 writeConfigEntry ( "VolumePercent", m_vol_percent, UPD_Vol );
542} 525}
543 526
544void VolumeControl::micMoved ( int percent ) 527void VolumeControl::micMoved ( int percent )
545{ 528{
546 m_mic_percent = 100 - percent; 529 m_mic_percent = 100 - percent;
547 530
548 // clamp volume percent to be between 0 and 100 531 // clamp volume percent to be between 0 and 100
@@ -609,16 +592,24 @@ VolumeApplet::~VolumeApplet()
609void VolumeApplet::mousePressEvent ( QMouseEvent * ) 592void VolumeApplet::mousePressEvent ( QMouseEvent * )
610{ 593{
611 if ( m_dialog-> isVisible ( )) 594 if ( m_dialog-> isVisible ( ))
612 m_dialog-> hide ( ); 595 m_dialog-> hide ( );
613 else 596 else
614 m_dialog-> show ( true ); 597 m_dialog-> show ( true );
615} 598}
616 599
600void VolumeApplet::redraw ( bool all )
601{
602 if ( all )
603 repaint ( true );
604 else
605 repaint ( 2, height ( ) - 3, width ( ) - 4, 2, false );
606}
607
617 608
618void VolumeApplet::paintEvent ( QPaintEvent * ) 609void VolumeApplet::paintEvent ( QPaintEvent * )
619{ 610{
620 QPainter p ( this ); 611 QPainter p ( this );
621 612
622 p. drawPixmap ( 0, 1, *m_pixmap ); 613 p. drawPixmap ( 0, 1, *m_pixmap );
623 p. setPen ( darkGray ); 614 p. setPen ( darkGray );
624 p. drawRect ( 1, height() - 4, width() - 2, 4 ); 615 p. drawRect ( 1, height() - 4, width() - 2, 4 );
diff --git a/core/applets/volumeapplet/volume.h b/core/applets/volumeapplet/volume.h
index ff5c64a..4d988ac 100644
--- a/core/applets/volumeapplet/volume.h
+++ b/core/applets/volumeapplet/volume.h
@@ -105,16 +105,18 @@ private:
105 105
106class VolumeApplet : public QWidget { 106class VolumeApplet : public QWidget {
107 Q_OBJECT 107 Q_OBJECT
108 108
109public: 109public:
110 VolumeApplet ( QWidget *parent = 0, const char *name=0 ); 110 VolumeApplet ( QWidget *parent = 0, const char *name=0 );
111 ~VolumeApplet ( ); 111 ~VolumeApplet ( );
112 112
113 void redraw ( bool all = true );
114
113protected: 115protected:
114 virtual void mousePressEvent ( QMouseEvent * ); 116 virtual void mousePressEvent ( QMouseEvent * );
115 virtual void paintEvent ( QPaintEvent* ); 117 virtual void paintEvent ( QPaintEvent* );
116 118
117private: 119private:
118 QPixmap * m_pixmap; 120 QPixmap * m_pixmap;
119 VolumeControl *m_dialog; 121 VolumeControl *m_dialog;
120}; 122};