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

系统编程

开发平台:

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 QGRAPHICSWIDGET_H
  38. #define QGRAPHICSWIDGET_H
  39. #include <QtGui/qfont.h>
  40. #include <QtGui/qgraphicslayoutitem.h>
  41. #include <QtGui/qgraphicsitem.h>
  42. #include <QtGui/qpalette.h>
  43. QT_BEGIN_HEADER
  44. QT_BEGIN_NAMESPACE
  45. QT_MODULE(Gui)
  46. class QFont;
  47. class QFontMetrics;
  48. class QGraphicsLayout;
  49. class QGraphicsSceneMoveEvent;
  50. class QGraphicsWidgetPrivate;
  51. class QGraphicsSceneResizeEvent;
  52. class QStyle;
  53. class QStyleOption;
  54. #if !defined(QT_NO_GRAPHICSVIEW) || (QT_EDITION & QT_MODULE_GRAPHICSVIEW) != QT_MODULE_GRAPHICSVIEW
  55. class QGraphicsWidgetPrivate;
  56. class Q_GUI_EXPORT QGraphicsWidget : public QObject, public QGraphicsItem, public QGraphicsLayoutItem
  57. {
  58.     Q_OBJECT
  59.     Q_PROPERTY(QPalette palette READ palette WRITE setPalette)
  60.     Q_PROPERTY(QFont font READ font WRITE setFont)
  61.     Q_PROPERTY(Qt::LayoutDirection layoutDirection READ layoutDirection WRITE setLayoutDirection RESET unsetLayoutDirection)
  62.     Q_PROPERTY(QSizeF size READ size WRITE resize)
  63.     Q_PROPERTY(Qt::FocusPolicy focusPolicy READ focusPolicy WRITE setFocusPolicy)
  64.     Q_PROPERTY(bool enabled READ isEnabled WRITE setEnabled)
  65.     Q_PROPERTY(bool visible READ isVisible WRITE setVisible)
  66.     Q_PROPERTY(Qt::WindowFlags windowFlags READ windowFlags WRITE setWindowFlags)
  67.     Q_PROPERTY(QString windowTitle READ windowTitle WRITE setWindowTitle)
  68. public:
  69.     QGraphicsWidget(QGraphicsItem *parent = 0, Qt::WindowFlags wFlags = 0);
  70.     ~QGraphicsWidget();
  71.     QGraphicsLayout *layout() const;
  72.     void setLayout(QGraphicsLayout *layout);
  73.     void adjustSize();
  74.     Qt::LayoutDirection layoutDirection() const;
  75.     void setLayoutDirection(Qt::LayoutDirection direction);
  76.     void unsetLayoutDirection();
  77.     QStyle *style() const;
  78.     void setStyle(QStyle *style);
  79.     QFont font() const;
  80.     void setFont(const QFont &font);
  81.     QPalette palette() const;
  82.     void setPalette(const QPalette &palette);
  83.     void resize(const QSizeF &size);
  84.     inline void resize(qreal w, qreal h) { resize(QSizeF(w, h)); }
  85.     QSizeF size() const;
  86.     void setGeometry(const QRectF &rect);
  87.     inline void setGeometry(qreal x, qreal y, qreal w, qreal h);
  88.     inline QRectF rect() const { return QRectF(QPointF(), size()); }
  89.     void setContentsMargins(qreal left, qreal top, qreal right, qreal bottom);
  90.     void getContentsMargins(qreal *left, qreal *top, qreal *right, qreal *bottom) const;
  91.     void setWindowFrameMargins(qreal left, qreal top, qreal right, qreal bottom);
  92.     void getWindowFrameMargins(qreal *left, qreal *top, qreal *right, qreal *bottom) const;
  93.     void unsetWindowFrameMargins();
  94.     QRectF windowFrameGeometry() const;
  95.     QRectF windowFrameRect() const;
  96.     // Window handling
  97.     Qt::WindowFlags windowFlags() const;
  98.     Qt::WindowType windowType() const;
  99.     void setWindowFlags(Qt::WindowFlags wFlags);
  100.     bool isActiveWindow() const;
  101.     void setWindowTitle(const QString &title);
  102.     QString windowTitle() const;
  103.     // Focus handling
  104.     Qt::FocusPolicy focusPolicy() const;
  105.     void setFocusPolicy(Qt::FocusPolicy policy);
  106.     static void setTabOrder(QGraphicsWidget *first, QGraphicsWidget *second);
  107.     QGraphicsWidget *focusWidget() const;
  108.     void setAttribute(Qt::WidgetAttribute attribute, bool on = true);
  109.     bool testAttribute(Qt::WidgetAttribute attribute) const;
  110.     enum {
  111.         Type = 11
  112.     };
  113.     int type() const;
  114.     void paint(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
  115.     virtual void paintWindowFrame(QPainter *painter, const QStyleOptionGraphicsItem *option, QWidget *widget = 0);
  116.     QRectF boundingRect() const;
  117.     QPainterPath shape() const;
  118. #if 0
  119.     static void dumpFocusChain(QGraphicsWidget *widget);
  120. #endif
  121.     // ### Qt 5: Disambiguate
  122. #ifdef Q_NO_USING_KEYWORD
  123.     const QObjectList &children() const { return QObject::children(); }
  124. #else
  125.     using QObject::children;
  126. #endif
  127. public Q_SLOTS:
  128.     bool close();
  129. protected:
  130.     virtual void initStyleOption(QStyleOption *option) const;
  131.     QSizeF sizeHint(Qt::SizeHint which, const QSizeF &constraint = QSizeF()) const;
  132.     void updateGeometry();
  133.     // Notification
  134.     QVariant itemChange(GraphicsItemChange change, const QVariant &value);
  135.     virtual QVariant propertyChange(const QString &propertyName, const QVariant &value);
  136.     // Scene events
  137.     bool sceneEvent(QEvent *event);
  138.     virtual bool windowFrameEvent(QEvent *e);
  139.     virtual Qt::WindowFrameSection windowFrameSectionAt(const QPointF& pos) const;
  140.     // Base event handlers
  141.     bool event(QEvent *event);
  142.     //virtual void actionEvent(QActionEvent *event);
  143.     virtual void changeEvent(QEvent *event);
  144.     virtual void closeEvent(QCloseEvent *event);
  145.     //void create(WId window = 0, bool initializeWindow = true, bool destroyOldWindow = true);
  146.     //void destroy(bool destroyWindow = true, bool destroySubWindows = true);
  147.     void focusInEvent(QFocusEvent *event);
  148.     virtual bool focusNextPrevChild(bool next);
  149.     void focusOutEvent(QFocusEvent *event);
  150.     virtual void hideEvent(QHideEvent *event);
  151.     //virtual bool macEvent(EventHandlerCallRef caller, EventRef event);
  152.     //virtual int metric(PaintDeviceMetric m ) const;
  153.     virtual void moveEvent(QGraphicsSceneMoveEvent *event);
  154.     virtual void polishEvent();
  155.     //virtual bool qwsEvent(QWSEvent *event);
  156.     //void resetInputContext ();
  157.     virtual void resizeEvent(QGraphicsSceneResizeEvent *event);
  158.     virtual void showEvent(QShowEvent *event);
  159.     //virtual void tabletEvent(QTabletEvent *event);
  160.     //virtual bool winEvent(MSG *message, long *result);
  161.     //virtual bool x11Event(XEvent *event);
  162.     virtual void hoverMoveEvent(QGraphicsSceneHoverEvent *event);
  163.     virtual void hoverLeaveEvent(QGraphicsSceneHoverEvent *event);
  164.     virtual void grabMouseEvent(QEvent *event);
  165.     virtual void ungrabMouseEvent(QEvent *event);
  166.     virtual void grabKeyboardEvent(QEvent *event);
  167.     virtual void ungrabKeyboardEvent(QEvent *event);
  168.     QGraphicsWidget(QGraphicsWidgetPrivate &, QGraphicsItem *parent, QGraphicsScene *, Qt::WindowFlags wFlags = 0);
  169. private:
  170.     Q_DISABLE_COPY(QGraphicsWidget)
  171.     Q_DECLARE_PRIVATE_D(QGraphicsItem::d_ptr, QGraphicsWidget)
  172.     friend class QGraphicsScene;
  173.     friend class QGraphicsScenePrivate;
  174.     friend class QGraphicsView;
  175.     friend class QGraphicsItem;
  176.     friend class QGraphicsItemPrivate;
  177.     friend class QGraphicsLayout;
  178.     friend class QWidget;
  179.     friend class QApplication;
  180. };
  181. inline void QGraphicsWidget::setGeometry(qreal ax, qreal ay, qreal aw, qreal ah)
  182. { setGeometry(QRectF(ax, ay, aw, ah)); }
  183. #endif
  184. QT_END_NAMESPACE
  185. QT_END_HEADER
  186. #endif