⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 layoutinfo.cpp

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 CPP
字号:
/******************************************************************************** Copyright (C) 1992-2006 Trolltech ASA. All rights reserved.**** This file is part of the Qt Designer 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 "layoutinfo_p.h"#include <QtDesigner/QtDesigner>#include <QtGui/QHBoxLayout>#include <QtGui/QSplitter>#include <QtCore/QMap>#include <QtCore/qdebug.h>namespace qdesigner_internal {LayoutInfo::Type LayoutInfo::layoutType(QDesignerFormEditorInterface *core, QWidget *w, QLayout *&layout){    layout = 0;    if (QDesignerContainerExtension *container = qt_extension<QDesignerContainerExtension*>(core->extensionManager(), w))        w = container->widget(container->currentIndex());    if (qobject_cast<QSplitter*>(w))        return static_cast<QSplitter*>(w)->orientation() == Qt::Horizontal ? HBox : VBox;    if (!w || !w->layout())        return NoLayout;    QLayout *lay = w->layout();    if (lay && core->metaDataBase()->item(lay) == 0) {        lay = qFindChild<QLayout*>(lay);    }    layout = lay;#ifdef QD_DEBUG    Q_ASSERT (lay == 0 || core->metaDataBase()->item(lay) != 0);#endif    return layoutType(core, lay);}/*!  \overload*/LayoutInfo::Type LayoutInfo::layoutType(QDesignerFormEditorInterface *core, QLayout *layout){    Q_UNUSED(core)    if (qobject_cast<QHBoxLayout*>(layout))        return HBox;    else if (qobject_cast<QVBoxLayout*>(layout))        return VBox;    else if (qobject_cast<QGridLayout*>(layout))        return Grid;    return NoLayout;}/*!  \overload*/LayoutInfo::Type LayoutInfo::layoutType(QDesignerFormEditorInterface *core, QWidget *w){    return layoutType(core, w->layout());}QWidget *LayoutInfo::layoutParent(QDesignerFormEditorInterface *core, QLayout *layout){    Q_UNUSED(core)    QObject *o = layout;    while (o) {        if (QWidget *widget = qobject_cast<QWidget*>(o))            return widget;        o = o->parent();    }    return 0;}void LayoutInfo::deleteLayout(QDesignerFormEditorInterface *core, QWidget *widget){    if (QDesignerContainerExtension *container = qt_extension<QDesignerContainerExtension*>(core->extensionManager(), widget))        widget = container->widget(container->currentIndex());    Q_ASSERT(widget != 0);    QLayout *layout = managedLayout(core, widget);    if (layout == 0 || core->metaDataBase()->item(layout) != 0) {        delete layout;        return;    }    qWarning() << "trying to delete an unmanaged layout:" << "widget:" << widget << "layout:" << layout;}void LayoutInfo::cells(QLayout *layout, IntervalList *rows, IntervalList *columns){    QMap<Interval, int> rowDict;    QMap<Interval, int> columnDict;    int i = 0;    while (QLayoutItem *item = layout->itemAt(i)) {        ++i;        QRect g = item->geometry();        columnDict.insert(Interval(g.left(), g.right()), 1);        rowDict.insert(Interval(g.top(), g.bottom()), 1);    }    if (columns)        *columns = columnDict.keys();    if (rows)        *rows = rowDict.keys();}bool LayoutInfo::isWidgetLaidout(QDesignerFormEditorInterface *core, QWidget *widget){    Q_UNUSED(core);    QWidget *parent = widget->parentWidget();    if (qobject_cast<QSplitter*>(parent)) { // ### generalize        return true;    }    if (parent && parent->layout()) {        if (parent->layout()->indexOf(widget) != -1)            return true;        QList<QLayout*> childLayouts = qFindChildren<QLayout*>(parent->layout());        foreach (QLayout *childLayout, childLayouts) {            if (childLayout->indexOf(widget) != -1)                return true;        }    }    return false;}QLayout *LayoutInfo::managedLayout(QDesignerFormEditorInterface *core, QWidget *widget){    if (widget == 0)        return 0;    QLayout *layout = widget->layout();    QDesignerMetaDataBaseItemInterface *item = core->metaDataBase()->item(layout);    if (layout != 0 && item == 0) {        layout = qFindChild<QLayout*>(layout);        item = core->metaDataBase()->item(layout);    }    return item != 0 ? layout : 0;}} // namespace qdesigner_internal

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -