summaryrefslogtreecommitdiffstats
path: root/Project/WorkspaceBase.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/WorkspaceBase.h')
-rw-r--r--Project/WorkspaceBase.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/Project/WorkspaceBase.h b/Project/WorkspaceBase.h
new file mode 100644
index 0000000..4c11346
--- /dev/null
+++ b/Project/WorkspaceBase.h
@@ -0,0 +1,49 @@
+//////////////////////////////////////////////////////////////////////
+// This file was auto-generated by codelite's wxCrafter Plugin
+// wxCrafter project file: Workspace.wxcp
+// Do not modify this file by hand!
+//////////////////////////////////////////////////////////////////////
+
+#ifndef PSP_PROJECT_WORKSPACE_BASE_CLASSES_H
+#define PSP_PROJECT_WORKSPACE_BASE_CLASSES_H
+
+#include <wx/settings.h>
+#include <wx/xrc/xmlres.h>
+#include <wx/xrc/xh_bmp.h>
+#include <wx/panel.h>
+#include <wx/artprov.h>
+#include <wx/sizer.h>
+#include <wx/glcanvas.h>
+#if wxVERSION_NUMBER >= 2900
+#include <wx/persist.h>
+#include <wx/persist/toplevel.h>
+#include <wx/persist/bookctrl.h>
+#include <wx/persist/treebook.h>
+#endif
+
+#ifdef WXC_FROM_DIP
+#undef WXC_FROM_DIP
+#endif
+#if wxVERSION_NUMBER >= 3100
+#define WXC_FROM_DIP(x) wxWindow::FromDIP(x, NULL)
+#else
+#define WXC_FROM_DIP(x) x
+#endif
+
+
+class WorkspaceBase : public wxPanel
+{
+protected:
+ wxGLCanvas* m_glCanvas;
+
+protected:
+ virtual void OnPaint(wxPaintEvent& event) { event.Skip(); }
+ virtual void OnLeftClickDown(wxMouseEvent& event) { event.Skip(); }
+
+public:
+ wxGLCanvas* GetGlCanvas() { return m_glCanvas; }
+ WorkspaceBase(wxWindow* parent, wxWindowID id = wxID_ANY, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize(500,300), long style = wxTAB_TRAVERSAL);
+ virtual ~WorkspaceBase();
+};
+
+#endif