qslider.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 QSLIDER_H
  38. #define QSLIDER_H
  39. #include <QtGui/qabstractslider.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_SLIDER
  44. class QSliderPrivate;
  45. class QStyleOptionSlider;
  46. class Q_GUI_EXPORT QSlider : public QAbstractSlider
  47. {
  48.     Q_OBJECT
  49.     Q_ENUMS(TickPosition)
  50.     Q_PROPERTY(TickPosition tickPosition READ tickPosition WRITE setTickPosition)
  51.     Q_PROPERTY(int tickInterval READ tickInterval WRITE setTickInterval)
  52. public:
  53.     enum TickPosition {
  54.         NoTicks = 0,
  55.         TicksAbove = 1,
  56.         TicksLeft = TicksAbove,
  57.         TicksBelow = 2,
  58.         TicksRight = TicksBelow,
  59.         TicksBothSides = 3
  60. #if defined(QT3_SUPPORT) && !defined(Q_MOC_RUN)
  61.         ,NoMarks = NoTicks,
  62.         Above = TicksAbove,
  63.         Left = TicksAbove,
  64.         Below = TicksBelow,
  65.         Right = TicksRight,
  66.         Both = TicksBothSides
  67. #endif
  68.     };
  69.     explicit QSlider(QWidget *parent = 0);
  70.     explicit QSlider(Qt::Orientation orientation, QWidget *parent = 0);
  71.     ~QSlider();
  72.     QSize sizeHint() const;
  73.     QSize minimumSizeHint() const;
  74.     void setTickPosition(TickPosition position);
  75.     TickPosition tickPosition() const;
  76.     void setTickInterval(int ti);
  77.     int tickInterval() const;
  78.     bool event(QEvent *event);
  79. protected:
  80.     void paintEvent(QPaintEvent *ev);
  81.     void mousePressEvent(QMouseEvent *ev);
  82.     void mouseReleaseEvent(QMouseEvent *ev);
  83.     void mouseMoveEvent(QMouseEvent *ev);
  84.     void initStyleOption(QStyleOptionSlider *option) const;
  85. #ifdef QT3_SUPPORT
  86. public:
  87.     QT3_SUPPORT_CONSTRUCTOR QSlider(QWidget *parent, const char *name);
  88.     QT3_SUPPORT_CONSTRUCTOR QSlider(Qt::Orientation, QWidget *parent, const char *name);
  89.     QT3_SUPPORT_CONSTRUCTOR QSlider(int minValue, int maxValue, int pageStep, int value,
  90.                                   Qt::Orientation orientation,
  91.                                   QWidget *parent = 0, const char *name = 0);
  92.     inline QT3_SUPPORT void setTickmarks(TickPosition position) { setTickPosition(position); }
  93.     inline QT3_SUPPORT TickPosition tickmarks() const { return tickPosition(); }
  94. public Q_SLOTS:
  95.     inline QT_MOC_COMPAT void addStep() { triggerAction(SliderSingleStepAdd); };
  96.     inline QT_MOC_COMPAT void subtractStep() { triggerAction(SliderSingleStepSub); };
  97. #endif
  98. private:
  99.     friend Q_GUI_EXPORT QStyleOptionSlider qt_qsliderStyleOption(QSlider *slider);
  100.     Q_DISABLE_COPY(QSlider)
  101.     Q_DECLARE_PRIVATE(QSlider)
  102. };
  103. #endif // QT_NO_SLIDER
  104. QT_END_NAMESPACE
  105. QT_END_HEADER
  106. #endif // QSLIDER_H