diff options
author | Sebastian Geerken <devnull@localhost> | 2015-06-08 22:18:41 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2015-06-08 22:18:41 +0200 |
commit | 7c8f69de8bc95c6078ee5fc0b63d263a80f31b44 (patch) | |
tree | b495c1320496cd5ff67c56b6a07d5a79c218455b /dw/outofflowmgr.hh | |
parent | 826577556fa8b8eedcf1620b4104115d83dbce0b (diff) |
SRDOP: Positions relative to multiple references; design now considers handling conflicts.
Diffstat (limited to 'dw/outofflowmgr.hh')
-rw-r--r-- | dw/outofflowmgr.hh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/dw/outofflowmgr.hh b/dw/outofflowmgr.hh index 6dff2055..88ec349d 100644 --- a/dw/outofflowmgr.hh +++ b/dw/outofflowmgr.hh @@ -55,7 +55,14 @@ public: * tellPosition2. Coordinates are relative to the *container*. */ virtual void tellPosition2 (core::Widget *widget, int x, int y) = 0; - + + virtual void tellIncompletePosition1 (core::Widget *generator, + core::Widget *widget, int x, int y) + = 0; + virtual void tellIncompletePosition2 (core::Widget *generator, + core::Widget *widget, int x, int y) + = 0; + virtual void getSize (core::Requisition *containerReq, int *oofWidth, int *oofHeight) = 0; virtual bool containerMustAdjustExtraSpace ()= 0; |