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

系统编程

开发平台:

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.
  23. **
  24. ** Qt for Windows(R) Licensees
  25. ** As a special exception, Nokia, as the sole copyright holder for Qt
  26. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  27. ** right for the Qt/Eclipse Integration to link to functionality
  28. ** provided by Qt Designer and its related libraries.
  29. **
  30. ** If you are unsure which license is appropriate for your use, please
  31. ** contact the sales department at qt-sales@nokia.com.
  32. **
  33. ****************************************************************************/
  34. #ifndef QWSMANAGER_QWS_H
  35. #define QWSMANAGER_QWS_H
  36. #include <QtGui/qpixmap.h>
  37. #include <QtCore/qobject.h>
  38. #include <QtGui/qdecoration_qws.h>
  39. #include <QtGui/qevent.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_QWS_MANAGER
  44. class QAction;
  45. class QPixmap;
  46. class QWidget;
  47. class QPopupMenu;
  48. class QRegion;
  49. class QMouseEvent;
  50. class QWSManagerPrivate;
  51. class Q_GUI_EXPORT QWSManager : public QObject
  52. {
  53.     Q_OBJECT
  54.     Q_DECLARE_PRIVATE(QWSManager)
  55. public:
  56.     explicit QWSManager(QWidget *);
  57.     ~QWSManager();
  58.     static QDecoration *newDefaultDecoration();
  59.     QWidget *widget();
  60.     static QWidget *grabbedMouse();
  61.     void maximize();
  62.     void startMove();
  63.     void startResize();
  64.     QRegion region();
  65.     QRegion &cachedRegion();
  66. protected Q_SLOTS:
  67.     void menuTriggered(QAction *action);
  68. protected:
  69.     void handleMove(QPoint g);
  70.     virtual bool event(QEvent *e);
  71.     virtual void mouseMoveEvent(QMouseEvent *);
  72.     virtual void mousePressEvent(QMouseEvent *);
  73.     virtual void mouseReleaseEvent(QMouseEvent *);
  74.     virtual void mouseDoubleClickEvent(QMouseEvent *);
  75.     virtual void paintEvent(QPaintEvent *);
  76.     bool repaintRegion(int region, QDecoration::DecorationState state);
  77.     void menu(const QPoint &);
  78. private:
  79.     friend class QWidget;
  80.     friend class QETWidget;
  81.     friend class QWidgetPrivate;
  82.     friend class QApplication;
  83.     friend class QApplicationPrivate;
  84.     friend class QWidgetBackingStore;
  85.     friend class QWSWindowSurface;
  86.     friend class QGLDrawable;
  87. };
  88. QT_BEGIN_INCLUDE_NAMESPACE
  89. #include <QtGui/qdecorationdefault_qws.h>
  90. QT_END_INCLUDE_NAMESPACE
  91. #endif // QT_NO_QWS_MANAGER
  92. QT_END_NAMESPACE
  93. QT_END_HEADER
  94. #endif // QWSMANAGER_QWS_H