File: StatusBarMenu.h

package info (click to toggle)
moagg 0.18-6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,924 kB
  • ctags: 4,059
  • sloc: cpp: 23,814; sh: 2,652; makefile: 283
file content (31 lines) | stat: -rw-r--r-- 512 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#ifndef STATUSBAR_MENU_H
#define STATUSBAR_MENU_H

#include "Menu.h"

class StatusBarMenu : public Menu
{
    MENU_SINGLETON(StatusBar);

  public:
    void eventShow();
    void eventHide();

    void update();

  protected:

    void updateMessage();
    void updateScore();
    void updateLifes();
    void updateBonus();
    void updateFuel();

    std::string m_message;
    unsigned m_score;
    unsigned m_lifes;
    unsigned m_lastBonusValue;
    unsigned m_lastFuelValue;
};

#endif // STATUSBAR_MENU_H