// This is the SIP interface definition for QSpinBox. // // Copyright (c) 2007 // Riverbank Computing Limited // // This file is part of PyQt. // // This copy of PyQt is free software; you can redistribute it and/or modify it // under the terms of the GNU General Public License as published by the Free // Software Foundation; either version 2, or (at your option) any later // version. // // PyQt is supplied in the hope that it will be useful, but WITHOUT ANY // WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more // details. // // You should have received a copy of the GNU General Public License along with // PyQt; see the file LICENSE. If not, write to the Free Software Foundation, // Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. %ExportedDoc QSpinBox virtual int mapTextToValue bool *ok This returns a tuple of the int result and the modified ok value. %End %If (Qt_3_0_0 -) class QSpinBox : QWidget, QRangeControl { %TypeHeaderCode #include %End public: QSpinBox(QWidget * /TransferThis/ = 0,const char * = 0); QSpinBox(int,int,int = 1,QWidget * /TransferThis/ = 0,const char * = 0); QString text() const; virtual QString prefix() const; virtual QString suffix() const; virtual QString cleanText() const; virtual void setSpecialValueText(const QString &); QString specialValueText() const; virtual void setWrapping(bool); bool wrapping() const; enum ButtonSymbols { UpDownArrows, PlusMinus }; virtual void setButtonSymbols(ButtonSymbols); ButtonSymbols buttonSymbols() const; virtual void setValidator(const QValidator *); const QValidator *validator() const; QSize sizeHint() const; QSize minimumSizeHint() const; int minValue() const; int maxValue() const; void setMinValue(int); void setMaxValue(int); int lineStep() const; void setLineStep(int); int value() const; QRect upRect() const; QRect downRect() const; public slots: virtual void setValue(int); virtual void setPrefix(const QString &); virtual void setSuffix(const QString &); virtual void stepUp(); virtual void stepDown(); virtual void setEnabled(bool); virtual void selectAll(); signals: void valueChanged(int); void valueChanged(const QString &); protected: virtual QString mapValueToText(int); virtual int mapTextToValue(bool *); QString currentValueText(); virtual void updateDisplay(); virtual void interpretText(); QLineEdit *editor() const; virtual void valueChange(); virtual void rangeChange(); bool eventFilter(QObject *,QEvent *); void resizeEvent(QResizeEvent *); void wheelEvent(QWheelEvent *); void leaveEvent(QEvent *); void styleChange(QStyle &); protected slots: void textChanged(); private: QSpinBox(const QSpinBox &); }; %End %If (- Qt_3_0_0) class QSpinBox : QFrame, QRangeControl { %TypeHeaderCode #include %End public: QSpinBox(QWidget * /TransferThis/ = 0,const char * = 0); QSpinBox(int,int,int = 1,QWidget * /TransferThis/ = 0,const char * = 0); %If (- Qt_2_00) const char *text() const; virtual const char *prefix() const; virtual const char *suffix() const; %End %If (Qt_2_00 -) QString text() const; virtual QString prefix() const; virtual QString suffix() const; %End virtual QString cleanText() const; %If (- Qt_2_00) void setSpecialValueText(const char *); const char *specialValueText() const; void setWrapping(bool); %End %If (Qt_2_00 -) virtual void setSpecialValueText(const QString &); QString specialValueText() const; virtual void setWrapping(bool); %End bool wrapping() const; %If (Qt_2_1_0 -) enum ButtonSymbols { UpDownArrows, PlusMinus }; %End %If (Qt_2_1_0 -) void setButtonSymbols(ButtonSymbols); ButtonSymbols buttonSymbols() const; %End %If (- Qt_2_00) void setValidator(QValidator *); %End %If (Qt_2_00 -) virtual void setValidator(const QValidator *); const QValidator *validator() const; %End QSize sizeHint() const; %If (Qt_2_00 -) QSizePolicy sizePolicy() const; %End %If (Qt_2_1_0 -) int minValue() const; int maxValue() const; void setMinValue(int); void setMaxValue(int); int lineStep() const; void setLineStep(int); int value() const; %End public slots: virtual void setValue(int); %If (- Qt_2_00) virtual void setPrefix(const char *); virtual void setSuffix(const char *); %End %If (Qt_2_00 -) virtual void setPrefix(const QString &); virtual void setSuffix(const QString &); %End virtual void stepUp(); virtual void stepDown(); %If (Qt_2_00 -) virtual void setEnabled(bool); %End signals: void valueChanged(int); %If (- Qt_2_00) void valueChanged(const char *); %End %If (Qt_2_00 -) void valueChanged(const QString &); %End protected: virtual QString mapValueToText(int); virtual int mapTextToValue(bool *); QString currentValueText(); virtual void updateDisplay(); virtual void interpretText(); QPushButton *upButton() const; QPushButton *downButton() const; QLineEdit *editor() const; virtual void valueChange(); virtual void rangeChange(); bool eventFilter(QObject *,QEvent *); void resizeEvent(QResizeEvent *); %If (- Qt_2_00) void paletteChange(const QPalette &); void enabledChange(bool); void fontChange(const QFont &); void styleChange(GUIStyle); %End %If (Qt_2_00 -) void wheelEvent(QWheelEvent *); void styleChange(QStyle &); %End %If (Qt_2_1_0 -) void leaveEvent(QEvent *); %End protected slots: void textChanged(); private: QSpinBox(const QSpinBox &); }; %End