summaryrefslogtreecommitdiff
path: root/dw/stackingcontextmgr.hh
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2014-10-19 12:17:12 +0200
committerSebastian Geerken <devnull@localhost>2014-10-19 12:17:12 +0200
commit20ff9785c1736bf1659d359d07f5ec37ca28fb51 (patch)
treebc414b292ae0c470bb20e8a7a9dd8769c542b3d9 /dw/stackingcontextmgr.hh
parent356751ca1ee7df3819dfcfcece24cfbdb37fba7c (diff)
Corrected StackingContextMgr::draw: stores z-index in iterator.
Diffstat (limited to 'dw/stackingcontextmgr.hh')
-rw-r--r--dw/stackingcontextmgr.hh8
1 files changed, 4 insertions, 4 deletions
diff --git a/dw/stackingcontextmgr.hh b/dw/stackingcontextmgr.hh
index e7254d7f..7f86c22c 100644
--- a/dw/stackingcontextmgr.hh
+++ b/dw/stackingcontextmgr.hh
@@ -25,9 +25,9 @@ private:
Widget *draw (View *view, Rectangle *area,
lout::container::untyped::Stack *iterator,
- int *index, int startZIndex, int endZIndex);
-
+ int *zIndexOffset, int startZIndex, int endZIndex, int *index);
Widget *getWidgetAtPoint (int x, int y, int startZIndex, int endZIndex);
+
public:
StackingContextMgr (Widget *widget);
~StackingContextMgr ();
@@ -49,10 +49,10 @@ public:
Widget *drawBottom (View *view, Rectangle *area,
lout::container::untyped::Stack *iterator,
- int *index);
+ int *zIndexOffset, int *index);
Widget *drawTop (View *view, Rectangle *area,
lout::container::untyped::Stack *iterator,
- int *index);
+ int *zIndexOffset, int *index);
Widget *getTopWidgetAtPoint (int x, int y);
Widget *getBottomWidgetAtPoint (int x, int y);