diff options
Diffstat (limited to 'dw/oofposfixedmgr.hh')
-rw-r--r-- | dw/oofposfixedmgr.hh | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dw/oofposfixedmgr.hh b/dw/oofposfixedmgr.hh new file mode 100644 index 00000000..1e099d39 --- /dev/null +++ b/dw/oofposfixedmgr.hh @@ -0,0 +1,28 @@ +#ifndef __DW_OOFPOSFIXEDMGR_HH__ +#define __DW_OOFPOSFIXEDMGR_HH__ + +#include "oofpositionedmgr.hh" + +namespace dw { + +namespace oof { + +class OOFPosFixedMgr: public OOFPositionedMgr +{ +protected: + bool isReference (core::Widget *widget); + int containerBoxOffsetX (); + int containerBoxOffsetY (); + int containerBoxRestWidth (); + int containerBoxRestHeight (); + +public: + OOFPosFixedMgr (OOFAwareWidget *container); + ~OOFPosFixedMgr (); +}; + +} // namespace oof + +} // namespace dw + +#endif // __DW_OOFPOSFIXEDMGR_HH__ |