signalsloteditor_p.h
来自「奇趣公司比较新的qt/emd版本」· C头文件 代码 · 共 137 行
H
137 行
/******************************************************************************** Copyright (C) 1992-2007 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://trolltech.com/products/qt/licenses/licensing/opensource/**** If you are unsure which license is appropriate for your use, please** review the following information:** http://trolltech.com/products/qt/licenses/licensing/licensingoverview** or contact the sales department at sales@trolltech.com.**** In addition, as a special exception, Trolltech gives you certain** additional rights. These rights are described in the Trolltech GPL** Exception version 1.0, which can be found at** http://www.trolltech.com/products/qt/gplexception/ and in the file** GPL_EXCEPTION.txt in this package.**** In addition, as a special exception, Trolltech, as the sole copyright** holder for Qt Designer, grants users of the Qt/Eclipse Integration** plug-in the right for the Qt/Eclipse Integration to link to** functionality provided by Qt Designer and its related libraries.**** Trolltech reserves all rights not expressly granted herein.**** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.******************************************************************************/#ifndef SIGNALSLOTEDITOR_P_H#define SIGNALSLOTEDITOR_P_H//// W A R N I N G// -------------//// This file is not part of the Qt API. It exists purely as an// implementation detail. This header file may change from version to// version without notice, or even be removed.//// We mean it.//#include <QtCore/QString>#include <QtCore/QStringList>#include <QtCore/QList>#include <QtCore/QAbstractItemModel>#include <connectionedit_p.h>class QDesignerFormWindowInterface;class DomConnection;namespace qdesigner_internal {class SignalSlotEditor;struct ClassInfo{ ClassInfo(const QString &_class_name = QString(), const QStringList &_member_list = QStringList()) : class_name(_class_name), member_list(_member_list) {} QString class_name; QStringList member_list;};typedef QList<ClassInfo> ClassList;enum MemberType { SignalMember, SlotMember };QStringList objectNameList(QDesignerFormWindowInterface *form);QStringList memberList(QDesignerFormWindowInterface *form, QObject *object, MemberType member_type);ClassList classList(const QString &obj_name, MemberType member_type, const QString &peer, QDesignerFormWindowInterface *form);class SignalSlotConnection : public Connection{public: SignalSlotConnection(ConnectionEdit *edit, QWidget *source = 0, QWidget *target = 0); void setSignal(const QString &signal); void setSlot(const QString &slot); QString sender() const; QString receiver() const; inline QString signal() const { return m_signal; } inline QString slot() const { return m_slot; } DomConnection *toUi() const; virtual void updateVisibility();private: QString m_signal, m_slot;};class ConnectionModel : public QAbstractItemModel{ Q_OBJECTpublic: ConnectionModel(SignalSlotEditor *editor, QObject *parent = 0); virtual QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const; virtual QModelIndex parent(const QModelIndex &child) const; virtual int rowCount(const QModelIndex &parent = QModelIndex()) const; virtual int columnCount(const QModelIndex &parent = QModelIndex()) const; virtual QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const; virtual bool setData(const QModelIndex &index, const QVariant &data, int role = Qt::DisplayRole); virtual Qt::ItemFlags flags(const QModelIndex &index) const; virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const; QModelIndex connectionToIndex(Connection *con) const; Connection *indexToConnection(const QModelIndex &index) const; void updateAll();private slots: void connectionAdded(Connection *con); void connectionRemoved(int idx); void aboutToRemoveConnection(Connection *con); void aboutToAddConnection(int idx); void connectionChanged(Connection *con);private: SignalSlotEditor *m_editor;};} // namespace qdesigner_internal#endif // SIGNALSLOTEDITOR_P_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?