00001 #ifndef VRenderMode_h 00002 #define VRenderMode_h 00003 00004 #include "GUIelement.h" 00005 #include "VExitBox.h" 00006 #include "VTexture.h" 00007 00008 #include <GL/glew.h> 00009 #include <GL/glut.h> 00010 00013 class VRenderMode : 00014 public GUIelement { 00015 00016 float * bg; 00018 VTexture * tex; 00019 int pos; 00020 int* actPos; 00021 bool dragging; 00022 00023 public: 00030 VRenderMode(int*,int*,unsigned int*, int*); 00031 ~VRenderMode(void); 00032 void motion(int,int); 00033 void released(int,int); 00034 void drag(int,int); 00035 bool isInside(int,int); 00036 void render(void); 00037 void draw(void); 00038 }; 00039 00040 #endif