diff options
author | Sebastian Geerken <devnull@localhost> | 2014-10-23 12:29:38 +0200 |
---|---|---|
committer | Sebastian Geerken <devnull@localhost> | 2014-10-23 12:29:38 +0200 |
commit | d39956a7b0a38ebeda147d52aa734e992c425d9f (patch) | |
tree | aa66d82bb61a4c38ff0de04bec8dad62d69f6294 /dw/stackingcontextmgr.hh | |
parent | 3afc8db366cdfed92f5c53a606cfc82e551c9084 (diff) |
More work on drawing: interruptions work now halfway.
Diffstat (limited to 'dw/stackingcontextmgr.hh')
-rw-r--r-- | dw/stackingcontextmgr.hh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dw/stackingcontextmgr.hh b/dw/stackingcontextmgr.hh index 7f86c22c..10a929cf 100644 --- a/dw/stackingcontextmgr.hh +++ b/dw/stackingcontextmgr.hh @@ -24,8 +24,8 @@ private: int minZIndex, maxZIndex; Widget *draw (View *view, Rectangle *area, - lout::container::untyped::Stack *iterator, - int *zIndexOffset, int startZIndex, int endZIndex, int *index); + StackingIteratorStack *iteratorStack, int *zIndexOffset, + int startZIndex, int endZIndex, int *index); Widget *getWidgetAtPoint (int x, int y, int startZIndex, int endZIndex); public: @@ -48,11 +48,11 @@ public: void addChildSCWidget (Widget *widget); Widget *drawBottom (View *view, Rectangle *area, - lout::container::untyped::Stack *iterator, - int *zIndexOffset, int *index); + StackingIteratorStack *iteratorStack, int *zIndexOffset, + int *index); Widget *drawTop (View *view, Rectangle *area, - lout::container::untyped::Stack *iterator, - int *zIndexOffset, int *index); + StackingIteratorStack *iteratorStack, int *zIndexOffset, + int *index); Widget *getTopWidgetAtPoint (int x, int y); Widget *getBottomWidgetAtPoint (int x, int y); |