Root/src/helppopup.h

1// Various authors.
2// License: GPL version 2 or later.
3
4#ifndef HELPPOPUP_H
5#define HELPPOPUP_H
6
7#include "layer.h"
8
9class GMenu2X;
10
11
12/**
13 * A passive dialog containing some helpful text for the user.
14 */
15class HelpPopup : public Layer {
16public:
17    HelpPopup(GMenu2X &gmenu2x);
18
19    // Layer implementation:
20    virtual void paint(Surface &s);
21    virtual bool handleButtonPress(InputManager::Button button);
22    virtual bool handleTouchscreen(Touchscreen &ts);
23
24private:
25    GMenu2X &gmenu2x;
26};
27
28#endif // HELPPOPUP_H
29

Archive Download this file



interactive