source: trunk/src/gui/graphicsview/qgraphicslayout_p.cpp@ 1021

Last change on this file since 1021 was 846, checked in by Dmitry A. Kuminov, 15 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 7.0 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4** All rights reserved.
5** Contact: Nokia Corporation ([email protected])
6**
7** This file is part of the QtGui module of the Qt Toolkit.
8**
9** $QT_BEGIN_LICENSE:LGPL$
10** Commercial Usage
11** Licensees holding valid Qt Commercial licenses may use this file in
12** accordance with the Qt Commercial License Agreement provided with the
13** Software or, alternatively, in accordance with the terms contained in
14** a written agreement between you and Nokia.
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** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you have questions regarding the use of this file, please contact
37** Nokia at [email protected].
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
51QT_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 */
58void 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
87void 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
109Qt::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
118static bool removeLayoutItemFromLayout(QGraphicsLayout *lay, QGraphicsLayoutItem *layoutItem)
119{