qabstractspinbox.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 QABSTRACTSPINBOX_H
  38. #define QABSTRACTSPINBOX_H
  39. #include <QtGui/qwidget.h>
  40. #include <QtGui/qvalidator.h>
  41. QT_BEGIN_HEADER
  42. QT_BEGIN_NAMESPACE
  43. QT_MODULE(Gui)
  44. #ifndef QT_NO_SPINBOX
  45. class QLineEdit;
  46. class QAbstractSpinBoxPrivate;
  47. class QStyleOptionSpinBox;
  48. class Q_GUI_EXPORT QAbstractSpinBox : public QWidget
  49. {
  50.     Q_OBJECT
  51.     Q_ENUMS(ButtonSymbols)
  52.     Q_ENUMS(CorrectionMode)
  53.     Q_PROPERTY(bool wrapping READ wrapping WRITE setWrapping)
  54.     Q_PROPERTY(bool frame READ hasFrame WRITE setFrame)
  55.     Q_PROPERTY(Qt::Alignment alignment READ alignment WRITE setAlignment)
  56.     Q_PROPERTY(bool readOnly READ isReadOnly WRITE setReadOnly)
  57.     Q_PROPERTY(ButtonSymbols buttonSymbols READ buttonSymbols WRITE setButtonSymbols)
  58.     Q_PROPERTY(QString specialValueText READ specialValueText WRITE setSpecialValueText)
  59.     Q_PROPERTY(QString text READ text)
  60.     Q_PROPERTY(bool accelerated READ isAccelerated WRITE setAccelerated)
  61.     Q_PROPERTY(CorrectionMode correctionMode READ correctionMode WRITE setCorrectionMode)
  62.     Q_PROPERTY(bool acceptableInput READ hasAcceptableInput)
  63.     Q_PROPERTY(bool keyboardTracking READ keyboardTracking WRITE setKeyboardTracking)
  64. public:
  65.     explicit QAbstractSpinBox(QWidget *parent = 0);
  66.     ~QAbstractSpinBox();
  67.     enum StepEnabledFlag { StepNone = 0x00, StepUpEnabled = 0x01,
  68.                            StepDownEnabled = 0x02 };
  69.     Q_DECLARE_FLAGS(StepEnabled, StepEnabledFlag)
  70.     enum ButtonSymbols { UpDownArrows, PlusMinus, NoButtons };
  71.     ButtonSymbols buttonSymbols() const;
  72.     void setButtonSymbols(ButtonSymbols bs);
  73.     enum CorrectionMode  { CorrectToPreviousValue, CorrectToNearestValue };
  74.     void setCorrectionMode(CorrectionMode cm);
  75.     CorrectionMode correctionMode() const;
  76.     bool hasAcceptableInput() const;
  77.     QString text() const;
  78.     QString specialValueText() const;
  79.     void setSpecialValueText(const QString &txt);
  80.     bool wrapping() const;
  81.     void setWrapping(bool w);
  82.     void setReadOnly(bool r);
  83.     bool isReadOnly() const;
  84.     void setKeyboardTracking(bool kt);
  85.     bool keyboardTracking() const;
  86.     void setAlignment(Qt::Alignment flag);
  87.     Qt::Alignment alignment() const;
  88.     void setFrame(bool);
  89.     bool hasFrame() const;
  90.     void setAccelerated(bool on);
  91.     bool isAccelerated() const;
  92.     QSize sizeHint() const;
  93.     QSize minimumSizeHint() const;
  94.     void interpretText();
  95.     bool event(QEvent *event);
  96.     virtual QValidator::State validate(QString &input, int &pos) const;
  97.     virtual void fixup(QString &input) const;
  98.     virtual void stepBy(int steps);
  99. public Q_SLOTS:
  100.     void stepUp();
  101.     void stepDown();
  102.     void selectAll();
  103.     virtual void clear();
  104. protected:
  105.     void resizeEvent(QResizeEvent *event);
  106.     void keyPressEvent(QKeyEvent *event);
  107.     void keyReleaseEvent(QKeyEvent *event);
  108.     void wheelEvent(QWheelEvent *event);
  109.     void focusInEvent(QFocusEvent *event);
  110.     void focusOutEvent(QFocusEvent *event);
  111.     void contextMenuEvent(QContextMenuEvent *event);
  112.     void changeEvent(QEvent *event);
  113.     void closeEvent(QCloseEvent *event);
  114.     void hideEvent(QHideEvent *event);
  115.     void mousePressEvent(QMouseEvent *event);
  116.     void mouseReleaseEvent(QMouseEvent *event);
  117.     void mouseMoveEvent(QMouseEvent *event);
  118.     void timerEvent(QTimerEvent *event);
  119.     void paintEvent(QPaintEvent *event);
  120.     void showEvent(QShowEvent *event);
  121.     void initStyleOption(QStyleOptionSpinBox *option) const;
  122.     QLineEdit *lineEdit() const;
  123.     void setLineEdit(QLineEdit *edit);
  124.     virtual StepEnabled stepEnabled() const;
  125. Q_SIGNALS:
  126.     void editingFinished();
  127. protected:
  128.     QAbstractSpinBox(QAbstractSpinBoxPrivate &dd, QWidget *parent = 0);
  129. private:
  130.     Q_PRIVATE_SLOT(d_func(), void _q_editorTextChanged(const QString &))
  131.     Q_PRIVATE_SLOT(d_func(), void _q_editorCursorPositionChanged(int, int))
  132.     Q_DECLARE_PRIVATE(QAbstractSpinBox)
  133.     Q_DISABLE_COPY(QAbstractSpinBox)
  134. };
  135. Q_DECLARE_OPERATORS_FOR_FLAGS(QAbstractSpinBox::StepEnabled)
  136. #endif // QT_NO_SPINBOX
  137. QT_END_NAMESPACE
  138. QT_END_HEADER
  139. #endif // QABSTRACTSPINBOX_H