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

系统编程

开发平台:

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 QSPINBOX_H
  38. #define QSPINBOX_H
  39. #include <QtGui/qabstractspinbox.h>
  40. QT_BEGIN_HEADER
  41. QT_BEGIN_NAMESPACE
  42. QT_MODULE(Gui)
  43. #ifndef QT_NO_SPINBOX
  44. class QSpinBoxPrivate;
  45. class Q_GUI_EXPORT QSpinBox : public QAbstractSpinBox
  46. {
  47.     Q_OBJECT
  48.     Q_PROPERTY(QString suffix READ suffix WRITE setSuffix)
  49.     Q_PROPERTY(QString prefix READ prefix WRITE setPrefix)
  50.     Q_PROPERTY(QString cleanText READ cleanText)
  51.     Q_PROPERTY(int minimum READ minimum WRITE setMinimum)
  52.     Q_PROPERTY(int maximum READ maximum WRITE setMaximum)
  53.     Q_PROPERTY(int singleStep READ singleStep WRITE setSingleStep)
  54.     Q_PROPERTY(int value READ value WRITE setValue NOTIFY valueChanged USER true)
  55. public:
  56.     explicit QSpinBox(QWidget *parent = 0);
  57. #ifdef QT3_SUPPORT
  58.     QT3_SUPPORT_CONSTRUCTOR QSpinBox(QWidget *parent, const char *name);
  59.     QT3_SUPPORT_CONSTRUCTOR QSpinBox(int min, int max, int step, QWidget *parent,
  60.                                      const char *name = 0);
  61. #endif
  62.     int value() const;
  63.     QString prefix() const;
  64.     void setPrefix(const QString &prefix);
  65.     QString suffix() const;
  66.     void setSuffix(const QString &suffix);
  67.     QString cleanText() const;
  68.     int singleStep() const;
  69.     void setSingleStep(int val);
  70.     int minimum() const;
  71.     void setMinimum(int min);
  72.     int maximum() const;
  73.     void setMaximum(int max);
  74.     void setRange(int min, int max);
  75. #ifdef QT3_SUPPORT
  76.     inline QT3_SUPPORT void setLineStep(int step) { setSingleStep(step); }
  77.     inline QT3_SUPPORT void setMaxValue(int val) { setMaximum(val); }
  78.     inline QT3_SUPPORT void setMinValue(int val) { setMinimum(val); }
  79.     inline QT3_SUPPORT int maxValue() const { return maximum(); }
  80.     inline QT3_SUPPORT int minValue() const { return minimum(); }
  81. #endif
  82. protected:
  83.     bool event(QEvent *event);
  84.     virtual QValidator::State validate(QString &input, int &pos) const;
  85.     virtual int valueFromText(const QString &text) const;
  86.     virtual QString textFromValue(int val) const;
  87.     virtual void fixup(QString &str) const;
  88. public Q_SLOTS:
  89.     void setValue(int val);
  90. Q_SIGNALS:
  91.     void valueChanged(int);
  92.     void valueChanged(const QString &);
  93. private:
  94.     Q_DISABLE_COPY(QSpinBox)
  95.     Q_DECLARE_PRIVATE(QSpinBox)
  96. };
  97. class QDoubleSpinBoxPrivate;
  98. class Q_GUI_EXPORT QDoubleSpinBox : public QAbstractSpinBox
  99. {
  100.     Q_OBJECT
  101.     Q_PROPERTY(QString prefix READ prefix WRITE setPrefix)
  102.     Q_PROPERTY(QString suffix READ suffix WRITE setSuffix)
  103.     Q_PROPERTY(QString cleanText READ cleanText)
  104.     Q_PROPERTY(int decimals READ decimals WRITE setDecimals)
  105.     Q_PROPERTY(double minimum READ minimum WRITE setMinimum)
  106.     Q_PROPERTY(double maximum READ maximum WRITE setMaximum)
  107.     Q_PROPERTY(double singleStep READ singleStep WRITE setSingleStep)
  108.     Q_PROPERTY(double value READ value WRITE setValue NOTIFY valueChanged USER true)
  109. public:
  110.     explicit QDoubleSpinBox(QWidget *parent = 0);
  111.     double value() const;
  112.     QString prefix() const;
  113.     void setPrefix(const QString &prefix);
  114.     QString suffix() const;
  115.     void setSuffix(const QString &suffix);
  116.     QString cleanText() const;
  117.     double singleStep() const;
  118.     void setSingleStep(double val);
  119.     double minimum() const;
  120.     void setMinimum(double min);
  121.     double maximum() const;
  122.     void setMaximum(double max);
  123.     void setRange(double min, double max);
  124.     int decimals() const;
  125.     void setDecimals(int prec);
  126.     virtual QValidator::State validate(QString &input, int &pos) const;
  127.     virtual double valueFromText(const QString &text) const;
  128.     virtual QString textFromValue(double val) const;
  129.     virtual void fixup(QString &str) const;
  130. public Q_SLOTS:
  131.     void setValue(double val);
  132. Q_SIGNALS:
  133.     void valueChanged(double);
  134.     void valueChanged(const QString &);
  135. private:
  136.     Q_DISABLE_COPY(QDoubleSpinBox)
  137.     Q_DECLARE_PRIVATE(QDoubleSpinBox)
  138. };
  139. #endif // QT_NO_SPINBOX
  140. QT_END_NAMESPACE
  141. QT_END_HEADER
  142. #endif // QSPINBOX_H