src/gui/graphicsview/qgraphicslayout_p.cpp
changeset 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
-1:000000000000 0:1918ee327afb
       
     1 /****************************************************************************
       
     2 **
       
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 ** All rights reserved.
       
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
       
     6 **
       
     7 ** This file is part of the QtGui module of the Qt Toolkit.
       
     8 **
       
     9 ** $QT_BEGIN_LICENSE:LGPL$
       
    10 ** No Commercial Usage
       
    11 ** This file contains pre-release code and may not be distributed.
       
    12 ** You may use this file in accordance with the terms and conditions
       
    13 ** contained in the Technology Preview License Agreement accompanying
       
    14 ** this package.
       
    15 **
       
    16 ** GNU Lesser General Public License Usage
       
    17 ** Alternatively, this file may be used under the terms of the GNU Lesser
       
    18 ** General Public License version 2.1 as published by the Free Software
       
    19 ** Foundation and appearing in the file LICENSE.LGPL included in the
       
    20 ** packaging of this file.  Please review the following information to
       
    21 ** ensure the GNU Lesser General Public License version 2.1 requirements
       
    22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
       
    23 **
       
    24 ** In addition, as a special exception, Nokia gives you certain additional
       
    25 ** rights.  These rights are described in the Nokia Qt LGPL Exception
       
    26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
       
    27 **
       
    28 ** If you have questions regarding the use of this file, please contact
       
    29 ** Nokia at qt-info@nokia.com.
       
    30 **
       
    31 **
       
    32 **
       
    33 **
       
    34 **
       
    35 **
       
    36 **
       
    37 **
       
    38 ** $QT_END_LICENSE$
       
    39 **
       
    40 ****************************************************************************/
       
    41 
       
    42 #include "qglobal.h"
       
    43 
       
    44 #ifndef QT_NO_GRAPHICSVIEW
       
    45 
       
    46 #include "qgraphicslayout_p.h"
       
    47 #include "qgraphicslayout.h"
       
    48 #include "qgraphicswidget.h"
       
    49 #include "qapplication.h"
       
    50 
       
    51 QT_BEGIN_NAMESPACE
       
    52 
       
    53 /*!
       
    54     \internal
       
    55 
       
    56     \a mw is the new parent. all items in the layout will be a child of \a mw.
       
    57  */
       
    58 void QGraphicsLayoutPrivate::reparentChildItems(QGraphicsItem *newParent)
       
    59 {
       
    60     Q_Q(QGraphicsLayout);
       
    61     int n =  q->count();
       
    62     //bool mwVisible = mw && mw->isVisible();
       
    63     for (int i = 0; i < n; ++i) {
       
    64         QGraphicsLayoutItem *layoutChild = q->itemAt(i);
       
    65         if (!layoutChild) {
       
    66             // Skip stretch items
       
    67             continue;
       
    68         }
       
    69         if (layoutChild->isLayout()) {
       
    70             QGraphicsLayout *l = static_cast<QGraphicsLayout*>(layoutChild);
       
    71             l->d_func()->reparentChildItems(newParent);
       
    72         } else if (QGraphicsItem *itemChild = layoutChild->graphicsItem()){
       
    73             QGraphicsItem *childParent = itemChild->parentItem();
       
    74 #ifdef QT_DEBUG
       
    75             if (childParent && childParent != newParent && itemChild->isWidget() && qt_graphicsLayoutDebug()) {
       
    76                 QGraphicsWidget *w = static_cast<QGraphicsWidget*>(layoutChild);
       
    77                 qWarning("QGraphicsLayout::addChildLayout: widget %s \"%s\" in wrong parent; moved to correct parent",
       
    78                          w->metaObject()->className(), w->objectName().toLocal8Bit().constData());
       
    79             }
       
    80 #endif
       
    81             if (childParent != newParent)
       
    82                 itemChild->setParentItem(newParent);
       
    83         }
       
    84     }
       
    85 }
       
    86 
       
    87 void QGraphicsLayoutPrivate::getMargin(qreal *result, qreal userMargin, QStyle::PixelMetric pm) const
       
    88 {
       
    89     if (!result)
       
    90         return;
       
    91     Q_Q(const QGraphicsLayout);
       
    92 
       
    93     QGraphicsLayoutItem *parent = q->parentLayoutItem();
       
    94     if (userMargin >= 0.0) {
       
    95         *result = userMargin;
       
    96     } else if (!parent) {
       
    97         *result = 0.0;
       
    98     } else if (parent->isLayout()) {    // sublayouts have 0 margin by default
       
    99         *result = 0.0;
       
   100     } else {
       
   101         *result = 0.0;
       
   102         if (QGraphicsItem *layoutParentItem = parentItem()) {
       
   103             if (layoutParentItem->isWidget())
       
   104                 *result = (qreal)static_cast<QGraphicsWidget*>(layoutParentItem)->style()->pixelMetric(pm, 0);
       
   105         }
       
   106     }
       
   107 }
       
   108 
       
   109 Qt::LayoutDirection QGraphicsLayoutPrivate::visualDirection() const
       
   110 {
       
   111     if (QGraphicsItem *maybeWidget = parentItem()) {
       
   112         if (maybeWidget->isWidget())
       
   113             return static_cast<QGraphicsWidget*>(maybeWidget)->layoutDirection();
       
   114     }
       
   115     return QApplication::layoutDirection();
       
   116 }
       
   117 
       
   118 static bool removeLayoutItemFromLayout(QGraphicsLayout *lay, QGraphicsLayoutItem *layoutItem)
       
   119 {
       
   120     if (!lay)
       
   121         return false;
       
   122 
       
   123     for (int i = lay->count() - 1; i >= 0; --i) {
       
   124         QGraphicsLayoutItem *child = lay->itemAt(i);
       
   125         if (child && child->isLayout()) {
       
   126             if (removeLayoutItemFromLayout(static_cast<QGraphicsLayout*>(child), layoutItem))
       
   127                 return true;
       
   128         } else if (child == layoutItem) {
       
   129             lay->removeAt(i);
       
   130             return true;
       
   131         }
       
   132     }
       
   133     return false;
       
   134 }
       
   135 
       
   136 /*!
       
   137     \internal
       
   138 
       
   139     This function is called from subclasses to add a layout item \a layoutItem 
       
   140     to a layout.
       
   141 
       
   142     It takes care of automatically reparenting graphics items, if needed.
       
   143 
       
   144     If \a layoutItem is a  is already in a layout, it will remove it  from that layout.
       
   145     
       
   146 */
       
   147 void QGraphicsLayoutPrivate::addChildLayoutItem(QGraphicsLayoutItem *layoutItem)
       
   148 {
       
   149     Q_Q(QGraphicsLayout);
       
   150     if (QGraphicsLayoutItem *maybeLayout = layoutItem->parentLayoutItem()) {
       
   151         if (maybeLayout->isLayout())
       
   152             removeLayoutItemFromLayout(static_cast<QGraphicsLayout*>(maybeLayout), layoutItem);
       
   153     }    
       
   154     layoutItem->setParentLayoutItem(q);
       
   155     if (layoutItem->isLayout()) {
       
   156         if (QGraphicsItem *parItem = parentItem()) {
       
   157             static_cast<QGraphicsLayout*>(layoutItem)->d_func()->reparentChildItems(parItem);
       
   158         }
       
   159     } else {
       
   160         if (QGraphicsItem *item = layoutItem->graphicsItem()) {        
       
   161             QGraphicsItem *newParent = parentItem();
       
   162             QGraphicsItem *oldParent = item->parentItem();
       
   163             if (oldParent == newParent || !newParent)
       
   164                 return;
       
   165 
       
   166 #ifdef QT_DEBUG
       
   167             if (oldParent && item->isWidget()) {
       
   168                 QGraphicsWidget *w = static_cast<QGraphicsWidget*>(item);
       
   169                 qWarning("QGraphicsLayout::addChildLayoutItem: %s \"%s\" in wrong parent; moved to correct parent",
       
   170                     w->metaObject()->className(), w->objectName().toLocal8Bit().constData());
       
   171             }
       
   172 #endif
       
   173 
       
   174             item->setParentItem(newParent);
       
   175         }
       
   176     }
       
   177 }
       
   178 
       
   179 void QGraphicsLayoutPrivate::activateRecursive(QGraphicsLayoutItem *item)
       
   180 {
       
   181     if (item->isLayout()) {
       
   182         QGraphicsLayout *layout = static_cast<QGraphicsLayout *>(item);
       
   183         if (layout->d_func()->activated)
       
   184             layout->invalidate();
       
   185         
       
   186         for (int i = layout->count() - 1; i >= 0; --i) {
       
   187             QGraphicsLayoutItem *childItem = layout->itemAt(i);
       
   188             if (childItem)
       
   189                 activateRecursive(childItem);
       
   190         }
       
   191         layout->d_func()->activated = true;
       
   192     }
       
   193 }
       
   194 
       
   195 
       
   196 QT_END_NAMESPACE
       
   197         
       
   198 #endif //QT_NO_GRAPHICSVIEW