GlistEngine
Loading...
Searching...
No Matches
gGUIPanel.h
Go to the documentation of this file.
1/*
2 * gGUIPanel.h
3 *
4 * Created on: Aug 20, 2021
5 * Author: noyan
6 */
7
8#ifndef UI_GGUIPANEL_H_
9#define UI_GGUIPANEL_H_
10
11#include "gGUIContainer.h"
12
13
14class gGUIPanel: public gGUIContainer {
15public:
17 virtual ~gGUIPanel();
18
19 void showTitle(bool isShown);
20
21 void draw();
22
23private:
24 int toplineh;
25 gGUISizer panelsizer;
26 bool istitleshown;
27};
28
29#endif /* UI_GGUIPANEL_H_ */
Definition gGUIContainer.h:15
Definition gGUIPanel.h:14
void showTitle(bool isShown)
virtual ~gGUIPanel()
void draw()
Definition gGUISizer.h:14