28 lines
477 B
C++
28 lines
477 B
C++
#ifndef __DW_OOFPOSFIXEDMGR_HH__
|
|
#define __DW_OOFPOSFIXEDMGR_HH__
|
|
|
|
#include "oofposabslikemgr.hh"
|
|
|
|
namespace dw {
|
|
|
|
namespace oof {
|
|
|
|
class OOFPosFixedMgr: public OOFPosAbsLikeMgr
|
|
{
|
|
protected:
|
|
int containerBoxOffsetX ();
|
|
int containerBoxOffsetY ();
|
|
int containerBoxRestWidth ();
|
|
int containerBoxRestHeight ();
|
|
|
|
public:
|
|
OOFPosFixedMgr (OOFAwareWidget *container);
|
|
~OOFPosFixedMgr ();
|
|
};
|
|
|
|
} // namespace oof
|
|
|
|
} // namespace dw
|
|
|
|
#endif // __DW_OOFPOSFIXEDMGR_HH__
|