author | simon <simon> | 2002-12-09 16:33:52 (UTC) |
---|---|---|
committer | simon <simon> | 2002-12-09 16:33:52 (UTC) |
commit | 1ae041fba55e218a2523de441bec6ec3a1eecf02 (patch) (unidiff) | |
tree | e12caa0db284f3237f52c91bbcd9578c5dcce8a7 | |
parent | 8eb71085cec5e24e20b441ceae9e5e66448405b3 (diff) | |
download | opie-1ae041fba55e218a2523de441bec6ec3a1eecf02.zip opie-1ae041fba55e218a2523de441bec6ec3a1eecf02.tar.gz opie-1ae041fba55e218a2523de441bec6ec3a1eecf02.tar.bz2 |
- more cleanups in the mouse event handler
-rw-r--r-- | noncore/multimedia/opieplayer2/audiowidget.cpp | 6 | ||||
-rw-r--r-- | noncore/multimedia/opieplayer2/videowidget.cpp | 5 |
2 files changed, 4 insertions, 7 deletions
diff --git a/noncore/multimedia/opieplayer2/audiowidget.cpp b/noncore/multimedia/opieplayer2/audiowidget.cpp index 3838e2c..37c565b 100644 --- a/noncore/multimedia/opieplayer2/audiowidget.cpp +++ b/noncore/multimedia/opieplayer2/audiowidget.cpp | |||
@@ -332,15 +332,14 @@ void AudioWidget::timerEvent( QTimerEvent * ) { | |||
332 | mediaPlayerState.setPosition( mediaPlayerState.position() - 2 ); | 332 | mediaPlayerState.setPosition( mediaPlayerState.position() - 2 ); |
333 | } | 333 | } |
334 | } | 334 | } |
335 | 335 | ||
336 | 336 | ||
337 | void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { | 337 | void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { |
338 | for ( unsigned int i = 0; i < buttons.size(); i++ ) { | 338 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) { |
339 | 339 | Button &button = *it; | |
340 | Button &button = buttons[ i ]; | ||
341 | Command command = button.command; | 340 | Command command = button.command; |
342 | 341 | ||
343 | if ( event->state() == QMouseEvent::LeftButton ) { | 342 | if ( event->state() == QMouseEvent::LeftButton ) { |
344 | // The test to see if the mouse click is inside the button or not | 343 | // The test to see if the mouse click is inside the button or not |
345 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); | 344 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); |
346 | 345 | ||
@@ -369,13 +368,12 @@ void AudioWidget::mouseMoveEvent( QMouseEvent *event ) { | |||
369 | } else { | 368 | } else { |
370 | if ( button.isHeld ) { | 369 | if ( button.isHeld ) { |
371 | button.isHeld = FALSE; | 370 | button.isHeld = FALSE; |
372 | if ( button.type != ToggleButton ) { | 371 | if ( button.type != ToggleButton ) { |
373 | setToggleButton( button, FALSE ); | 372 | setToggleButton( button, FALSE ); |
374 | } | 373 | } |
375 | qDebug("mouseEvent %d", i); | ||
376 | handleCommand( command, button.isDown ); | 374 | handleCommand( command, button.isDown ); |
377 | } | 375 | } |
378 | } | 376 | } |
379 | } | 377 | } |
380 | } | 378 | } |
381 | 379 | ||
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp index 06f6cd2..12316f8 100644 --- a/noncore/multimedia/opieplayer2/videowidget.cpp +++ b/noncore/multimedia/opieplayer2/videowidget.cpp | |||
@@ -241,15 +241,14 @@ void VideoWidget::updateSlider( long i, long max ) { | |||
241 | slider->setMaxValue( width ); | 241 | slider->setMaxValue( width ); |
242 | } | 242 | } |
243 | } | 243 | } |
244 | } | 244 | } |
245 | 245 | ||
246 | void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { | 246 | void VideoWidget::mouseMoveEvent( QMouseEvent *event ) { |
247 | for ( unsigned int i = 0; i < buttons.size(); i++ ) { | 247 | for ( ButtonVector::iterator it = buttons.begin(); it != buttons.end(); ++it ) { |
248 | 248 | Button &button = *it; | |
249 | Button &button = buttons[ i ]; | ||
250 | Command command = button.command; | 249 | Command command = button.command; |
251 | 250 | ||
252 | if ( event->state() == QMouseEvent::LeftButton ) { | 251 | if ( event->state() == QMouseEvent::LeftButton ) { |
253 | // The test to see if the mouse click is inside the button or not | 252 | // The test to see if the mouse click is inside the button or not |
254 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); | 253 | bool isOnButton = isOverButton( event->pos() - upperLeftOfButtonMask, command ); |
255 | 254 | ||