summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-05-10 16:58:33 (UTC)
committer mickeyl <mickeyl>2003-05-10 16:58:33 (UTC)
commit2a58ee1a76e1dcfa055293c5e3c24fad31678094 (patch) (unidiff)
tree8b9367ab523f0f5b3adbcd77a9debd80f7054e90
parent7f8b43992dffa298d84a3a293fa0a198e51d6a1c (diff)
downloadopie-2a58ee1a76e1dcfa055293c5e3c24fad31678094.zip
opie-2a58ee1a76e1dcfa055293c5e3c24fad31678094.tar.gz
opie-2a58ee1a76e1dcfa055293c5e3c24fad31678094.tar.bz2
workaround half-visible volume pixmap
Note: For after Opie 1.0 we need TaskBar::height()
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/volumeapplet/volume.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/applets/volumeapplet/volume.cpp b/core/applets/volumeapplet/volume.cpp
index 906bb77..b129be3 100644
--- a/core/applets/volumeapplet/volume.cpp
+++ b/core/applets/volumeapplet/volume.cpp
@@ -602,182 +602,182 @@ void VolumeControl::screenTapToggled ( bool b )
602{ 602{
603 m_snd_touch = b; 603 m_snd_touch = b;
604 writeConfigEntry ( "TouchSound", m_snd_touch, UPD_Vol ); 604 writeConfigEntry ( "TouchSound", m_snd_touch, UPD_Vol );
605} 605}
606 606
607void VolumeControl::keyClickToggled ( bool b ) 607void VolumeControl::keyClickToggled ( bool b )
608{ 608{
609 m_snd_key = b; 609 m_snd_key = b;
610 writeConfigEntry ( "KeySound", m_snd_key, UPD_Vol ); 610 writeConfigEntry ( "KeySound", m_snd_key, UPD_Vol );
611} 611}
612 612
613void VolumeControl::alarmSoundToggled ( bool b ) 613void VolumeControl::alarmSoundToggled ( bool b )
614{ 614{
615 m_snd_alarm = b; 615 m_snd_alarm = b;
616 writeConfigEntry ( "AlarmSound", m_snd_alarm, UPD_Vol ); 616 writeConfigEntry ( "AlarmSound", m_snd_alarm, UPD_Vol );
617} 617}
618 618
619void VolumeControl::volMuteToggled ( bool b ) 619void VolumeControl::volMuteToggled ( bool b )
620{ 620{
621 m_vol_muted = !b; 621 m_vol_muted = !b;
622 622
623 m_icon-> redraw ( true ); 623 m_icon-> redraw ( true );
624 624
625 writeConfigEntry ( "Mute", m_vol_muted, UPD_Vol ); 625 writeConfigEntry ( "Mute", m_vol_muted, UPD_Vol );
626} 626}
627 627
628void VolumeControl::micMuteToggled ( bool b ) 628void VolumeControl::micMuteToggled ( bool b )
629{ 629{
630 m_mic_muted = !b; 630 m_mic_muted = !b;
631 writeConfigEntry ( "MicMute", m_mic_muted, UPD_Mic ); 631 writeConfigEntry ( "MicMute", m_mic_muted, UPD_Mic );
632} 632}
633 633
634 634
635void VolumeControl::volMoved ( int percent ) 635void VolumeControl::volMoved ( int percent )
636{ 636{
637 m_vol_percent = 100 - percent; 637 m_vol_percent = 100 - percent;
638 638
639 // clamp volume percent to be between 0 and 100 639 // clamp volume percent to be between 0 and 100
640 m_vol_percent = ( m_vol_percent < 0 ) ? 0 : (( m_vol_percent > 100 ) ? 100 : m_vol_percent ); 640 m_vol_percent = ( m_vol_percent < 0 ) ? 0 : (( m_vol_percent > 100 ) ? 100 : m_vol_percent );
641 // repaint just the little volume rectangle 641 // repaint just the little volume rectangle
642 m_icon-> redraw ( false ); 642 m_icon-> redraw ( false );
643 643
644 writeConfigEntry ( "VolumePercent", m_vol_percent, UPD_Vol ); 644 writeConfigEntry ( "VolumePercent", m_vol_percent, UPD_Vol );
645} 645}
646 646
647void VolumeControl::micMoved ( int percent ) 647void VolumeControl::micMoved ( int percent )
648{ 648{
649 m_mic_percent = 100 - percent; 649 m_mic_percent = 100 - percent;
650 650
651 // clamp volume percent to be between 0 and 100 651 // clamp volume percent to be between 0 and 100
652 m_mic_percent = ( m_mic_percent < 0 ) ? 0 : (( m_mic_percent > 100 ) ? 100 : m_mic_percent ); 652 m_mic_percent = ( m_mic_percent < 0 ) ? 0 : (( m_mic_percent > 100 ) ? 100 : m_mic_percent );
653 653
654 writeConfigEntry ( "Mic", m_mic_percent, UPD_Mic ); 654 writeConfigEntry ( "Mic", m_mic_percent, UPD_Mic );
655} 655}
656 656
657void VolumeControl::alarmMoved ( int percent ) 657void VolumeControl::alarmMoved ( int percent )
658{ 658{
659 m_alarm_percent = 100 - percent; 659 m_alarm_percent = 100 - percent;
660 660
661 // clamp volume percent to be between 0 and 100 661 // clamp volume percent to be between 0 and 100
662 m_alarm_percent = ( m_alarm_percent < 0 ) ? 0 : (( m_alarm_percent > 100 ) ? 100 : m_alarm_percent ); 662 m_alarm_percent = ( m_alarm_percent < 0 ) ? 0 : (( m_alarm_percent > 100 ) ? 100 : m_alarm_percent );
663 663
664 writeConfigEntry ( "AlarmPercent", m_alarm_percent, UPD_None ); 664 writeConfigEntry ( "AlarmPercent", m_alarm_percent, UPD_None );
665} 665}
666 666
667 667
668void VolumeControl::bassMoved ( int percent ) 668void VolumeControl::bassMoved ( int percent )
669{ 669{
670 m_bass_percent = 100 - percent; 670 m_bass_percent = 100 - percent;
671 671
672 // clamp bass percent to be between 0 and 100 672 // clamp bass percent to be between 0 and 100
673 m_bass_percent = ( m_bass_percent < 0 ) ? 0 : (( m_bass_percent > 100 ) ? 100 : m_bass_percent ); 673 m_bass_percent = ( m_bass_percent < 0 ) ? 0 : (( m_bass_percent > 100 ) ? 100 : m_bass_percent );
674 674
675 writeConfigEntry ( "BassPercent", m_bass_percent, UPD_Bass ); 675 writeConfigEntry ( "BassPercent", m_bass_percent, UPD_Bass );
676} 676}
677 677
678 678
679 679
680void VolumeControl::trebleMoved ( int percent ) 680void VolumeControl::trebleMoved ( int percent )
681{ 681{
682 m_treble_percent = 100 - percent; 682 m_treble_percent = 100 - percent;
683 683
684 // clamp treble percent to be between 0 and 100 684 // clamp treble percent to be between 0 and 100
685 m_treble_percent = ( m_treble_percent < 0 ) ? 0 : (( m_treble_percent > 100 ) ? 100 : m_treble_percent ); 685 m_treble_percent = ( m_treble_percent < 0 ) ? 0 : (( m_treble_percent > 100 ) ? 100 : m_treble_percent );
686 686
687 writeConfigEntry ( "TreblePercent", m_treble_percent, UPD_Treble ); 687 writeConfigEntry ( "TreblePercent", m_treble_percent, UPD_Treble );
688} 688}
689 689
690 690
691 691
692void VolumeControl::writeConfigEntry ( const char *entry, int val, eUpdate upd ) 692void VolumeControl::writeConfigEntry ( const char *entry, int val, eUpdate upd )
693{ 693{
694 Config cfg ( "qpe" ); 694 Config cfg ( "qpe" );
695 cfg. setGroup ( "Volume" ); 695 cfg. setGroup ( "Volume" );
696 cfg. writeEntry ( entry, val ); 696 cfg. writeEntry ( entry, val );
697// cfg. write ( ); 697// cfg. write ( );
698 698
699#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP) 699#if ( defined Q_WS_QWS || defined(_WS_QWS_) ) && !defined(QT_NO_COP)
700 switch ( upd ) { 700 switch ( upd ) {
701 case UPD_Vol: { 701 case UPD_Vol: {
702 QCopEnvelope ( "QPE/System", "volumeChange(bool)" ) << m_vol_muted; 702 QCopEnvelope ( "QPE/System", "volumeChange(bool)" ) << m_vol_muted;
703 break; 703 break;
704 } 704 }
705 case UPD_Mic: { 705 case UPD_Mic: {
706 QCopEnvelope ( "QPE/System", "micChange(bool)" ) << m_mic_muted; 706 QCopEnvelope ( "QPE/System", "micChange(bool)" ) << m_mic_muted;
707 break; 707 break;
708 } 708 }
709 case UPD_Bass: { 709 case UPD_Bass: {
710 QCopEnvelope ( "QPE/System", "bassChange(bool)" ) << true; 710 QCopEnvelope ( "QPE/System", "bassChange(bool)" ) << true;
711 break; 711 break;
712 } 712 }
713 case UPD_Treble: { 713 case UPD_Treble: {
714 QCopEnvelope ( "QPE/System", "trebleChange(bool)" ) << true; 714 QCopEnvelope ( "QPE/System", "trebleChange(bool)" ) << true;
715 break; 715 break;
716 } 716 }
717 717
718 case UPD_None: 718 case UPD_None:
719 break; 719 break;
720 } 720 }
721#endif 721#endif
722} 722}
723 723
724//=========================================================================== 724//===========================================================================
725 725
726VolumeApplet::VolumeApplet( QWidget *parent, const char *name ) 726VolumeApplet::VolumeApplet( QWidget *parent, const char *name )
727 : QWidget( parent, name ) 727 : QWidget( parent, name )
728{ 728{
729 setFixedWidth ( AppLnk::smallIconSize() ); 729 setFixedWidth ( AppLnk::smallIconSize() );
730 setFixedHeight ( AppLnk::smallIconSize() ); 730 setFixedHeight ( AppLnk::smallIconSize()+4 );
731 731
732 m_pixmap = new QPixmap ( Resource::loadPixmap ( "volume" )); 732 m_pixmap = new QPixmap ( Resource::loadPixmap ( "volume" ));
733 m_dialog = new VolumeControl ( this, true, this, "volumecontrol" ); 733 m_dialog = new VolumeControl ( this, true, this, "volumecontrol" );
734 734
735 connect ( qApp, SIGNAL( volumeChanged ( bool )), m_dialog, SLOT( volumeChanged( bool ))); 735 connect ( qApp, SIGNAL( volumeChanged ( bool )), m_dialog, SLOT( volumeChanged( bool )));
736 connect ( qApp, SIGNAL( micChanged ( bool )), m_dialog, SLOT ( micChanged( bool ))); 736 connect ( qApp, SIGNAL( micChanged ( bool )), m_dialog, SLOT ( micChanged( bool )));
737} 737}
738 738
739VolumeApplet::~VolumeApplet() 739VolumeApplet::~VolumeApplet()
740{ 740{
741 delete m_pixmap; 741 delete m_pixmap;
742} 742}
743 743
744 744
745void VolumeApplet::mousePressEvent ( QMouseEvent * ) 745void VolumeApplet::mousePressEvent ( QMouseEvent * )
746{ 746{
747 if ( m_dialog-> isVisible ( )) 747 if ( m_dialog-> isVisible ( ))
748 m_dialog-> hide ( ); 748 m_dialog-> hide ( );
749 else 749 else
750 m_dialog-> show ( true ); 750 m_dialog-> show ( true );
751} 751}
752 752
753void VolumeApplet::redraw ( bool all ) 753void VolumeApplet::redraw ( bool all )
754{ 754{
755 if ( all ) 755 if ( all )
756 repaint ( true ); 756 repaint ( true );
757 else 757 else
758 repaint ( 2, height ( ) - 3, width ( ) - 4, 2, false ); 758 repaint ( 2, height ( ) - 3, width ( ) - 4, 2, false );
759} 759}
760 760
761 761
762void VolumeApplet::paintEvent ( QPaintEvent * ) 762void VolumeApplet::paintEvent ( QPaintEvent * )
763{ 763{
764 QPainter p ( this ); 764 QPainter p ( this );
765 765
766 p. drawPixmap ( 0, 1, *m_pixmap ); 766 p. drawPixmap ( 0, 1, *m_pixmap );
767 p. setPen ( darkGray ); 767 p. setPen ( darkGray );
768 p. drawRect ( 1, height() - 4, width() - 2, 4 ); 768 p. drawRect ( 1, height() - 4, width() - 2, 4 );
769 769
770 int pixelsWide = m_dialog-> volPercent ( ) * ( width() - 4 ) / 100; 770 int pixelsWide = m_dialog-> volPercent ( ) * ( width() - 4 ) / 100;
771 p. fillRect ( 2, height() - 3, pixelsWide, 2, red ); 771 p. fillRect ( 2, height() - 3, pixelsWide, 2, red );
772 p. fillRect ( pixelsWide + 2, height() - 3, width() - 4 - pixelsWide, 2, lightGray ); 772 p. fillRect ( pixelsWide + 2, height() - 3, width() - 4 - pixelsWide, 2, lightGray );
773 773
774 if ( m_dialog-> volMuted ( )) { 774 if ( m_dialog-> volMuted ( )) {
775 p. setPen ( red ); 775 p. setPen ( red );
776 p. drawLine ( 1, 2, width() - 2, height() - 5 ); 776 p. drawLine ( 1, 2, width() - 2, height() - 5 );
777 p. drawLine ( 1, 3, width() - 2, height() - 4 ); 777 p. drawLine ( 1, 3, width() - 2, height() - 4 );
778 p. drawLine ( width() - 2, 2, 1, height() - 5 ); 778 p. drawLine ( width() - 2, 2, 1, height() - 5 );
779 p. drawLine ( width() - 2, 3, 1, height() - 4 ); 779 p. drawLine ( width() - 2, 3, 1, height() - 4 );
780 } 780 }
781} 781}
782 782
783 783