From c200950a2b120b015783f1552fd68c355bcc3185 Mon Sep 17 00:00:00 2001 From: mark Date: Sat, 23 Feb 2002 18:25:50 +0000 Subject: Makes it possible to choose your background image with a config item in qpe.conf Accepts both absolute paths '/opt/QtPalmtop/pics/mypic.png' and loadPixmap type paths 'mypic' --- (limited to 'core/launcher') diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 7b20fdc..0df949e 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -23,6 +23,7 @@ #include #include #include +#include #include #include #include @@ -126,6 +127,11 @@ public: void drawBackground( QPainter *p, const QRect &r ) { + Config config("qpe"); + config.setGroup("Appearance"); + QString backgroundImage = config.readEntry("BackgroundImage"); + + if (backgroundImage.isNull()) backgroundImage="qpe-background"; int backgroundMode = QPixmap::defaultDepth() >= 12 ? 1 : 0; //int backgroundMode = 2; @@ -143,9 +149,13 @@ public: QPainter painter( bg ); painter.fillRect( QRect( 0, 0, width(), height() ), colorGroup().background().light(110)); - - // Overlay the Qtopia logo in the center - QImage logo = Resource::loadImage( "qpe-background" ); + // Overlay the Qtopia logo in the center + QImage logo; + if (QFile::exists(backgroundImage)) { + logo = QImage(backgroundImage); + } else { + logo = Resource::loadImage(backgroundImage ); + } if ( !logo.isNull() ) painter.drawImage( (width() - logo.width()) / 2, (height() - logo.height()) / 2, logo ); -- cgit v0.9.0.2