author | llornkcor <llornkcor> | 2002-03-20 05:29:08 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-03-20 05:29:08 (UTC) |
commit | ad91f15243333bf968ef5788d12c780746fcffb3 (patch) (side-by-side diff) | |
tree | 85fad92287583c506df59e7a334b7b998fbf126b | |
parent | f1228641b5ee823d309a8e5773e5b6fe94e64a42 (diff) | |
download | opie-ad91f15243333bf968ef5788d12c780746fcffb3.zip opie-ad91f15243333bf968ef5788d12c780746fcffb3.tar.gz opie-ad91f15243333bf968ef5788d12c780746fcffb3.tar.bz2 |
added better configurable background image support
-rw-r--r-- | core/launcher/launcherview.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/core/launcher/launcherview.cpp b/core/launcher/launcherview.cpp index 7f86ce1..6354bb7 100644 --- a/core/launcher/launcherview.cpp +++ b/core/launcher/launcherview.cpp @@ -108,51 +108,50 @@ public: mimes.clear(); cats.clear(); QIconView::clear(); hidden.clear(); } void addCatsAndMimes(AppLnk* app) { // QStringList c = app->categories(); // for (QStringList::ConstIterator cit=c.begin(); cit!=c.end(); ++cit) { // cats.replace(*cit,(void*)1); // } QString maj=app->type(); int sl=maj.find('/'); if (sl>=0) { QString k = maj.left(sl); mimes.replace(k,(void*)1); } } void drawBackground( QPainter *p, const QRect &r ) { Config config("qpe"); config.setGroup("Appearance"); - QString backgroundImage = config.readEntry("BackgroundImage"); - - if (backgroundImage.isNull()) backgroundImage="launcher/opie-background"; + QString backgroundImage = config.readEntry("BackgroundImage","launcher/opie-background"); + // if (backgroundImage.isNull()) backgroundImage="launcher/opie-background"; int backgroundMode = QPixmap::defaultDepth() >= 12 ? 1 : 0; //int backgroundMode = 2; if ( backgroundMode == 1 ) { // Double buffer the background static QPixmap *bg = NULL; static QColor bgColor; if ( (bg == NULL) || (bgColor != colorGroup().button()) ) { // Create a new background double buffer if (bg == NULL) bg = new QPixmap( width(), height() ); bgColor = colorGroup().button(); QPainter painter( bg ); painter.fillRect( QRect( 0, 0, width(), height() ), colorGroup().background().light(110)); // Overlay the Qtopia logo in the center QImage logo; if (QFile::exists(backgroundImage)) { logo = QImage(backgroundImage); } else { logo = Resource::loadImage(backgroundImage ); } |