1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-10-04 06:29:47 +03:00
gmenu2x/src/helppopup.h

29 lines
504 B
C
Raw Normal View History

// Various authors.
// License: GPL version 2 or later.
#ifndef HELPPOPUP_H
#define HELPPOPUP_H
#include "layer.h"
class GMenu2X;
/**
* A passive dialog containing some helpful text for the user.
*/
class HelpPopup : public Layer {
public:
HelpPopup(GMenu2X &gmenu2x);
// Layer implementation:
virtual void paint(Surface &s);
virtual bool handleButtonPress(InputManager::Button button);
virtual bool handleTouchscreen(Touchscreen &ts);
private:
GMenu2X &gmenu2x;
};
#endif // HELPPOPUP_H