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

📄 buddyeditor.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 <QtCore/qdebug.h>#include "buddyeditor.h"#include <QtDesigner/QtDesigner>#include <qtundo_p.h>#include <qdesigner_command_p.h>#include <qdesigner_widget_p.h>#include <qdesigner_utils_p.h>#include <qlayout_widget_p.h>using namespace qdesigner_internal;/********************************************************************************* BuddyConnection*/class BuddyConnection : public Connection{public:    BuddyConnection(BuddyEditor *edit, QWidget *source, QWidget *target)        : Connection(edit, source, target) {}    BuddyConnection(BuddyEditor *edit)        : Connection(edit) {}    virtual void inserted();    virtual void removed();    BuddyEditor *buddyEditor() const { return qobject_cast<BuddyEditor*>(edit()); }};void BuddyConnection::inserted(){    QWidget *source = widget(EndPoint::Source);    QWidget *target = widget(EndPoint::Target);    if (qobject_cast<QDesignerLabel*>(source) == 0) {        qWarning("BuddyConnection::inserted(): not a label");        return;    }    SetPropertyCommand command(buddyEditor()->formWindow());    command.init(source, QLatin1String("buddy"), target->objectName());    command.redo();}void BuddyConnection::removed(){    QWidget *source = widget(EndPoint::Source);    if (qobject_cast<QDesignerLabel*>(source) == 0) {        qWarning("BuddyConnection::removed(): not a label");        return;    }    SetPropertyCommand command(buddyEditor()->formWindow());    command.init(source, QLatin1String("buddy"), QString());    command.redo();}/********************************************************************************* BuddyEditor*/BuddyEditor::BuddyEditor(QDesignerFormWindowInterface *form, QWidget *parent)    : ConnectionEdit(parent, form){    m_formWindow = form;}static bool canBeBuddy(QWidget *w, QDesignerFormWindowInterface *form){    if (qobject_cast<QLayoutWidget*>(w)            || w == form->mainContainer()            || w->isHidden())        return false;    QExtensionManager *ext = form->core()->extensionManager();    if (QDesignerPropertySheetExtension *sheet = qt_extension<QDesignerPropertySheetExtension*>(ext, w)) {        int index = sheet->indexOf(QLatin1String("focusPolicy"));        if (index != -1) {            bool ok = false;            Qt::FocusPolicy q = (Qt::FocusPolicy) Utils::valueOf(sheet->property(index), &ok);            return ok && q != Qt::NoFocus;        }    }    return false;}QWidget *BuddyEditor::widgetAt(const QPoint &pos) const{    QWidget *w = ConnectionEdit::widgetAt(pos);    while (w != 0 && !m_formWindow->isManaged(w))        w = w->parentWidget();    if (state() == Editing) {        QDesignerLabel *label = qobject_cast<QDesignerLabel*>(w);        if (label == 0)            return 0;        int cnt = connectionCount();        for (int i = 0; i < cnt; ++i) {            Connection *con = connection(i);            if (con->widget(EndPoint::Source) == w)                return 0;        }    } else {        if (!canBeBuddy(w, m_formWindow))            return 0;    }    return w;}Connection *BuddyEditor::createConnection(QWidget *source, QWidget *destination){    Connection *con = new BuddyConnection(this, source, destination);    return con;}QDesignerFormWindowInterface *BuddyEditor::formWindow() const{    return m_formWindow;}static QString buddy(QDesignerLabel *label, QDesignerFormEditorInterface *core){    QDesignerPropertySheetExtension *sheet = qt_extension<QDesignerPropertySheetExtension*>(core->extensionManager(), label);    if (sheet == 0)        return QString();    int prop_idx = sheet->indexOf(QLatin1String("buddy"));    if (prop_idx == -1)        return QString();    return sheet->property(prop_idx).toString();}void BuddyEditor::setBackground(QWidget *background){    clear();    ConnectionEdit::setBackground(background);    QList<QDesignerLabel*> label_list = qFindChildren<QDesignerLabel*>(background);    foreach (QDesignerLabel *label, label_list) {        QString buddy_name = buddy(label, m_formWindow->core());        if (buddy_name.isEmpty())            continue;        QWidget *target = qFindChild<QWidget*>(background, buddy_name);        if (target == 0)            continue;        BuddyConnection *con = new BuddyConnection(this);        con->setEndPoint(EndPoint::Source, label, widgetRect(label).center());        con->setEndPoint(EndPoint::Target, target, widgetRect(target).center());        addConnection(con);    }}

⌨️ 快捷键说明

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