00001 #ifndef BOTTOMSUBWINDOW_HPP 00002 #define BOTTOMSUBWINDOW_HPP 00003 00004 #include <GL/glew.h> 00005 #include <GL/glui.h> 00006 00007 class BottomSubWindow { 00008 private: 00009 static GLUI *gui_rightWindow; 00010 static GLUI *gui_transferFunction; 00011 public: 00012 static GLUI *bottom_glui; 00013 static int gl_transferFunction; 00014 static int windowID_main; 00015 public: 00016 static void bottomDisplay(void); 00017 static void bottomIdle(void); 00018 static void bottomInit(void); 00019 static void bottomKeyboard(unsigned char key, int x, int y); 00020 static void bottomMotion(int x, int y); 00021 static void bottomMouse(int button, int state, int x, int y); 00022 static void bottomReshape(int x, int y); 00023 }; 00024 00025 #endif