GlistEngine
Loading...
Searching...
No Matches
gGUIDivider.h
Go to the documentation of this file.
1/*
2 * gGUIDivider.h
3 *
4 * Created on: Sep 29, 2021
5 * Author: noyan
6 */
7
8#ifndef UI_GGUIDIVIDER_H_
9#define UI_GGUIDIVIDER_H_
10
11#include "gGUIControl.h"
12
13
14class gGUIDivider: public gGUIControl {
15public:
16 enum {
19 };
20
22 virtual ~gGUIDivider();
23
24 void setDirection(int direction);
26
27private:
28 int direction;
29};
30
31#endif /* UI_GGUIDIVIDER_H_ */
Definition gGUIControl.h:29
Definition gGUIDivider.h:14
int getDirection()
void setDirection(int direction)
@ DIR_HORIZONTAL
Definition gGUIDivider.h:17
@ DIR_VERTICAL
Definition gGUIDivider.h:18
virtual ~gGUIDivider()