summaryrefslogtreecommitdiffstats
path: root/src/Gui/RenderArea.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Gui/RenderArea.h')
-rw-r--r--src/Gui/RenderArea.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Gui/RenderArea.h b/src/Gui/RenderArea.h
new file mode 100644
index 0000000..6695e09
--- /dev/null
+++ b/src/Gui/RenderArea.h
@@ -0,0 +1,25 @@
+#ifndef ZOOMEDIT_GUI_RENDERAREA_H_
+#define ZOOMEDIT_GUI_RENDERAREA_H_
+
+#include <gtkmm/drawingarea.h>
+#include <libglademm/xml.h>
+#include <gtk/gtkgl.h>
+
+namespace ZoomEdit {
+namespace Gui {
+
+class RenderArea : public Gtk::DrawingArea {
+ public:
+ RenderArea(BaseObjectType *cobject, const Glib::RefPtr<Gnome::Glade::Xml> &xml);
+ virtual ~RenderArea();
+
+ private:
+ static GdkGLConfig *glconfig;
+
+ void onRealize();
+};
+
+}
+}
+
+#endif /*ZOOMEDIT_GUI_RENDERAREA_H_*/