whitespace cleanup
[enigma2.git] / lib / gui / ewidget.cpp
index 8cb7d4ae0f4fdd15dbd000df2655207cf83b9ee7..6d02ebaf9c143b31624f795fdea4e38bf5c33eaa 100644 (file)
@@ -8,34 +8,36 @@ eWidget::eWidget(eWidget *parent): m_animation(this), m_parent(parent ? parent->
        m_vis = 0;
        m_desktop = 0;
        m_have_background_color = 0;
-       
+       m_z_position = 0;
        m_client_offset = eSize(0, 0);
-       
        if (m_parent)
                m_vis = wVisShow;
-       
        if (m_parent)
        {
-               m_parent->m_childs.push_back(this);
+               insertIntoParent();
                m_parent->getStyle(m_style);
        }
 
        m_current_focus = 0;
        m_focus_owner = 0;
+       m_notify_child_on_position_change = 1;
 }
 
 void eWidget::move(ePoint pos)
 {
        pos = pos + m_client_offset;
-       
        if (m_position == pos)
                return;
 
+                       /* ?? what about native move support? */
+       invalidate();
+
        m_position = pos;
-       
        event(evtChangedPosition);
-       recalcClipRegionsWhenVisible();
-       
+       if (m_notify_child_on_position_change)
+               for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
+                       i->event(evtParentChangedPosition);
+               recalcClipRegionsWhenVisible();
                /* try native move if supported. */
        if ((m_vis & wVisShow) && ((!m_desktop) || m_desktop->movedWidget(this)))
                invalidate();
@@ -55,13 +57,15 @@ void eWidget::resize(eSize size)
        event(evtWillChangeSize, &size, &m_client_offset);
        if (old_size == m_size)
                return;
-       
        move(position() - old_offset);
-       
        invalidate();
        event(evtChangedSize);
-       recalcClipRegionsWhenVisible(); 
-       invalidate();
+
+       if (m_notify_child_on_position_change)
+               for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
+                       i->event(evtParentChangedPosition); /* position/size is the same here */
+
+       recalcClipRegionsWhenVisible(); invalidate();
 }
 
 void eWidget::invalidate(const gRegion &region)
@@ -76,7 +80,6 @@ void eWidget::invalidate(const gRegion &region)
 
        if (res.empty())
                return;
-       
        eWidget *root = this;
        ePoint abspos = position();
        while (root && !root->m_desktop)
@@ -85,7 +88,6 @@ void eWidget::invalidate(const gRegion &region)
                assert(root);
                abspos += root->position();
        }
-       
        res.moveBy(abspos);
 //     eDebug("region to invalidate:");
 //     dumpRegion(res);
@@ -96,16 +98,23 @@ void eWidget::show()
 {
        if (m_vis & wVisShow)
                return;
-       
-       m_vis |=  wVisShow;
 
+       m_vis |= wVisShow;
                /* TODO: optimize here to only recalc what's required. possibly merge with hide. */
        eWidget *root = this;
        ePoint abspos = position();
        while (root && !root->m_desktop)
        {
                root = root->m_parent;
-               assert(root);
+               if (!root)
+               {
+                               /* oops: our root widget does not have a desktop associated. 
+                                       probably somebody already erased the root, but tries some
+                                       operations on a child window. 
+                                                                       ignore them for now. */
+                       /* assert(root); */
+                       return;
+               }
                abspos += root->position();
        }
 
@@ -124,7 +133,6 @@ void eWidget::hide()
        if (!(m_vis & wVisShow))
                return;
        m_vis &= ~wVisShow;
-       
                /* this is a workaround to the above problem. when we are in the delete phase, 
                   don't hide childs. */
        if (!(m_parent || m_desktop))
@@ -136,6 +144,8 @@ void eWidget::hide()
        while (root && !root->m_desktop)
        {
                root = root->m_parent;
+               if (!root)
+                       return;
                abspos += root->position();
        }
        assert(root->m_desktop);
@@ -165,6 +175,42 @@ void eWidget::clearBackgroundColor()
        m_have_background_color = 0;
 }
 
