summaryrefslogtreecommitdiff
path: root/utils/themeeditor
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-03 21:56:29 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-03 21:56:29 +0000
commit8219cfe988d65dd6089d1cda51304653f89c4425 (patch)
tree7fe9e50c43f2efc41fbfcfa45996675346ad7ab1 /utils/themeeditor
parent6e40988803609c6cd65e7091e1b58e4a6a5b936d (diff)
Theme Editor: Status bar no longer drawn by default
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27263 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor')
-rw-r--r--utils/themeeditor/graphics/rbscreen.cpp5
-rw-r--r--utils/themeeditor/graphics/rbscreen.h6
-rw-r--r--utils/themeeditor/models/parsetreenode.cpp8
3 files changed, 6 insertions, 13 deletions
diff --git a/utils/themeeditor/graphics/rbscreen.cpp b/utils/themeeditor/graphics/rbscreen.cpp
index cb69afd906..054e8fee37 100644
--- a/utils/themeeditor/graphics/rbscreen.cpp
+++ b/utils/themeeditor/graphics/rbscreen.cpp
@@ -29,8 +29,7 @@
RBScreen::RBScreen(const RBRenderInfo& info, bool remote,
QGraphicsItem *parent)
:QGraphicsItem(parent), backdrop(0), project(project),
- albumArt(0), defaultStatusBar(true),
- statusBarTexture(":/render/statusbar.png")
+ albumArt(0)
{
if(remote)
@@ -118,8 +117,6 @@ void RBScreen::paint(QPainter *painter, const QStyleOptionGraphicsItem *option,
painter->fillRect(0, 0, width, height, bgColor);
}
- if(defaultStatusBar)
- painter->fillRect(QRectF(0, 0, width, 8), statusBarTexture);
}
void RBScreen::loadViewport(QString name, RBViewport *view)
diff --git a/utils/themeeditor/graphics/rbscreen.h b/utils/themeeditor/graphics/rbscreen.h
index 70df399b34..b472e8eae4 100644
--- a/utils/themeeditor/graphics/rbscreen.h
+++ b/utils/themeeditor/graphics/rbscreen.h
@@ -84,8 +84,6 @@ public:
}
}
- void disableStatusBar(){ defaultStatusBar = false; }
- void enableStatusBar(){ defaultStatusBar = true; }
private:
int width;
@@ -104,10 +102,6 @@ private:
QList<QString> displayedViewports;
RBAlbumArt* albumArt;
-
- bool defaultStatusBar;
- QPixmap statusBarTexture;
-
};
#endif // RBSCREEN_H
diff --git a/utils/themeeditor/models/parsetreenode.cpp b/utils/themeeditor/models/parsetreenode.cpp
index 08ce703859..f1ee3b27ca 100644
--- a/utils/themeeditor/models/parsetreenode.cpp
+++ b/utils/themeeditor/models/parsetreenode.cpp
@@ -628,15 +628,17 @@ bool ParseTreeNode::execTag(const RBRenderInfo& info, RBViewport* viewport)
switch(element->tag->name[1])
{
case 'd':
- info.screen()->disableStatusBar();
+ /* %wd */
+ /* Disable SBS rendering */
return true;
case 'e':
- info.screen()->enableStatusBar();
+ /* %we */
+ /* Totally extraneous */
return true;
case 'i':
- info.screen()->disableStatusBar();
+ /* %wi */
viewport->enableStatusBar();
return true;
}