summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/videowidget.cpp
Unidiff
Diffstat (limited to 'noncore/multimedia/opieplayer2/videowidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp42
1 files changed, 21 insertions, 21 deletions
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index 6e2e03e..7838229 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -78,10 +78,10 @@ VideoWidget::VideoWidget( PlayListWidget &playList, MediaPlayerState &mediaPlaye
78 78
79 videoButtons.reserve( 7 ); 79 buttons.reserve( 7 );
80 videoButtons.push_back( defaultButton ); // stop 80 buttons.push_back( defaultButton ); // stop
81 videoButtons.push_back( toggleButton ); // play 81 buttons.push_back( toggleButton ); // play
82 videoButtons.push_back( defaultButton ); // previous 82 buttons.push_back( defaultButton ); // previous
83 videoButtons.push_back( defaultButton ); // next 83 buttons.push_back( defaultButton ); // next
84 videoButtons.push_back( defaultButton ); // volUp 84 buttons.push_back( defaultButton ); // volUp
85 videoButtons.push_back( defaultButton ); // volDown 85 buttons.push_back( defaultButton ); // volDown
86 videoButtons.push_back( toggleButton ); //fullscreen 86 buttons.push_back( toggleButton ); //fullscreen
87 87
@@ -260,3 +260,3 @@ void VideoWidget::updateSlider( long i, long max ) {
260void VideoWidget::setToggleButton( int i, bool down ) { 260void VideoWidget::setToggleButton( int i, bool down ) {
261 if ( down != videoButtons[i].isDown ) { 261 if ( down != buttons[i].isDown ) {
262 toggleButton( i ); 262 toggleButton( i );
@@ -266,3 +266,3 @@ void VideoWidget::setToggleButton( int i, bool down ) {
266void VideoWidget::toggleButton( int i ) { 266void VideoWidget::toggleButton( int i ) {
267 videoButtons[i].isDown = !videoButtons[i].isDown; 267 buttons[i].isDown = !buttons[i].isDown;
268 QPainter p(this); 268 QPainter p(this);
@@ -273,3 +273,3 @@ void VideoWidget::paintButton( QPainter *p, int i ) {
273 273
274 if ( videoButtons[i].isDown ) { 274 if ( buttons[i].isDown ) {
275 p->drawPixmap( xoff, yoff, *buttonPixDown[i] ); 275 p->drawPixmap( xoff, yoff, *buttonPixDown[i] );
@@ -281,3 +281,3 @@ void VideoWidget::paintButton( QPainter *p, int i ) {
281void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { 281void VideoWidget::mouseMoveEvent( QMouseEvent *event ) {
282 for ( unsigned int i = 0; i < videoButtons.size(); i++ ) { 282 for ( unsigned int i = 0; i < buttons.size(); i++ ) {
283 if ( event->state() == QMouseEvent::LeftButton ) { 283 if ( event->state() == QMouseEvent::LeftButton ) {
@@ -291,4 +291,4 @@ void VideoWidget::mouseMoveEvent( QMouseEvent *event ) {
291 291
292 if ( isOnButton && !videoButtons[i].isHeld ) { 292 if ( isOnButton && !buttons[i].isHeld ) {
293 videoButtons[i].isHeld = TRUE; 293 buttons[i].isHeld = TRUE;
294 toggleButton(i); 294 toggleButton(i);
@@ -303,4 +303,4 @@ void VideoWidget::mouseMoveEvent( QMouseEvent *event ) {
303 } 303 }
304 } else if ( !isOnButton && videoButtons[i].isHeld ) { 304 } else if ( !isOnButton && buttons[i].isHeld ) {
305 videoButtons[i].isHeld = FALSE; 305 buttons[i].isHeld = FALSE;
306 toggleButton(i); 306 toggleButton(i);
@@ -309,5 +309,5 @@ void VideoWidget::mouseMoveEvent( QMouseEvent *event ) {
309 309
310 if ( videoButtons[i].isHeld ) { 310 if ( buttons[i].isHeld ) {
311 videoButtons[i].isHeld = FALSE; 311 buttons[i].isHeld = FALSE;
312 if ( !videoButtons[i].isToggle ) { 312 if ( !buttons[i].isToggle ) {
313 setToggleButton( i, FALSE ); 313 setToggleButton( i, FALSE );
@@ -428,3 +428,3 @@ void VideoWidget::paintEvent( QPaintEvent * pe) {
428 p.drawTiledPixmap( pe->rect(), pixBg, pe->rect().topLeft() ); 428 p.drawTiledPixmap( pe->rect(), pixBg, pe->rect().topLeft() );
429 for ( unsigned int i = 0; i < videoButtons.size(); i++ ) { 429 for ( unsigned int i = 0; i < buttons.size(); i++ ) {
430 paintButton( &p, i ); 430 paintButton( &p, i );
@@ -435,3 +435,3 @@ void VideoWidget::paintEvent( QPaintEvent * pe) {
435 QPainter p( this ); 435 QPainter p( this );
436 for ( unsigned int i = 0; i < videoButtons.size(); i++ ) 436 for ( unsigned int i = 0; i < buttons.size(); i++ )
437 paintButton( &p, i ); 437 paintButton( &p, i );