blob: 38937878840e2de820827c2bc6d327103e746a99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef __DW_OOFPOSFIXEDMGR_HH__
#define __DW_OOFPOSFIXEDMGR_HH__
#include "oofpositionedmgr.hh"
namespace dw {
namespace oof {
class OOFPosFixedMgr: public OOFPositionedMgr
{
protected:
int containerBoxOffsetX ();
int containerBoxOffsetY ();
int containerBoxRestWidth ();
int containerBoxRestHeight ();
public:
OOFPosFixedMgr (OOFAwareWidget *container);
~OOFPosFixedMgr ();
};
} // namespace oof
} // namespace dw
#endif // __DW_OOFPOSFIXEDMGR_HH__
|