📄 qboxlayout.cpp
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the QtGui module of the Qt Toolkit.**** This file may be used under the terms of the GNU General Public** License version 2.0 as published by the Free Software Foundation** and appearing in the file LICENSE.GPL included in the packaging of** this file. Please review the following information to ensure GNU** General Public Licensing requirements will be met:** http://www.trolltech.com/products/qt/opensource.html**** If you are unsure which license is appropriate for your use, please** review the following information:** http://www.trolltech.com/products/qt/licensing.html or contact the** sales department at sales@trolltech.com.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#include "qboxlayout.h"#include "qapplication.h"#include "qwidget.h"#include "qlist.h"#include "qsizepolicy.h"#include "qvector.h"#include "qlayoutengine_p.h"#include "qlayout_p.h"/* Returns true if the \a widget can be added to the \a layout; otherwise returns false.*/static bool checkWidget(QLayout *layout, QWidget *widget){ if (!widget) { qWarning("QLayout: Cannot add null widget to %s/%s", layout->metaObject()->className(), layout->objectName().toLocal8Bit().data()); return false; } return true;}struct QBoxLayoutItem{ QBoxLayoutItem(QLayoutItem *it, int stretch_ = 0) : item(it), stretch(stretch_), magic(false) { } ~QBoxLayoutItem() { delete item; } int hfw(int w) { if (item->hasHeightForWidth()) { return item->heightForWidth(w); } else { return item->sizeHint().height(); } } int mhfw(int w) { if (item->hasHeightForWidth()) { return item->heightForWidth(w); } else { return item->minimumSize().height(); } } int hStretch() { if (stretch == 0 && item->widget()) { return item->widget()->sizePolicy().horizontalStretch(); } else { return stretch; } } int vStretch() { if (stretch == 0 && item->widget()) { return item->widget()->sizePolicy().verticalStretch(); } else { return stretch; } } QLayoutItem *item; int stretch; bool magic;};class QBoxLayoutPrivate : public QLayoutPrivate{ Q_DECLARE_PUBLIC(QBoxLayout)public: QBoxLayoutPrivate() : hfwWidth(-1), dirty(true) { } ~QBoxLayoutPrivate(); void setDirty() { geomArray.clear(); hfwWidth = -1; hfwHeight = -1; dirty = true; } QList<QBoxLayoutItem *> list; QVector<QLayoutStruct> geomArray; int hfwWidth; int hfwHeight; int hfwMinHeight; QSize sizeHint; QSize minSize; QSize maxSize; Qt::Orientations expanding; uint hasHfw : 1; uint dirty : 1; QBoxLayout::Direction dir; inline void deleteAll() { while (!list.isEmpty()) delete list.takeFirst(); } void setupGeom(); void calcHfw(int);};QBoxLayoutPrivate::~QBoxLayoutPrivate(){}static inline bool horz(QBoxLayout::Direction dir){ return dir == QBoxLayout::RightToLeft || dir == QBoxLayout::LeftToRight;}/* Initializes the data structure needed by qGeomCalc and recalculates max/min and size hint.*/void QBoxLayoutPrivate::setupGeom(){ if (!dirty) return; Q_Q(QBoxLayout); int maxw = horz(dir) ? 0 : QLAYOUTSIZE_MAX; int maxh = horz(dir) ? QLAYOUTSIZE_MAX : 0; int minw = 0; int minh = 0; int hintw = 0; int hinth = 0; bool horexp = false; bool verexp = false; hasHfw = false; int n = list.count(); geomArray.clear(); geomArray.resize(n); QVector<QLayoutStruct> &a = geomArray; bool first = true; for (int i = 0; i < n; i++) { QBoxLayoutItem *box = list.at(i); QSize max = box->item->maximumSize(); QSize min = box->item->minimumSize(); QSize hint = box->item->sizeHint(); Qt::Orientations exp = box->item->expandingDirections(); bool empty = box->item->isEmpty(); // space before non-empties, except the first: int space = (empty || first) ? 0 : q->spacing(); bool ignore = empty && box->item->widget(); // ignore hidden widgets if (horz(dir)) { bool expand = exp & Qt::Horizontal || box->stretch > 0; horexp = horexp || expand; maxw += max.width() + space; minw += min.width() + space; hintw += hint.width() + space; if (!ignore) qMaxExpCalc(maxh, verexp, max.height(), exp & Qt::Vertical); minh = qMax(minh, min.height()); hinth = qMax(hinth, hint.height()); a[i].sizeHint = hint.width(); a[i].maximumSize = max.width(); a[i].minimumSize = min.width(); a[i].expansive = expand; a[i].stretch = box->stretch ? box->stretch : box->hStretch(); } else { bool expand = (exp & Qt::Vertical || box->stretch > 0); verexp = verexp || expand; maxh += max.height() + space; minh += min.height() + space; hinth += hint.height() + space; if (!ignore) qMaxExpCalc(maxw, horexp, max.width(), exp & Qt::Horizontal); minw = qMax(minw, min.width()); hintw = qMax(hintw, hint.width()); a[i].sizeHint = hint.height(); a[i].maximumSize = max.height(); a[i].minimumSize = min.height(); a[i].expansive = expand; a[i].stretch = box->stretch ? box->stretch : box->vStretch(); } a[i].empty = empty; hasHfw = hasHfw || box->item->hasHeightForWidth(); first = first && empty; } expanding = (Qt::Orientations) ((horexp ? Qt::Horizontal : 0) | (verexp ? Qt::Vertical : 0)); minSize = QSize(minw, minh); maxSize = QSize(maxw, maxh).expandedTo(minSize); sizeHint = QSize(hintw, hinth) .expandedTo(minSize) .boundedTo(maxSize); dirty = false;}/* Calculates and stores the preferred height given the width \a w.*/void QBoxLayoutPrivate::calcHfw(int w){ Q_Q(QBoxLayout); int h = 0; int mh = 0; if (horz(dir)) { QVector<QLayoutStruct> &a = geomArray; int n = a.count(); qGeomCalc(a, 0, n, 0, w, q->spacing()); for (int i = 0; i < n; i++) { QBoxLayoutItem *box = list.at(i); h = qMax(h, box->hfw(a[i].size)); mh = qMax(mh, box->mhfw(a[i].size)); } } else { bool first = true; for (int i = 0; i < list.size(); ++i) { QBoxLayoutItem *box = list.at(i); bool empty = box->item->isEmpty(); h += box->hfw(w); mh += box->mhfw(w); if (!first && !empty) { h += q->spacing(); mh += q->spacing(); } first = first && empty; } } hfwWidth = w; hfwHeight = h; hfwMinHeight = mh;}/*! \class QBoxLayout \brief The QBoxLayout class lines up child widgets horizontally or vertically. \ingroup geomanagement \ingroup appearance QBoxLayout takes the space it gets (from its parent layout or from the parentWidget()), divides it up into a row of boxes, and makes each managed widget fill one box. \image qhboxlayout-with-5-children.png Horizontal box layout with five child widgets If the QBoxLayout's orientation is Qt::Horizontal the boxes are placed in a row, with suitable sizes. Each widget (or other box) will get at least its minimum size and at most its maximum size. Any excess space is shared according to the stretch factors (more about that below). \image qvboxlayout-with-5-children.png Vertical box layout with five child widgets If the QBoxLayout's orientation is Qt::Vertical, the boxes are placed in a column, again with suitable sizes. The easiest way to create a QBoxLayout is to use one of the convenience classes, e.g. QHBoxLayout (for Qt::Horizontal boxes) or QVBoxLayout (for Qt::Vertical boxes). You can also use the QBoxLayout constructor directly, specifying its direction as LeftToRight, RightToLeft, TopToBottom, or BottomToTop. If the QBoxLayout is not the top-level layout (i.e. it is not managing all of the widget's area and children), you must add it to its parent layout before you can do anything with it. The normal way to add a layout is by calling parentLayout-\>addLayout(). Once you have done this, you can add boxes to the QBoxLayout using one of four functions: \list \o addWidget() to add a widget to the QBoxLayout and set the widget's stretch factor. (The stretch factor is along the row of boxes.) \o addSpacing() to create an empty box; this is one of the functions you use to create nice and spacious dialogs. See below for ways to set margins. \o addStretch() to create an empty, stretchable box. \o addLayout() to add a box containing another QLayout to the row and set that layout's stretch factor. \endlist Use insertWidget(), insertSpacing(), insertStretch() or insertLayout() to insert a box at a specified position in the layout. QBoxLayout also includes two margin widths: \list \o setMargin() sets the width of the outer border. This is the width of the reserved space along each of the QBoxLayout's four sides. \o setSpacing() sets the width between neighboring boxes. (You can use addSpacing() to get more space at a particular spot.) \endlist The margin default is provided by the style. The default margin most Qt styles specify is 9 for child widgets and 11 for windows. The spacing defaults to the same as the margin width for a top-level layout, or to the same as the parent layout. To remove a widget from a layout, call removeWidget(). Calling QWidget::hide() on a widget also effectively removes the widget from the layout until QWidget::show() is called. You will almost always want to use QVBoxLayout and QHBoxLayout rather than QBoxLayout because of their convenient constructors. \sa QGridLayout, QStackedLayout, {Layout Classes}*//*! \enum QBoxLayout::Direction This type is used to determine the direction of a box layout. \value LeftToRight Horizontal from left to right. \value RightToLeft Horizontal from right to left. \value TopToBottom Vertical from top to bottom. \value BottomToTop Vertical from bottom to top. \omitvalue Down \omitvalue Up*//*! Constructs a new QBoxLayout with direction \a dir and parent widget \a parent. \sa direction()*/QBoxLayout::QBoxLayout(Direction dir, QWidget *parent) : QLayout(*new QBoxLayoutPrivate, 0, parent){ Q_D(QBoxLayout); d->dir = dir;}#ifdef QT3_SUPPORT/*! Constructs a new QBoxLayout with direction \a dir and main widget \a parent. \a parent may not be 0. The \a margin is the number of pixels between the edge of the widget and its managed children. The \a spacing is the default number of pixels between neighboring children. If \a spacing is -1 the value of \a margin is used for \a spacing. \a name is the internal object name. \sa direction()*/QBoxLayout::QBoxLayout(QWidget *parent, Direction dir, int margin, int spacing, const char *name) : QLayout(*new QBoxLayoutPrivate, 0, parent){ Q_D(QBoxLayout); d->dir = dir; setMargin(margin); setObjectName(QString::fromAscii(name)); setSpacing(spacing<0 ? margin : spacing);}/*! Constructs a new QBoxLayout called \a name, with direction \a dir, and inserts it into \a parentLayout. The \a spacing is the default number of pixels between neighboring children. If \a spacing is -1, the layout will inherit its parent's spacing().*/QBoxLayout::QBoxLayout(QLayout *parentLayout, Direction dir, int spacing, const char *name) : QLayout(*new QBoxLayoutPrivate, parentLayout, 0){ Q_D(QBoxLayout); d->dir = dir; setObjectName(QString::fromAscii(name)); setSpacing(spacing);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -