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