summaryrefslogtreecommitdiff
path: root/noncore/applets
authormickeyl <mickeyl>2005-01-13 14:13:35 (UTC)
committer mickeyl <mickeyl>2005-01-13 14:13:35 (UTC)
commitaf6d4d25fbec88903531e20d2a78ddb5f8105dbd (patch) (side-by-side diff)
tree050cf82f33aa7e1a5e1035a0b1e780caccf636ff /noncore/applets
parent6bc672f252c624eb1468222c5f9037a671967aef (diff)
downloadopie-af6d4d25fbec88903531e20d2a78ddb5f8105dbd.zip
opie-af6d4d25fbec88903531e20d2a78ddb5f8105dbd.tar.gz
opie-af6d4d25fbec88903531e20d2a78ddb5f8105dbd.tar.bz2
show it
`CVS:' are removed automatically CVS: CVS: Committing in . CVS: CVS: Modified Files: CVS: noncore/applets/volumeapplet2/volumeapplet.cpp CVS: ----------------------------------------------------------------------
Diffstat (limited to 'noncore/applets') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/applets/volumeapplet2/volumeapplet.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/noncore/applets/volumeapplet2/volumeapplet.cpp b/noncore/applets/volumeapplet2/volumeapplet.cpp
index f82dc63..c153a78 100644
--- a/noncore/applets/volumeapplet2/volumeapplet.cpp
+++ b/noncore/applets/volumeapplet2/volumeapplet.cpp
@@ -56,3 +56,6 @@ Channel::Channel( OMixerInterface* mixer, QWidget* parent, const char* name )
_name = new QLabel( name, this );
- _volume = new QSlider( 0, 100, 10, mixer->volume( name ), QSlider::Vertical, this );
+ _name->setFont( QFont( "Vera", 8 ) );
+ _volume = new QSlider( 0, 100, 10, mixer->volume( name ) & 0xff, QSlider::Vertical, this );
+ _volume->setTickmarks( QSlider::Both );
+ _volume->setTickInterval( 20 );
_mute = new OLedBox( green, this );
@@ -76,2 +79,3 @@ VolumeAppletControl::VolumeAppletControl( OTaskbarApplet* parent, const char* na
l = new QGridLayout( this );
+ build();
}
@@ -97,3 +101,3 @@ void VolumeAppletControl::build()
- l->addWidget( new Channel( mixer, this, *it ), x++, y );
+ l->addWidget( new Channel( mixer, this, *it ), 0, x++, AlignCenter );
}
@@ -111,3 +115,2 @@ void VolumeAppletControl::showEvent( QShowEvent* e )
odebug << "showEvent" << oendl;
- build();
QWidget::showEvent( e );
@@ -125,3 +128,3 @@ QSize VolumeAppletControl::sizeHint() const
{
- return QFrame::sizeHint();
+ return QSize( 200, 200 ); //QFrame::sizeHint();
}