1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:32:20 +03:00

Made Surface argument to drawTopBar/drawBottomBar() mandatory

This commit is contained in:
Maarten ter Huurne 2013-08-14 11:38:38 +02:00
parent 69b2b795a2
commit 1ffae36004
3 changed files with 3 additions and 7 deletions

View File

@ -1208,8 +1208,6 @@ void GMenu2X::drawScrollBar(uint pageSize, uint totalSize, uint pagePos) {
}
void GMenu2X::drawTopBar(Surface *s) {
if (s==NULL) s = this->s;
Surface *bar = sc.skinRes("imgs/topbar.png", false);
if (bar != NULL)
bar->blit(s, 0, 0);
@ -1219,8 +1217,6 @@ void GMenu2X::drawTopBar(Surface *s) {
}
void GMenu2X::drawBottomBar(Surface *s) {
if (s==NULL) s = this->s;
Surface *bar = sc.skinRes("imgs/bottombar.png", false);
if (bar != NULL)
bar->blit(s, 0, resY-bar->height());

View File

@ -192,8 +192,8 @@ public:
int drawButtonRight(Surface *s, const std::string &btn, const std::string &text, int x=5, int y=-10);
void drawScrollBar(uint pageSize, uint totalSize, uint pagePos);
void drawTopBar(Surface *s=NULL);
void drawBottomBar(Surface *s=NULL);
void drawTopBar(Surface *s);
void drawBottomBar(Surface *s);
};
#endif // GMENU2X_H

View File

@ -466,7 +466,7 @@ void LinkApp::showManual() {
bg->blit(gmenu2x->s, 0, 0);
pngman->blit(gmenu2x->s, -page*320, 0);
gmenu2x->drawBottomBar();
gmenu2x->drawBottomBar(gmenu2x->s);
gmenu2x->drawButton(gmenu2x->s, "start", gmenu2x->tr["Exit"],
gmenu2x->drawButton(gmenu2x->s, "cancel", "",
gmenu2x->drawButton(gmenu2x->s, "right", gmenu2x->tr["Change page"],