+void eWidget::setZPosition(int z)
+{
+       m_z_position = z;
+       if (!m_parent)
+               return;
+       m_parent->m_childs.remove(this);
+       insertIntoParent(); /* now at the new Z position */
+}
+
+void eWidget::setTransparent(int transp)
+{
+       if (isTransparent() != transp)
+       {
+               if (transp)
+                       m_vis |= wVisTransparent;
+               else
+                       m_vis &=~wVisTransparent;
+               recalcClipRegionsWhenVisible();
+       }
+}
+
+ePoint eWidget::getAbsolutePosition()
+{
+       eWidget *root = this;
+       ePoint abspos = position();
+
+       while (root && !root->m_desktop)
+       {
+               root = root->m_parent;
+               assert(root);
+               abspos += root->position();
+       }
+
+       return abspos;
+}
+
 void eWidget::mayKillFocus()
 {
        setFocus(0);
@@ -176,45 +222,54 @@ void eWidget::mayKillFocus()
 eWidget::~eWidget()
 {
        hide();
-       
        if (m_parent)
                m_parent->m_childs.remove(this);
 
        m_parent = 0;
 
-               /* destroy all childs */
+               /* tell all childs that the parent is not anymore existing */
        ePtrList<eWidget>::iterator i(m_childs.begin());
        while (i != m_childs.end())
        {
-               (*i)->m_parent = 0;
-               delete *i;
+               (*i)->parentRemoved();
                i = m_childs.erase(i);
        }
 }
 
+void eWidget::insertIntoParent()
+{
+       ePtrList<eWidget>::iterator i = m_parent->m_childs.begin();
+       for(;;)
+       {
+               if ((i == m_parent->m_childs.end()) || (i->m_z_position > m_z_position))
+               {
+                       m_parent->m_childs.insert(i, this);
+                       return;
+               }
+               ++i;
+       }
+}
+
 void eWidget::doPaint(gPainter &painter, const gRegion &r)
 {
        if (m_visible_with_childs.empty())
                return;
-       
-       gRegion region = r;
+       gRegion region = r, childs = r;
                        /* we were in parent's space, now we are in local space */
        region.moveBy(-position());
-       
        painter.moveOffset(position());
-               /* walk all childs */
-       for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
-               i->doPaint(painter, region);
-       
                /* check if there's anything for us to paint */
        region &= m_visible_region;
-       
        if (!region.empty())
        {
                painter.resetClip(region);
                event(evtPaint, &region, &painter);
        }
-       
+
+       childs.moveBy(-position());
+               /* walk all childs */
+       for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
+               i->doPaint(painter, childs);
        painter.moveOffset(-position());
 }
 
@@ -235,6 +290,11 @@ void eWidget::recalcClipRegionsWhenVisible()
        } while(1);
 }
 
+void eWidget::parentRemoved()
+{
+       m_parent = 0;
+}
+
 int eWidget::event(int event, void *data, void *data2)
 {
        switch (event)
@@ -242,18 +302,28 @@ int eWidget::event(int event, void *data, void *data2)
        case evtPaint:
        {
                gPainter &painter = *(gPainter*)data2;
-               
-//             eDebug("eWidget::evtPaint");
+       //              eDebug("eWidget::evtPaint");
 //             dumpRegion(*(gRegion*)data);
-               if (!m_have_background_color)
+               if (!isTransparent())
                {
-                       ePtr<eWindowStyle> style;
-                       if (!getStyle(style))
-                               style->paintBackground(painter, ePoint(0, 0), size());
+                       if (!m_have_background_color)
+                       {
+                               ePtr<eWindowStyle> style;
+                               if (!getStyle(style))
+                                       style->paintBackground(painter, ePoint(0, 0), size());
+                       } else
+                       {
+                               painter.setBackgroundColor(m_background_color);
+                               painter.clear();
+                       }
                } else
                {
-                       painter.setBackgroundColor(m_background_color);
-                       painter.clear();
+                       eWidget *w = this;
+                                       while (w && !w->m_have_background_color)
+                               w = w->m_parent;
+
+                       if (w)
+                               painter.setBackgroundColor(w->m_background_color);
                }
                break;
        }
@@ -263,10 +333,12 @@ int eWidget::event(int event, void *data, void *data2)
                m_size = *static_cast<eSize*>(data);
                break;
        case evtChangedSize:
-       {
                m_clip_region = gRegion(eRect(ePoint(0, 0),  m_size));
                break;
-       }
+       case evtParentChangedPosition:
+               for (ePtrList<eWidget>::iterator i(m_childs.begin()); i != m_childs.end(); ++i)
+                       i->event(evtParentChangedPosition);
+               break;
        case evtFocusGot:
                m_focus_owner = (eWidget*)data;
                break;
@@ -283,7 +355,6 @@ void eWidget::setFocus(eWidget *focus)
 {
        if (m_current_focus)
                m_current_focus->event(evtFocusLost, this);
-       
        m_current_focus = focus;
 
        if (m_current_focus)