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

📄 connectionedit_p.h

📁 qt-x11-opensource-src-4.1.4.tar.gz源码
💻 H
字号:
/******************************************************************************** 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.******************************************************************************/////  W A R N I N G//  -------------//// This file is not part of the Qt API.  It exists for the convenience// of Qt Designer.  This header// file may change from version to version without notice, or even be removed.//// We mean it.//#ifndef CONNECTIONEDIT_H#define CONNECTIONEDIT_H#include <QtCore/QMultiMap>#include <QtCore/QList>#include <QtCore/QPointer>#include <QtGui/QWidget>#include <QtGui/QPixmap>#include <QtGui/QPolygonF>#include "qtundo_p.h"#include "shared_global_p.h"class QDesignerFormWindowInterface;class QtUndoStack;namespace qdesigner_internal {class Connection;class ConnectionEdit;class QDESIGNER_SHARED_EXPORT CETypes{public:    typedef QList<Connection*> ConnectionList;    typedef QMap<Connection*, Connection*> ConnectionSet;    typedef QMap<QWidget*, QWidget*> WidgetSet;    class EndPoint {    public:        enum Type { Source, Target };        EndPoint(Connection *_con = 0, Type _type = Source) : con(_con), type(_type) {}        bool isNull() const { return con == 0; }        bool operator == (const EndPoint &other) const { return con == other.con && type == other.type; }        bool operator != (const EndPoint &other) const { return !operator == (other); }        Connection *con;        Type type;    };    enum LineDir { UpDir = 0, DownDir, RightDir, LeftDir };};class QDESIGNER_SHARED_EXPORT Connection : public CETypes{public:    Connection(ConnectionEdit *edit);    Connection(ConnectionEdit *edit, QObject *source, QObject *target);    virtual ~Connection() {}    QObject *object(EndPoint::Type type) const    {        return (type == EndPoint::Source ? m_source : m_target);    }    QWidget *widget(EndPoint::Type type) const    {        return qobject_cast<QWidget*>(object(type));    }    QPoint endPointPos(EndPoint::Type type) const;    QRect endPointRect(EndPoint::Type) const;    void setEndPoint(EndPoint::Type type, QObject *w, const QPoint &pos)        { type == EndPoint::Source ? setSource(w, pos) : setTarget(w, pos); }    bool isVisible() const;    virtual void updateVisibility();    void setVisible(bool b);    virtual QRegion region() const;    bool contains(const QPoint &pos) const;    virtual void paint(QPainter *p) const;    void update(bool update_widgets = true) const;    void checkWidgets();    QString label(EndPoint::Type type) const        { return type == EndPoint::Source ? m_source_label : m_target_label; }    void setLabel(EndPoint::Type type, const QString &text);    QRect labelRect(EndPoint::Type type) const;    QPixmap labelPixmap(EndPoint::Type type) const        { return type == EndPoint::Source ? m_source_label_pm : m_target_label_pm; }    ConnectionEdit *edit() const { return m_edit; }    virtual void inserted() {}    virtual void removed() {}private:    QPoint m_source_pos, m_target_pos;    QObject *m_source, *m_target;    QList<QPoint> m_knee_list;    QPolygonF m_arrow_head;    ConnectionEdit *m_edit;    QString m_source_label, m_target_label;    QPixmap m_source_label_pm, m_target_label_pm;    QRect m_source_rect, m_target_rect;    bool m_visible;    void setSource(QObject *source, const QPoint &pos);    void setTarget(QObject *target, const QPoint &pos);    void updateKneeList();    void trimLine();    void updatePixmap(EndPoint::Type type);    LineDir labelDir(EndPoint::Type type) const;    bool ground() const;    QRect groundRect() const;};class QDESIGNER_SHARED_EXPORT ConnectionEdit : public QWidget, public CETypes{    Q_OBJECTpublic:    ConnectionEdit(QWidget *parent, QDesignerFormWindowInterface *form);    inline QWidget *background() const { return m_bg_widget; }    void setSelected(Connection *con, bool sel);    bool selected(const Connection *con) const;    void selectNone();    int connectionCount() const { return m_con_list.size(); }    Connection *connection(int i) const { return m_con_list.at(i); }    int indexOfConnection(Connection *con) const { return m_con_list.indexOf(con); }    void deleteSelected();    virtual void setSource(Connection *con, const QString &obj_name);    virtual void setTarget(Connection *con, const QString &obj_name);    QtUndoStack *undoStack() const { return m_undo_stack; }    void clear();        void showEvent(QShowEvent * /*e*/)    {        updateBackground();    }signals:    void aboutToAddConnection(int idx);    void connectionAdded(Connection *con);    void aboutToRemoveConnection(Connection *con);    void connectionRemoved(int idx);    void connectionSelected(Connection *con);    void widgetActivated(QWidget *wgt);    void connectionChanged(Connection *con);public slots:    virtual void setBackground(QWidget *background);    void updateBackground();    void widgetRemoved(QWidget *w);    void updateLines();    void enableUpdateBackground(bool enable);protected:    virtual void paintEvent(QPaintEvent *e);    virtual void mouseMoveEvent(QMouseEvent *e);    virtual void mousePressEvent(QMouseEvent *e);    virtual void mouseReleaseEvent(QMouseEvent *e);    virtual void keyPressEvent(QKeyEvent *e);    virtual void mouseDoubleClickEvent(QMouseEvent *e);    virtual void resizeEvent(QResizeEvent *e);    virtual Connection *createConnection(QWidget *source, QWidget *target);    virtual void modifyConnection(Connection *con);    virtual QWidget *widgetAt(const QPoint &pos) const;    QRect widgetRect(QWidget *w) const;    void addConnection(Connection *con);    enum State { Editing, Connecting, Dragging };    State state() const;private:    QWidget *m_bg_widget;    QtUndoStack *m_undo_stack;    bool m_enable_update_background;    Connection *m_tmp_con; // the connection we are currently editing    ConnectionList m_con_list;    bool m_start_connection_on_drag;    void startConnection(QWidget *source, const QPoint &pos);    void continueConnection(QWidget *target, const QPoint &pos);    void endConnection(QWidget *target, const QPoint &pos);    void abortConnection();    void findObjectsUnderMouse(const QPoint &pos);    EndPoint m_end_point_under_mouse;    QPointer<QWidget> m_widget_under_mouse;    EndPoint m_drag_end_point;    QPoint m_old_source_pos, m_old_target_pos;    void startDrag(const EndPoint &end_point, const QPoint &pos);    void continueDrag(const QPoint &pos);    void endDrag(const QPoint &pos);    void adjustHotSopt(const EndPoint &end_point, const QPoint &pos);    Connection *connectionAt(const QPoint &pos) const;    EndPoint endPointAt(const QPoint &pos) const;    ConnectionSet m_sel_con_set;    void paintConnection(QPainter *p, Connection *con,                            WidgetSet *heavy_highlight_set,                            WidgetSet *light_highlight_set) const;    void paintLabel(QPainter *p, EndPoint::Type type, Connection *con);    QColor m_inactive_color, m_active_color;private:    friend class Connection;    friend class AddConnectionCommand;    friend class DeleteConnectionsCommand;    friend class SetEndPointCommand;};class QDESIGNER_SHARED_EXPORT CECommand : public QtCommand, public CETypes{    Q_OBJECTpublic:    CECommand(ConnectionEdit *edit)        : m_edit(edit) { setCanMerge(false); }    ConnectionEdit *edit() const { return m_edit; }private:    ConnectionEdit *m_edit;};class QDESIGNER_SHARED_EXPORT AddConnectionCommand : public CECommand{    Q_OBJECTpublic:    AddConnectionCommand(ConnectionEdit *edit, Connection *con);    virtual void redo();    virtual void undo();private:    Connection *m_con;};class QDESIGNER_SHARED_EXPORT DeleteConnectionsCommand : public CECommand{public:    DeleteConnectionsCommand(ConnectionEdit *edit, const ConnectionList &con_list);    virtual void redo();    virtual void undo();private:    ConnectionList m_con_list;};} // namespace qdesigner_internal#endif // CONNECTIONEDIT_H

⌨️ 快捷键说明

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