Theme Editor: Implemented status bar enable/disable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27200 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Robert Bieber 2010-06-30 21:28:11 +00:00
parent 8114979e8e
commit 35150b6dcb
8 changed files with 43 additions and 3 deletions

View file

@ -83,6 +83,8 @@ public:
}
}
void disableStatusBar(){ defaultStatusBar = false; }
void enableStatusBar(){ defaultStatusBar = true; }
private:
int width;
@ -102,6 +104,9 @@ private:
RBAlbumArt* albumArt;
bool defaultStatusBar;
QPixmap statusBarTexture;
};
#endif // RBSCREEN_H