summaryrefslogtreecommitdiff
authorllornkcor <llornkcor>2002-09-19 19:45:49 (UTC)
committer llornkcor <llornkcor>2002-09-19 19:45:49 (UTC)
commit2e0cb5c85f913141985df4e7f2514817851420fb (patch) (unidiff)
treee58f576310994d1bb813143cb96b312af37b78fb
parentaef34909dcfb2ffb637c9d3693e395c15b255cb2 (diff)
downloadopie-2e0cb5c85f913141985df4e7f2514817851420fb.zip
opie-2e0cb5c85f913141985df4e7f2514817851420fb.tar.gz
opie-2e0cb5c85f913141985df4e7f2514817851420fb.tar.bz2
tweak for landscape mode
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp15
1 files changed, 14 insertions, 1 deletions
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index 8e3a365..b0ec673 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -186,18 +186,21 @@ void VideoWidget::resizeEvent( QResizeEvent * ) {
186 int h = height(); 186 int h = height();
187 int w = width(); 187 int w = width();
188 //int Vh = 160; 188 //int Vh = 160;
189 //int Vw = 220; 189 //int Vw = 220;
190 190
191 slider->setFixedWidth( w - 20 ); 191 slider->setFixedWidth( w - 20 );
192 slider->setGeometry( QRect( 15, h - 30, w - 90, 20 ) ); 192 slider->setGeometry( QRect( 15, h - 22, w - 90, 20 ) );
193 slider->setBackgroundOrigin( QWidget::ParentOrigin ); 193 slider->setBackgroundOrigin( QWidget::ParentOrigin );
194 slider->setFocusPolicy( QWidget::NoFocus ); 194 slider->setFocusPolicy( QWidget::NoFocus );
195 slider->setBackgroundPixmap( *pixBg ); 195 slider->setBackgroundPixmap( *pixBg );
196 196
197 xoff = 0;// ( imgUp->width() ) / 2; 197 xoff = 0;// ( imgUp->width() ) / 2;
198 if(w>h)
199 yoff = 0;
200 else
198 yoff = 185;//(( Vh - imgUp->height() ) / 2) - 10; 201 yoff = 185;//(( Vh - imgUp->height() ) / 2) - 10;
199 QPoint p( xoff, yoff ); 202 QPoint p( xoff, yoff );
200 203
201 QPixmap *pixUp = combineVImageWithBackground( *imgUp, *pixBg, p ); 204 QPixmap *pixUp = combineVImageWithBackground( *imgUp, *pixBg, p );
202 QPixmap *pixDn = combineVImageWithBackground( *imgDn, *pixBg, p ); 205 QPixmap *pixDn = combineVImageWithBackground( *imgDn, *pixBg, p );
203 206
@@ -392,13 +395,23 @@ void VideoWidget::makeVisible() {
392 disconnect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 395 disconnect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
393 } else { 396 } else {
394 slider->show(); 397 slider->show();
395 connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) ); 398 connect( mediaPlayerState, SIGNAL( positionChanged(long) ),this, SLOT( setPosition(long) ) );
396 connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) ); 399 connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
397 } 400 }
401
402 QWidget *d = QApplication::desktop();
403 int w=d->width();
404 int h=d->height();
405
406 if(w>h) {
407 int newW=(w/2)-(246/2); //this will only work with 320x240
408 videoFrame->setGeometry( QRect( newW, 4, 240, 170 ) );
409 } else
398 videoFrame->setGeometry( QRect( 0, 30, 240, 170 ) ); 410 videoFrame->setGeometry( QRect( 0, 30, 240, 170 ) );
411
399 qApp->processEvents(); 412 qApp->processEvents();
400 } 413 }
401} 414}
402 415
403 416
404void VideoWidget::paintEvent( QPaintEvent * pe) { 417void VideoWidget::paintEvent( QPaintEvent * pe) {