Root/src/dialog.h

1#ifndef __DIALOG_H__
2#define __DIALOG_H__
3
4#include <string>
5
6class GMenu2X;
7class Surface;
8
9class Dialog
10{
11public:
12    Dialog(GMenu2X& gmenu2x);
13
14protected:
15    void drawTitleIcon(Surface& s, const std::string &icon, bool skinRes = false);
16    void writeTitle(Surface& s, const std::string &title);
17    void writeSubTitle(Surface& s, const std::string &subtitle);
18
19    GMenu2X& gmenu2x;
20};
21
22#endif
23

Archive Download this file



interactive