| 29 | namespace core { |
| 30 | |
| 31 | StackingContextMgr::StackingContextMgr (Widget *widget) |
| 32 | { |
| 33 | DBG_OBJ_CREATE ("dw::core::StackingContextMgr"); |
| 34 | |
| 35 | this->widget = widget; |
| 36 | |
| 37 | childSCWidgets = new Vector<Widget> (1, false); |
| 38 | DBG_OBJ_SET_NUM ("childSCWidgets.size", childSCWidgets->size()); |
| 39 | |
| 40 | numZIndices = 0; |
| 41 | zIndices = NULL; |
| 42 | DBG_OBJ_SET_NUM ("numZIndices", numZIndices); |
| 43 | } |
| 44 | |
| 45 | StackingContextMgr::~StackingContextMgr () |
| 46 | { |