qdial.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.  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 QDIAL_H
  38. #define QDIAL_H
  39. #include <QtGui/qabstractslider.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_DIAL
  44. class QDialPrivate;
  45. class QStyleOptionSlider;
  46. class Q_GUI_EXPORT QDial: public QAbstractSlider
  47. {
  48.     Q_OBJECT
  49.     Q_PROPERTY(bool wrapping READ wrapping WRITE setWrapping)
  50.     Q_PROPERTY(int notchSize READ notchSize)
  51.     Q_PROPERTY(qreal notchTarget READ notchTarget WRITE setNotchTarget)
  52.     Q_PROPERTY(bool notchesVisible READ notchesVisible WRITE setNotchesVisible)
  53. public:
  54.     explicit QDial(QWidget *parent = 0);
  55.     ~QDial();
  56.     bool wrapping() const;
  57.     int notchSize() const;
  58.     void setNotchTarget(double target);
  59.     qreal notchTarget() const;
  60.     bool notchesVisible() const;
  61.     QSize sizeHint() const;
  62.     QSize minimumSizeHint() const;
  63. public Q_SLOTS:
  64.     void setNotchesVisible(bool visible);
  65.     void setWrapping(bool on);
  66. protected:
  67.     bool event(QEvent *e);
  68.     void resizeEvent(QResizeEvent *re);
  69.     void paintEvent(QPaintEvent *pe);
  70.     void mousePressEvent(QMouseEvent *me);
  71.     void mouseReleaseEvent(QMouseEvent *me);
  72.     void mouseMoveEvent(QMouseEvent *me);
  73.     void sliderChange(SliderChange change);
  74.     void initStyleOption(QStyleOptionSlider *option) const;
  75. #ifdef QT3_SUPPORT
  76. public:
  77.     QT3_SUPPORT_CONSTRUCTOR QDial(int minValue, int maxValue, int pageStep, int value,
  78.                                 QWidget* parent = 0, const char* name = 0);
  79.     QT3_SUPPORT_CONSTRUCTOR QDial(QWidget *parent, const char *name);
  80. Q_SIGNALS:
  81.     QT_MOC_COMPAT void dialPressed();
  82.     QT_MOC_COMPAT void dialMoved(int value);
  83.     QT_MOC_COMPAT void dialReleased();
  84. #endif
  85. private:
  86.     Q_DECLARE_PRIVATE(QDial)
  87.     Q_DISABLE_COPY(QDial)
  88. };
  89. #endif  // QT_NO_DIAL
  90. QT_END_NAMESPACE
  91. QT_END_HEADER
  92. #endif // QDIAL_H