summaryrefslogtreecommitdiff
path: root/noncore/multimedia/opieplayer2/videowidget.cpp
Side-by-side diff
Diffstat (limited to 'noncore/multimedia/opieplayer2/videowidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/multimedia/opieplayer2/videowidget.cpp16
1 files changed, 12 insertions, 4 deletions
diff --git a/noncore/multimedia/opieplayer2/videowidget.cpp b/noncore/multimedia/opieplayer2/videowidget.cpp
index bce6b89..48caf00 100644
--- a/noncore/multimedia/opieplayer2/videowidget.cpp
+++ b/noncore/multimedia/opieplayer2/videowidget.cpp
@@ -88,4 +88,4 @@ VideoWidget::VideoWidget(QWidget* parent, const char* name, WFlags f) :
- QString backgroundPix, Button0aPix, Button0bPix, controlsPix;
- backgroundPix=cfg.readEntry( "backgroundPix", "opieplayer/metalFinish");
+ QString Button0aPix, Button0bPix, controlsPix;
+ //backgroundPix=cfg.readEntry( "backgroundPix", "opieplayer/metalFinish");
Button0aPix=cfg.readEntry( "Button0aPix", "opieplayer/mediaButton0a");
@@ -94,2 +94,7 @@ VideoWidget::VideoWidget(QWidget* parent, const char* name, WFlags f) :
+ cfg.setGroup("AudioWidget");
+ QString skin = cfg.readEntry("Skin","default");
+ QString skinPath = "opieplayer/skins/" + skin;
+ backgroundPix = QString("%1/background").arg(skinPath) ;
+
setBackgroundPixmap( Resource::loadPixmap( backgroundPix) );
@@ -125,3 +130,3 @@ VideoWidget::VideoWidget(QWidget* parent, const char* name, WFlags f) :
videoFrame = new XineVideoWidget( 240, 155 ,this, "Video frame" );
- videoFrame->setGeometry( QRect( 0, 15 , 240 ,170 ) );
+
}
@@ -277,3 +282,3 @@ void VideoWidget::makeVisible() {
} else {
- setBackgroundPixmap( Resource::loadPixmap( "opieplayer/metalFinish" ) );
+ setBackgroundPixmap( Resource::loadPixmap( backgroundPix ) );
showNormal();
@@ -294,3 +299,6 @@ void VideoWidget::paintEvent( QPaintEvent * ) {
} else {
+
+ videoFrame->setGeometry( QRect( 0, 15 , 240 ,170 ) );
// draw the buttons
+
for ( int i = 0; i < numButtons; i++ ) {