fshake3d  0.0.1
FreeformDensity3DSurfaceEditor
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines
ui_Bin.hpp
Go to the documentation of this file.
00001 #ifndef UI_BIN_HPP
00002 #define UI_BIN_HPP
00003 
00004 #include "ui_View.hpp"
00005 
00006 class Bin : public View
00007 {
00008 public:
00009   Bin();
00010   virtual void reshape(int w, int h);
00011   void setChildView(View* p);
00012   virtual void mouse(int button, int state, int x, int y);
00013   virtual void motion(int x, int y);
00014   virtual void onEvent(Event& e);
00015   virtual void display();
00016 protected:
00017   View* mChild;
00018 };
00019 
00020 #endif // UI_BIN_HPP