author | simon <simon> | 2002-12-08 21:19:07 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-08 21:19:07 (UTC) |
commit | 6c0988792eed5cefcc7d1f0c179ccf5317b5baab (patch) (side-by-side diff) | |
tree | 27349c3c72d2f623f92ae5ee4b6b871b068d1e55 | |
parent | b3ae76e6afdfd734789a85c5e80e8e846b15d6cf (diff) | |
download | opie-6c0988792eed5cefcc7d1f0c179ccf5317b5baab.zip opie-6c0988792eed5cefcc7d1f0c179ccf5317b5baab.tar.gz opie-6c0988792eed5cefcc7d1f0c179ccf5317b5baab.tar.bz2 |
- made audioButtons a member variable here, too
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 28 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.h | 2 |
2 files changed, 26 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index 879d0b4..4172da0 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp @@ -62,4 +62,5 @@ struct MediaButton { //Layout information for the audioButtons (and if it is a toggle button or not) +/* MediaWidget::Button audioButtons[] = { { TRUE, FALSE, FALSE }, // play @@ -74,4 +75,5 @@ MediaWidget::Button audioButtons[] = { { FALSE, FALSE, FALSE } // back }; +*/ const char * const skin_mask_file_names[10] = { @@ -87,5 +89,5 @@ void changeTextColor( QWidget * w) { } -const int numButtons = (sizeof(audioButtons)/sizeof(MediaWidget::Button)); +//const int numButtons = (sizeof(audioButtons)/sizeof(MediaWidget::Button)); } @@ -95,4 +97,22 @@ AudioWidget::AudioWidget( PlayListWidget &playList, MediaPlayerState &mediaPlaye MediaWidget( playList, mediaPlayerState, parent, name ), songInfo( this ), slider( Qt::Horizontal, this ), time( this ) { + Button defaultButton; + defaultButton.isToggle = defaultButton.isHeld = defaultButton.isDown = false; + Button toggleButton; + toggleButton.isToggle = true; + toggleButton.isHeld = toggleButton.isDown = false; + + audioButtons.reserve( 10 ); + audioButtons.push_back( toggleButton ); // play + audioButtons.push_back( defaultButton ); // stop + audioButtons.push_back( defaultButton ); // next + audioButtons.push_back( defaultButton ); // previous + audioButtons.push_back( defaultButton ); // volume up + audioButtons.push_back( defaultButton ); // volume down + audioButtons.push_back( toggleButton ); // repeat/loop + audioButtons.push_back( defaultButton ); // playlist + audioButtons.push_back( defaultButton ); // forward + audioButtons.push_back( defaultButton ); // back + setCaption( tr("OpiePlayer") ); @@ -381,5 +401,5 @@ void AudioWidget::timerEvent( QTimerEvent * ) { void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { - for ( int i = 0; i < numButtons; i++ ) { + for ( unsigned int i = 0; i < audioButtons.size(); i++ ) { if ( event->state() == QMouseEvent::LeftButton ) { // The test to see if the mouse click is inside the button or not @@ -449,5 +469,5 @@ void AudioWidget::paintEvent( QPaintEvent * pe ) { p.translate( -pe->rect().topLeft().x(), -pe->rect().topLeft().y() ); p.drawTiledPixmap( pe->rect(), pixBg, pe->rect().topLeft() ); - for ( int i = 0; i < numButtons; i++ ) + for ( unsigned int i = 0; i < audioButtons.size(); i++ ) paintButton( &p, i ); QPainter p2( this ); @@ -455,5 +475,5 @@ void AudioWidget::paintEvent( QPaintEvent * pe ) { } else { QPainter p( this ); - for ( int i = 0; i < numButtons; i++ ) + for ( unsigned int i = 0; i < audioButtons.size(); i++ ) paintButton( &p, i ); } diff --git a/noncore/multimedia/opieplayer2/audiowidget.h b/noncore/multimedia/opieplayer2/audiowidget.h index 52a358c..e09c5f8 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.h +++ b/noncore/multimedia/opieplayer2/audiowidget.h @@ -111,4 +111,6 @@ private: int xoff, yoff; bool isStreaming : 1; + + ButtonVector audioButtons; }; |