#ifndef PYTHONQTWRAPPER_QSETTINGS_H #define PYTHONQTWRAPPER_QSETTINGS_H #include #include #include #include #include #include #include #include #include #include class PythonQtWrapper_QSettings : public QObject { Q_OBJECT public: Q_ENUMS(Format Status Scope ) enum Format{ NativeFormat = QSettings::NativeFormat, IniFormat = QSettings::IniFormat, InvalidFormat = QSettings::InvalidFormat, CustomFormat1 = QSettings::CustomFormat1, CustomFormat2 = QSettings::CustomFormat2, CustomFormat3 = QSettings::CustomFormat3, CustomFormat4 = QSettings::CustomFormat4, CustomFormat5 = QSettings::CustomFormat5, CustomFormat6 = QSettings::CustomFormat6, CustomFormat7 = QSettings::CustomFormat7, CustomFormat8 = QSettings::CustomFormat8, CustomFormat9 = QSettings::CustomFormat9, CustomFormat10 = QSettings::CustomFormat10, CustomFormat11 = QSettings::CustomFormat11, CustomFormat12 = QSettings::CustomFormat12, CustomFormat13 = QSettings::CustomFormat13, CustomFormat14 = QSettings::CustomFormat14, CustomFormat15 = QSettings::CustomFormat15, CustomFormat16 = QSettings::CustomFormat16}; enum Status{ NoError = QSettings::NoError, AccessError = QSettings::AccessError, FormatError = QSettings::FormatError}; enum Scope{ UserScope = QSettings::UserScope, SystemScope = QSettings::SystemScope}; public slots: QSettings* new_QSettings(QObject* parent = 0); QSettings* new_QSettings(QSettings::Format format, QSettings::Scope scope, const QString& organization, const QString& application = QString(), QObject* parent = 0); QSettings* new_QSettings(QSettings::Scope scope, const QString& organization, const QString& application = QString(), QObject* parent = 0); QSettings* new_QSettings(const QString& fileName, QSettings::Format format, QObject* parent = 0); QSettings* new_QSettings(const QString& organization, const QString& application = QString(), QObject* parent = 0); void delete_QSettings(QSettings* obj) { delete obj; } QStringList allKeys(QSettings* theWrappedObject) const; QString applicationName(QSettings* theWrappedObject) const; void beginGroup(QSettings* theWrappedObject, const QString& prefix); int beginReadArray(QSettings* theWrappedObject, const QString& prefix); void beginWriteArray(QSettings* theWrappedObject, const QString& prefix, int size = -1); QStringList childGroups(QSettings* theWrappedObject) const; QStringList childKeys(QSettings* theWrappedObject) const; void clear(QSettings* theWrappedObject); bool contains(QSettings* theWrappedObject, const QString& key) const; QSettings::Format static_QSettings_defaultFormat(); void endArray(QSettings* theWrappedObject); void endGroup(QSettings* theWrappedObject); bool fallbacksEnabled(QSettings* theWrappedObject) const; QString fileName(QSettings* theWrappedObject) const; QSettings::Format format(QSettings* theWrappedObject) const; QString group(QSettings* theWrappedObject) const; bool isWritable(QSettings* theWrappedObject) const; QString organizationName(QSettings* theWrappedObject) const; void remove(QSettings* theWrappedObject, const QString& key); QSettings::Scope scope(QSettings* theWrappedObject) const; void setArrayIndex(QSettings* theWrappedObject, int i); void static_QSettings_setDefaultFormat(QSettings::Format format); void setFallbacksEnabled(QSettings* theWrappedObject, bool b); void static_QSettings_setPath(QSettings::Format format, QSettings::Scope scope, const QString& path); void setValue(QSettings* theWrappedObject, const QString& key, const QVariant& value); QSettings::Status status(QSettings* theWrappedObject) const; void sync(QSettings* theWrappedObject); QVariant value(QSettings* theWrappedObject, const QString& key, const QVariant& defaultValue = QVariant()) const; }; #endif // PYTHONQTWRAPPER_QSETTINGS_H