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

系统编程

开发平台:

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 QDECORATION_QWS_H
  35. #define QDECORATION_QWS_H
  36. #include <QtGui/qregion.h>
  37. #include <QtGui/qwidget.h>
  38. #include <QtGui/qaction.h>
  39. QT_BEGIN_HEADER
  40. QT_BEGIN_NAMESPACE
  41. QT_MODULE(Gui)
  42. class QPopupMenu;
  43. class QMenu;
  44. #ifndef QT_NO_ACTION
  45. class QDecorationAction : public QAction
  46. {
  47. public:
  48.     QDecorationAction(const QString &text, QObject* parent, int region)
  49.         : QAction(text, parent), reg(region) {}
  50.     int reg;
  51. };
  52. #endif // QT_NO_ACTION
  53. /*
  54.  Implements decoration styles
  55. */
  56. class Q_GUI_EXPORT QDecoration
  57. {
  58. public:
  59.     QDecoration() {}
  60.     virtual ~QDecoration() {}
  61.     /* AABBBBBBBBBBCC   Items in DecorationRegion:
  62.        AijjjjjjjklmnC
  63.        A            C   A = TopLeft      B = Top        C = TopRight
  64.        D            E   D = Left                        E = Right
  65.        D            E   F = BottomLeft   H = Bottom     G = BottomRight
  66.        F            G   i = Menu         j = Title      k = Help
  67.        FFHHHHHHHHHHGG   l = Minimize     m = Maximize   n = Close
  68.     */
  69.     enum DecorationRegion {
  70.         None        = 0x0000000000, All      = 0x7fffffff,
  71.         TopLeft     = 0x0000000001, Top      = 0x0000000002, TopRight    = 0x0000000004,
  72.         Left        = 0x0000000008,                          Right       = 0x0000000010,
  73.         BottomLeft  = 0x0000000020, Bottom   = 0x0000000040, BottomRight = 0x0000000080,
  74.         Borders     = 0x00000000ff,
  75.         Menu        = 0x0000000100, Title    = 0x0000000200, Help        = 0x0000000400,
  76.         Minimize    = 0x0000000800, Maximize = 0x0000001000, Normalize   = 0x0000002000,
  77.         Close       = 0x0000004000, Move     = 0x0000008000, Resize      = 0x0000010000
  78.     };
  79.     enum DecorationState { Normal = 0x04, Disabled = 0x08, Hover = 0x01, Pressed = 0x02 };
  80.     virtual QRegion region(const QWidget *w, const QRect &rect, int decorationRegion = All ) = 0;
  81.     QRegion region(const QWidget *w, int decorationRegion = All )
  82.     { return region(w, w->rect(), decorationRegion); }
  83.     virtual int regionAt(const QWidget *w, const QPoint &point);
  84.     virtual void regionClicked(QWidget *widget, int region);
  85.     virtual void regionDoubleClicked(QWidget *widget, int region);
  86. #ifndef QT_NO_MENU
  87.     virtual void buildSysMenu(QWidget *widget, QMenu *menu);
  88.     void menuTriggered(QWidget *widget, QAction *action);
  89. #endif
  90.     static void startMove(QWidget *widget);
  91.     static void startResize(QWidget *widget);
  92.     virtual bool paint(QPainter *p, const QWidget *w, int decorationRegion = All,
  93.                        DecorationState state = Normal) = 0;
  94. };
  95. QT_END_NAMESPACE
  96. QT_END_HEADER
  97. #endif // QDECORATION_QWS_H