summaryrefslogtreecommitdiff
authorharlekin <harlekin>2002-08-02 10:47:50 (UTC)
committer harlekin <harlekin>2002-08-02 10:47:50 (UTC)
commit471dc69956af37e7c5f481c10482f280db853491 (patch) (side-by-side diff)
tree48d05dfe1c626d277181cf76ee051047b2522483
parentca057e02c3bacb8226d5209fcd9aa24009cdb78e (diff)
downloadopie-471dc69956af37e7c5f481c10482f280db853491.zip
opie-471dc69956af37e7c5f481c10482f280db853491.tar.gz
opie-471dc69956af37e7c5f481c10482f280db853491.tar.bz2
cleanups
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/playlistwidget.cpp1
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp24
2 files changed, 6 insertions, 19 deletions
diff --git a/noncore/multimedia/opieplayer2/playlistwidget.cpp b/noncore/multimedia/opieplayer2/playlistwidget.cpp
index cd53748..cce445b 100644
--- a/noncore/multimedia/opieplayer2/playlistwidget.cpp
+++ b/noncore/multimedia/opieplayer2/playlistwidget.cpp
@@ -1,14 +1,13 @@
-// code added by L. J. Potter Sat 03-02-2002 06:17:54
#define QTOPIA_INTERNAL_FSLP
#include <qpe/qcopenvelope_qws.h>
#include <qpe/qpemenubar.h>
#include <qpe/qpetoolbar.h>
#include <qpe/fileselector.h>
#include <qpe/qpeapplication.h>
#include <qpe/lnkproperties.h>
#include <qpe/storage.h>
#include <qpe/applnk.h>
#include <qpe/config.h>
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index d3898a0..bce6b89 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -113,26 +113,26 @@ VideoWidget::VideoWidget(QWidget* parent, const char* name, WFlags f) :
connect( mediaPlayerState, SIGNAL( positionUpdated(long) ),this, SLOT( setPosition(long) ) );
connect( mediaPlayerState, SIGNAL( viewChanged(char) ), this, SLOT( setView(char) ) );
connect( mediaPlayerState, SIGNAL( pausedToggled(bool) ), this, SLOT( setPaused(bool) ) );
connect( mediaPlayerState, SIGNAL( playingToggled(bool) ), this, SLOT( setPlaying(bool) ) );
// Intialise state
setLength( mediaPlayerState->length() );
setPosition( mediaPlayerState->position() );
setFullscreen( mediaPlayerState->fullscreen() );
setPaused( mediaPlayerState->paused() );
setPlaying( mediaPlayerState->playing() );
- videoFrame = new XineVideoWidget( 200, 150 ,this, "Video frame" );
- videoFrame->setGeometry( QRect( 10, 20, 220, 160 ) );
+ videoFrame = new XineVideoWidget( 240, 155 ,this, "Video frame" );
+ videoFrame->setGeometry( QRect( 0, 15 , 240 ,170 ) );
}
VideoWidget::~VideoWidget() {
for ( int i = 0; i < 3; i++ ) {
delete pixmaps[i];
}
delete currentFrame;
}
static bool videoSliderBeingMoved = FALSE;
@@ -279,46 +279,34 @@ void VideoWidget::makeVisible() {
showNormal();
showMaximized();
slider->show();
}
}
void VideoWidget::paintEvent( QPaintEvent * ) {
QPainter p( this );
if ( mediaPlayerState->fullscreen() ) {
// Clear the background
-// p.setBrush( QBrush( Qt::black ) );
- //p.drawRect( rect() );
-
+ p.setBrush( QBrush( Qt::black ) );
+ videoFrame->setGeometry( QRect( 0, 0 , 240 ,340 ) );
+
} else {
- // draw border
- qDrawShadePanel( &p, 4, 15, 230, 170, colorGroup(), TRUE, 5, NULL );
-
- // Clear the movie screen first
-// p.setBrush( QBrush( Qt::black ) );
-// p.drawRect( 9, 20, 220, 160 );
-
- // draw current frame (centrally positioned from scaling to maintain aspect ratio)
- //p.drawImage( 9 + (220 - scaledWidth) / 2, 20 + (160 - scaledHeight) / 2, *currentFrame, 0, 0, scaledWidth, scaledHeight );
-
- // draw the buttons
+ // draw the buttons
for ( int i = 0; i < numButtons; i++ ) {
paintButton( &p, i );
}
-
// draw the slider
slider->repaint( TRUE );
-// videoFrame->repaint( TRUE );
}
}
void VideoWidget::closeEvent( QCloseEvent* ) {
mediaPlayerState->setList();
}
bool VideoWidget::playVideo() {
bool result = FALSE;