aboutsummaryrefslogtreecommitdiff
path: root/dw/stackingcontextmgr.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-10-23 22:36:11 +0200
committerSebastian Geerken <devnull@localhost>2014-10-23 22:36:11 +0200
commit607814bdead6d72fb6825a5502e625a216114a1c (patch)
tree0e3cfd012c1d9d3000a77e8ccaaecdd754938705 /dw/stackingcontextmgr.hh
parent80898e60379898a69a09fa2bbfec02ae95c28ffd (diff)
Changed signature of Widget::draw and friends.
Diffstat (limited to 'dw/stackingcontextmgr.hh')
-rw-r--r--dw/stackingcontextmgr.hh18
1 files changed, 9 insertions, 9 deletions
diff --git a/dw/stackingcontextmgr.hh b/dw/stackingcontextmgr.hh
index 10a929cf..28cdd2f9 100644
--- a/dw/stackingcontextmgr.hh
+++ b/dw/stackingcontextmgr.hh
@@ -23,9 +23,9 @@ private:
lout::container::typed::Vector<Widget> *childSCWidgets;
int minZIndex, maxZIndex;
- Widget *draw (View *view, Rectangle *area,
- StackingIteratorStack *iteratorStack, int *zIndexOffset,
- int startZIndex, int endZIndex, int *index);
+ void draw (View *view, Rectangle *area,
+ StackingIteratorStack *iteratorStack, Widget **interruptedWidget,
+ int *zIndexOffset, int startZIndex, int endZIndex, int *index);
Widget *getWidgetAtPoint (int x, int y, int startZIndex, int endZIndex);
public:
@@ -47,12 +47,12 @@ public:
void addChildSCWidget (Widget *widget);
- Widget *drawBottom (View *view, Rectangle *area,
- StackingIteratorStack *iteratorStack, int *zIndexOffset,
- int *index);
- Widget *drawTop (View *view, Rectangle *area,
- StackingIteratorStack *iteratorStack, int *zIndexOffset,
- int *index);
+ void drawBottom (View *view, Rectangle *area,
+ StackingIteratorStack *iteratorStack,
+ Widget **interruptedWidget, int *zIndexOffset, int *index);
+ void drawTop (View *view, Rectangle *area,
+ StackingIteratorStack *iteratorStack,
+ Widget **interruptedWidget, int *zIndexOffset, int *index);
Widget *getTopWidgetAtPoint (int x, int y);
Widget *getBottomWidgetAtPoint (int x, int y);