00001 #ifndef VAxisAlignElement_h 00002 #define VAxisAlignElement_h 00003 00004 #include "GUIelement.h" 00005 #include "VExitBox.h" 00006 #include "VCamera.h" 00007 00008 #include <GL/glew.h> 00009 #include <GL/glut.h> 00010 00013 class VAxisAlignElement : 00014 public GUIelement { 00015 00018 VCamera * camera; 00021 int offset; 00022 bool dragging; 00023 00024 public: 00031 VAxisAlignElement(int*,int*,unsigned int*,VCamera *); 00032 ~VAxisAlignElement(void); 00033 void released(int,int); 00034 void drag(int,int); 00035 void render(void); 00036 bool isInside(int , int); 00037 }; 00038 00039 #endif