qgraphicsscene.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:11k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QGRAPHICSSCENE_H
  38. #define QGRAPHICSSCENE_H
  39. #include <QtCore/qobject.h>
  40. #include <QtCore/qpoint.h>
  41. #include <QtCore/qrect.h>
  42. #include <QtGui/qbrush.h>
  43. #include <QtGui/qfont.h>
  44. #include <QtGui/qtransform.h>
  45. #include <QtGui/qmatrix.h>
  46. #include <QtGui/qpen.h>
  47. QT_BEGIN_HEADER
  48. QT_BEGIN_NAMESPACE
  49. QT_MODULE(Gui)
  50. #if !defined(QT_NO_GRAPHICSVIEW) || (QT_EDITION & QT_MODULE_GRAPHICSVIEW) != QT_MODULE_GRAPHICSVIEW
  51. template<typename T> class QList;
  52. class QFocusEvent;
  53. class QFont;
  54. class QFontMetrics;
  55. class QGraphicsEllipseItem;
  56. class QGraphicsItem;
  57. class QGraphicsItemGroup;
  58. class QGraphicsLineItem;
  59. class QGraphicsPathItem;
  60. class QGraphicsPixmapItem;
  61. class QGraphicsPolygonItem;
  62. class QGraphicsProxyWidget;
  63. class QGraphicsRectItem;
  64. class QGraphicsSceneContextMenuEvent;
  65. class QGraphicsSceneDragDropEvent;
  66. class QGraphicsSceneEvent;
  67. class QGraphicsSceneHelpEvent;
  68. class QGraphicsSceneHoverEvent;
  69. class QGraphicsSceneMouseEvent;
  70. class QGraphicsSceneWheelEvent;
  71. class QGraphicsSimpleTextItem;
  72. class QGraphicsTextItem;
  73. class QGraphicsView;
  74. class QGraphicsWidget;
  75. class QHelpEvent;
  76. class QInputMethodEvent;
  77. class QKeyEvent;
  78. class QLineF;
  79. class QPainterPath;
  80. class QPixmap;
  81. class QPointF;
  82. class QPolygonF;
  83. class QRectF;
  84. class QSizeF;
  85. class QStyle;
  86. class QStyleOptionGraphicsItem;
  87. class QGraphicsScenePrivate;
  88. class Q_GUI_EXPORT QGraphicsScene : public QObject
  89. {
  90.     Q_OBJECT
  91.     Q_PROPERTY(QBrush backgroundBrush READ backgroundBrush WRITE setBackgroundBrush)
  92.     Q_PROPERTY(QBrush foregroundBrush READ foregroundBrush WRITE setForegroundBrush)
  93.     Q_PROPERTY(ItemIndexMethod itemIndexMethod READ itemIndexMethod WRITE setItemIndexMethod)
  94.     Q_PROPERTY(QRectF sceneRect READ sceneRect WRITE setSceneRect)
  95.     Q_PROPERTY(int bspTreeDepth READ bspTreeDepth WRITE setBspTreeDepth)
  96.     Q_PROPERTY(QPalette palette READ palette WRITE setPalette)
  97.     Q_PROPERTY(QFont font READ font WRITE setFont)
  98. public:
  99.     enum ItemIndexMethod {
  100.         BspTreeIndex,
  101.         NoIndex = -1
  102.     };
  103.     enum SceneLayer {
  104.         ItemLayer = 0x1,
  105.         BackgroundLayer = 0x2,
  106.         ForegroundLayer = 0x4,
  107.         AllLayers = 0xffff
  108.     };
  109.     Q_DECLARE_FLAGS(SceneLayers, SceneLayer)
  110.     QGraphicsScene(QObject *parent = 0);
  111.     QGraphicsScene(const QRectF &sceneRect, QObject *parent = 0);
  112.     QGraphicsScene(qreal x, qreal y, qreal width, qreal height, QObject *parent = 0);
  113.     virtual ~QGraphicsScene();
  114.     QRectF sceneRect() const;
  115.     inline qreal width() const { return sceneRect().width(); }
  116.     inline qreal height() const { return sceneRect().height(); }
  117.     void setSceneRect(const QRectF &rect);
  118.     inline void setSceneRect(qreal x, qreal y, qreal w, qreal h)
  119.     { setSceneRect(QRectF(x, y, w, h)); }
  120.     void render(QPainter *painter,
  121.                 const QRectF &target = QRectF(), const QRectF &source = QRectF(),
  122.                 Qt::AspectRatioMode aspectRatioMode = Qt::KeepAspectRatio);
  123.     ItemIndexMethod itemIndexMethod() const;
  124.     void setItemIndexMethod(ItemIndexMethod method);
  125.     int bspTreeDepth() const;
  126.     void setBspTreeDepth(int depth);
  127.     QRectF itemsBoundingRect() const;
  128.     QList<QGraphicsItem *> items() const;
  129.     QList<QGraphicsItem *> items(const QPointF &pos) const;
  130.     QList<QGraphicsItem *> items(const QRectF &rect, Qt::ItemSelectionMode mode = Qt::IntersectsItemShape) const;
  131.     QList<QGraphicsItem *> items(const QPolygonF &polygon, Qt::ItemSelectionMode mode = Qt::IntersectsItemShape) const;
  132.     QList<QGraphicsItem *> items(const QPainterPath &path, Qt::ItemSelectionMode mode = Qt::IntersectsItemShape) const;
  133.     QList<QGraphicsItem *> collidingItems(const QGraphicsItem *item, Qt::ItemSelectionMode mode = Qt::IntersectsItemShape) const;
  134.     QGraphicsItem *itemAt(const QPointF &pos) const;
  135.     inline QList<QGraphicsItem *> items(qreal x, qreal y, qreal w, qreal h, Qt::ItemSelectionMode mode = Qt::IntersectsItemShape) const
  136.     { return items(QRectF(x, y, w, h), mode); }
  137.     inline QGraphicsItem *itemAt(qreal x, qreal y) const
  138.     { return itemAt(QPointF(x, y)); }
  139.     QList<QGraphicsItem *> selectedItems() const;
  140.     QPainterPath selectionArea() const;
  141.     void setSelectionArea(const QPainterPath &path);
  142.     void setSelectionArea(const QPainterPath &path, Qt::ItemSelectionMode);
  143.     QGraphicsItemGroup *createItemGroup(const QList<QGraphicsItem *> &items);
  144.     void destroyItemGroup(QGraphicsItemGroup *group);
  145.     void addItem(QGraphicsItem *item);
  146.     QGraphicsEllipseItem *addEllipse(const QRectF &rect, const QPen &pen = QPen(), const QBrush &brush = QBrush());
  147.     QGraphicsLineItem *addLine(const QLineF &line, const QPen &pen = QPen());
  148.     QGraphicsPathItem *addPath(const QPainterPath &path, const QPen &pen = QPen(), const QBrush &brush = QBrush());
  149.     QGraphicsPixmapItem *addPixmap(const QPixmap &pixmap);
  150.     QGraphicsPolygonItem *addPolygon(const QPolygonF &polygon, const QPen &pen = QPen(), const QBrush &brush = QBrush());
  151.     QGraphicsRectItem *addRect(const QRectF &rect, const QPen &pen = QPen(), const QBrush &brush = QBrush());
  152.     QGraphicsTextItem *addText(const QString &text, const QFont &font = QFont());
  153.     QGraphicsSimpleTextItem *addSimpleText(const QString &text, const QFont &font = QFont());
  154.     QGraphicsProxyWidget *addWidget(QWidget *widget, Qt::WindowFlags wFlags = 0);
  155.     inline QGraphicsEllipseItem *addEllipse(qreal x, qreal y, qreal w, qreal h, const QPen &pen = QPen(), const QBrush &brush = QBrush())
  156.     { return addEllipse(QRectF(x, y, w, h), pen, brush); }
  157.     inline QGraphicsLineItem *addLine(qreal x1, qreal y1, qreal x2, qreal y2, const QPen &pen = QPen())
  158.     { return addLine(QLineF(x1, y1, x2, y2), pen); }
  159.     inline QGraphicsRectItem *addRect(qreal x, qreal y, qreal w, qreal h, const QPen &pen = QPen(), const QBrush &brush = QBrush())
  160.     { return addRect(QRectF(x, y, w, h), pen, brush); }
  161.     void removeItem(QGraphicsItem *item);
  162.     
  163.     QGraphicsItem *focusItem() const;
  164.     void setFocusItem(QGraphicsItem *item, Qt::FocusReason focusReason = Qt::OtherFocusReason);
  165.     bool hasFocus() const;
  166.     void setFocus(Qt::FocusReason focusReason = Qt::OtherFocusReason);
  167.     void clearFocus();
  168.     QGraphicsItem *mouseGrabberItem() const;
  169.     QBrush backgroundBrush() const;
  170.     void setBackgroundBrush(const QBrush &brush);
  171.     QBrush foregroundBrush() const;
  172.     void setForegroundBrush(const QBrush &brush);
  173.     virtual QVariant inputMethodQuery(Qt::InputMethodQuery query) const;
  174.     QList <QGraphicsView *> views() const;
  175.     inline void update(qreal x, qreal y, qreal w, qreal h)
  176.     { update(QRectF(x, y, w, h)); }
  177.     inline void invalidate(qreal x, qreal y, qreal w, qreal h, SceneLayers layers = AllLayers)
  178.     { invalidate(QRectF(x, y, w, h), layers); }
  179.     QStyle *style() const;
  180.     void setStyle(QStyle *style);
  181.     QFont font() const;
  182.     void setFont(const QFont &font);
  183.     QPalette palette() const;
  184.     void setPalette(const QPalette &palette);
  185.     QGraphicsWidget *activeWindow() const;
  186.     void setActiveWindow(QGraphicsWidget *widget);
  187. public Q_SLOTS:
  188.     void update(const QRectF &rect = QRectF());
  189.     void invalidate(const QRectF &rect = QRectF(), SceneLayers layers = AllLayers);
  190.     void advance();
  191.     void clearSelection();
  192.     void clear();
  193. protected:
  194.     bool event(QEvent *event);
  195.     bool eventFilter(QObject *watched, QEvent *event);
  196.     virtual void contextMenuEvent(QGraphicsSceneContextMenuEvent *event);
  197.     virtual void dragEnterEvent(QGraphicsSceneDragDropEvent *event);
  198.     virtual void dragMoveEvent(QGraphicsSceneDragDropEvent *event);
  199.     virtual void dragLeaveEvent(QGraphicsSceneDragDropEvent *event);
  200.     virtual void dropEvent(QGraphicsSceneDragDropEvent *event);
  201.     virtual void focusInEvent(QFocusEvent *event);
  202.     virtual void focusOutEvent(QFocusEvent *event);
  203.     virtual void helpEvent(QGraphicsSceneHelpEvent *event);
  204.     virtual void keyPressEvent(QKeyEvent *event);
  205.     virtual void keyReleaseEvent(QKeyEvent *event);
  206.     virtual void mousePressEvent(QGraphicsSceneMouseEvent *event);
  207.     virtual void mouseMoveEvent(QGraphicsSceneMouseEvent *event);
  208.     virtual void mouseReleaseEvent(QGraphicsSceneMouseEvent *event);
  209.     virtual void mouseDoubleClickEvent(QGraphicsSceneMouseEvent *event);
  210.     virtual void wheelEvent(QGraphicsSceneWheelEvent *event);
  211.     virtual void inputMethodEvent(QInputMethodEvent *event);
  212.     virtual void drawBackground(QPainter *painter, const QRectF &rect);
  213.     virtual void drawForeground(QPainter *painter, const QRectF &rect);
  214.     virtual void drawItems(QPainter *painter, int numItems,
  215.                            QGraphicsItem *items[],
  216.                            const QStyleOptionGraphicsItem options[],
  217.                            QWidget *widget = 0);
  218. protected Q_SLOTS:
  219.     bool focusNextPrevChild(bool next);
  220. Q_SIGNALS:
  221.     void changed(const QList<QRectF> &region);
  222.     void sceneRectChanged(const QRectF &rect);
  223.     void selectionChanged();
  224. private:
  225.     void itemUpdated(QGraphicsItem *item, const QRectF &rect);
  226.     Q_DECLARE_PRIVATE(QGraphicsScene)
  227.     Q_DISABLE_COPY(QGraphicsScene)
  228.     Q_PRIVATE_SLOT(d_func(), void _q_updateIndex())
  229.     Q_PRIVATE_SLOT(d_func(), void _q_emitUpdated())
  230.     Q_PRIVATE_SLOT(d_func(), void _q_removeItemLater(QGraphicsItem *item))
  231.     Q_PRIVATE_SLOT(d_func(), void _q_updateLater())
  232.     Q_PRIVATE_SLOT(d_func(), void _q_polishItems())
  233.     friend class QGraphicsItem;
  234.     friend class QGraphicsItemPrivate;
  235.     friend class QGraphicsView;
  236.     friend class QGraphicsViewPrivate;
  237.     friend class QGraphicsWidget;
  238. };
  239. Q_DECLARE_OPERATORS_FOR_FLAGS(QGraphicsScene::SceneLayers)
  240. QT_END_NAMESPACE
  241. QT_END_HEADER
  242. #endif // QT_NO_GRAPHICSVIEW
  243. #endif