summaryrefslogtreecommitdiffstats
path: root/Project/ControlEditor.h
diff options
context:
space:
mode:
Diffstat (limited to 'Project/ControlEditor.h')
-rw-r--r--Project/ControlEditor.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/Project/ControlEditor.h b/Project/ControlEditor.h
index 73c2c62..8d499fc 100644
--- a/Project/ControlEditor.h
+++ b/Project/ControlEditor.h
@@ -10,6 +10,7 @@
#include <GL/glu.h>
class Camera;
+class Element;
class ControlElement;
class TransferFunction;
class ConnectionLine;
@@ -83,6 +84,8 @@ protected:
void BuildControlElementPanel();
void SetViewport();
+ std::vector<ConnectionLine*>::iterator DeleteLineFromList(std::vector<ConnectionLine*>::iterator& it);
+
wxGLContext* m_glContext = NULL;
Camera* m_camera = NULL;
@@ -90,10 +93,10 @@ protected:
wxRect2DDouble m_selectionRect;
wxPoint2DDouble m_startSelRect;
-
+
std::vector<ControlElement*> m_elementList;
std::vector<ConnectionLine*> m_connectionList;
-
+
bool m_firstDraw = true;
};
#endif // CONTROLEDITOR_H