summaryrefslogtreecommitdiff
path: root/gui.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui.h')
-rw-r--r--gui.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/gui.h b/gui.h
new file mode 100644
index 0000000..22ad354
--- /dev/null
+++ b/gui.h
@@ -0,0 +1,31 @@
+#ifndef GUI_H
+#define GUI_H
+
+#include <CEGUI.h>
+#include <RendererModules/OpenGL/CEGUIOpenGLRenderer.h>
+
+class GUI {
+ public:
+ CEGUI::Window *root;
+ CEGUI::FrameWindow *wnd;
+ CEGUI::PushButton *btn;
+
+ CEGUI::Window *radius_lbl;
+ CEGUI::Scrollbar *radius_sb;
+ CEGUI::Window *radius_sb_lbl;
+
+ CEGUI::Window *focus_lbl;
+ CEGUI::Scrollbar *focus_sb;
+ CEGUI::Window *focus_sb_lbl;
+
+ CEGUI::Window *strength_lbl;
+ CEGUI::Scrollbar *strength_sb;
+ CEGUI::Window *strength_sb_lbl;
+
+ GUI();
+ ~GUI();
+
+ void render();
+};
+
+#endif