#ifndef PYTHONQTWRAPPER_QDOUBLESPINBOX_H #define PYTHONQTWRAPPER_QDOUBLESPINBOX_H #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QDoubleSpinBox : public QObject { Q_OBJECT public: public slots: QDoubleSpinBox* new_QDoubleSpinBox(QWidget* parent = 0); void delete_QDoubleSpinBox(QDoubleSpinBox* obj) { delete obj; } QString cleanText(QDoubleSpinBox* theWrappedObject) const; int decimals(QDoubleSpinBox* theWrappedObject) const; void fixup(QDoubleSpinBox* theWrappedObject, QString& str) const; double maximum(QDoubleSpinBox* theWrappedObject) const; double minimum(QDoubleSpinBox* theWrappedObject) const; QString prefix(QDoubleSpinBox* theWrappedObject) const; void setDecimals(QDoubleSpinBox* theWrappedObject, int prec); void setMaximum(QDoubleSpinBox* theWrappedObject, double max); void setMinimum(QDoubleSpinBox* theWrappedObject, double min); void setPrefix(QDoubleSpinBox* theWrappedObject, const QString& prefix); void setRange(QDoubleSpinBox* theWrappedObject, double min, double max); void setSingleStep(QDoubleSpinBox* theWrappedObject, double val); void setSuffix(QDoubleSpinBox* theWrappedObject, const QString& suffix); double singleStep(QDoubleSpinBox* theWrappedObject) const; QString suffix(QDoubleSpinBox* theWrappedObject) const; QString textFromValue(QDoubleSpinBox* theWrappedObject, double val) const; QValidator::State validate(QDoubleSpinBox* theWrappedObject, QString& input, int& pos) const; double value(QDoubleSpinBox* theWrappedObject) const; double valueFromText(QDoubleSpinBox* theWrappedObject, const QString& text) const; }; #endif // PYTHONQTWRAPPER_QDOUBLESPINBOX_H