qframe.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.  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 QFRAME_H
  38. #define QFRAME_H
  39. #include <QtGui/qwidget.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. class QFramePrivate;
  44. class Q_GUI_EXPORT QFrame : public QWidget
  45. {
  46.     Q_OBJECT
  47.     Q_ENUMS(Shape Shadow)
  48.     Q_PROPERTY(Shape frameShape READ frameShape WRITE setFrameShape)
  49.     Q_PROPERTY(Shadow frameShadow READ frameShadow WRITE setFrameShadow)
  50.     Q_PROPERTY(int lineWidth READ lineWidth WRITE setLineWidth)
  51.     Q_PROPERTY(int midLineWidth READ midLineWidth WRITE setMidLineWidth)
  52.     Q_PROPERTY(int frameWidth READ frameWidth)
  53.     Q_PROPERTY(QRect frameRect READ frameRect WRITE setFrameRect DESIGNABLE false)
  54. public:
  55.     explicit QFrame(QWidget* parent = 0, Qt::WindowFlags f = 0);
  56.     ~QFrame();
  57.     int frameStyle() const;
  58.     void setFrameStyle(int);
  59.     int frameWidth() const;
  60.     QSize sizeHint() const;
  61.     enum Shape {
  62.         NoFrame  = 0, // no frame
  63.         Box = 0x0001, // rectangular box
  64.         Panel = 0x0002, // rectangular panel
  65.         WinPanel = 0x0003, // rectangular panel (Windows)
  66.         HLine = 0x0004, // horizontal line
  67.         VLine = 0x0005, // vertical line
  68.         StyledPanel = 0x0006 // rectangular panel depending on the GUI style
  69. #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN)
  70.         ,PopupPanel = StyledPanel, // rectangular panel depending on the GUI style
  71.         MenuBarPanel = StyledPanel,
  72.         ToolBarPanel = StyledPanel,
  73.         LineEditPanel = StyledPanel,
  74.         TabWidgetPanel = StyledPanel,
  75.         GroupBoxPanel = StyledPanel
  76. #endif
  77.     };
  78.     enum Shadow {
  79.         Plain = 0x0010, // plain line
  80.         Raised = 0x0020, // raised shadow effect
  81.         Sunken = 0x0030 // sunken shadow effect
  82.     };
  83.     enum StyleMask {
  84.         Shadow_Mask = 0x00f0, // mask for the shadow
  85.         Shape_Mask = 0x000f // mask for the shape
  86. #if defined(QT3_SUPPORT)
  87.         ,MShadow = Shadow_Mask,
  88.         MShape = Shape_Mask
  89. #endif
  90.     };
  91.     Shape frameShape() const;
  92.     void setFrameShape(Shape);
  93.     Shadow frameShadow() const;
  94.     void setFrameShadow(Shadow);
  95.     int lineWidth() const;
  96.     void setLineWidth(int);
  97.     int midLineWidth() const;
  98.     void setMidLineWidth(int);
  99.     QRect frameRect() const;
  100.     void setFrameRect(const QRect &);
  101. protected:
  102.     bool event(QEvent *e);
  103.     void paintEvent(QPaintEvent *);
  104.     void changeEvent(QEvent *);
  105.     void drawFrame(QPainter *);
  106. #ifdef QT3_SUPPORT
  107. public:
  108.     QT3_SUPPORT_CONSTRUCTOR QFrame(QWidget* parent, const char* name, Qt::WindowFlags f = 0);
  109. #endif
  110. protected:
  111.     QFrame(QFramePrivate &dd, QWidget* parent = 0, Qt::WindowFlags f = 0);
  112. private:
  113.     Q_DISABLE_COPY(QFrame)
  114.     Q_DECLARE_PRIVATE(QFrame)
  115. };
  116. QT_END_NAMESPACE
  117. QT_END_HEADER
  118. #endif // QFRAME_H