00001 #ifndef OglGui_Strut_h
00002 #define OglGui_Strut_h
00003
00004 #ifndef OglGui_Window_h
00005 #include "OglGui/Window.h"
00006 #endif
00007
00008 namespace OglGui
00009 {
00010
00011 class Strut : public Window
00012 {
00013 public:
00014
00015 Strut(Window* parent, int x, int y, int width, int height) :
00016 Window(parent, x, y, width, height)
00017 {
00018 Init();
00019 }
00020 Strut(Window* parent, int width, int height) :
00021 Window(parent, width, height)
00022 {
00023 Init();
00024 }
00025
00026 private :
00027
00028 void
00029 Init()
00030 {
00031 oglSys.SetNoMouseInput( mOglWnd, 1 );
00032 }
00033 };
00034
00035 }
00036 #endif