summaryrefslogtreecommitdiffstats
path: root/python/pyqt/sip/qt/qspinbox.sip
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commit90825e2392b2d70e43c7a25b8a3752299a933894 (patch)
treee33aa27f02b74604afbfd0ea4f1cfca8833d882a /python/pyqt/sip/qt/qspinbox.sip
downloadtdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.tar.gz
tdebindings-90825e2392b2d70e43c7a25b8a3752299a933894.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebindings@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'python/pyqt/sip/qt/qspinbox.sip')
-rw-r--r--python/pyqt/sip/qt/qspinbox.sip268
1 files changed, 268 insertions, 0 deletions
diff --git a/python/pyqt/sip/qt/qspinbox.sip b/python/pyqt/sip/qt/qspinbox.sip
new file mode 100644
index 00000000..fad96216
--- /dev/null
+++ b/python/pyqt/sip/qt/qspinbox.sip
@@ -0,0 +1,268 @@
+// This is the SIP interface definition for QSpinBox.
+//
+// Copyright (c) 2007
+// Riverbank Computing Limited <info@riverbankcomputing.co.uk>
+//
+// 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
+<Sect2><Title>QSpinBox</Title>
+<FuncSynopsis>
+ <FuncDef>virtual int <Function>mapTextToValue</Function></FuncDef>
+ <ParamDef>bool *<Parameter>ok</Parameter></ParamDef>
+</FuncSynopsis>
+<Para>
+This returns a tuple of the <Literal>int</Literal> result and the modified
+<Literal>ok</Literal> value.
+</Para>
+</Sect2>
+%End
+
+
+%If (Qt_3_0_0 -)
+
+class QSpinBox : QWidget, QRangeControl
+{
+%TypeHeaderCode
+#include <qspinbox.h>
+%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 <qspinbox.h>
+%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