miqt/qt/gen_qjsondocument.cpp

127 lines
3.4 KiB
C++

#include <QByteArray>
#include <QJsonArray>
#include <QJsonDocument>
#include <QJsonObject>
#include <QJsonParseError>
#include <QJsonValue>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <QVariant>
#include "qjsondocument.h"
#include "gen_qjsondocument.h"
#include "_cgo_export.h"
struct miqt_string* QJsonParseError_ErrorString(const QJsonParseError* self) {
QString _ret = self->errorString();
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
QByteArray _b = _ret.toUtf8();
return miqt_strdup(_b.data(), _b.length());
}
void QJsonParseError_Delete(QJsonParseError* self) {
delete self;
}
QJsonDocument* QJsonDocument_new() {
return new QJsonDocument();
}
QJsonDocument* QJsonDocument_new2(QJsonObject* object) {
return new QJsonDocument(*object);
}
QJsonDocument* QJsonDocument_new3(QJsonArray* array) {
return new QJsonDocument(*array);
}
QJsonDocument* QJsonDocument_new4(QJsonDocument* other) {
return new QJsonDocument(*other);
}
void QJsonDocument_OperatorAssign(QJsonDocument* self, QJsonDocument* other) {
self->operator=(*other);
}
void QJsonDocument_Swap(QJsonDocument* self, QJsonDocument* other) {
self->swap(*other);
}
QJsonDocument* QJsonDocument_FromVariant(QVariant* variant) {
return new QJsonDocument(QJsonDocument::fromVariant(*variant));
}
QVariant* QJsonDocument_ToVariant(const QJsonDocument* self) {
return new QVariant(self->toVariant());
}
QJsonDocument* QJsonDocument_FromJson(QByteArray* json) {
return new QJsonDocument(QJsonDocument::fromJson(*json));
}
QByteArray* QJsonDocument_ToJson(const QJsonDocument* self) {
return new QByteArray(self->toJson());
}
bool QJsonDocument_IsEmpty(const QJsonDocument* self) {
return self->isEmpty();
}
bool QJsonDocument_IsArray(const QJsonDocument* self) {
return self->isArray();
}
bool QJsonDocument_IsObject(const QJsonDocument* self) {
return self->isObject();
}
QJsonObject* QJsonDocument_Object(const QJsonDocument* self) {
return new QJsonObject(self->object());
}
QJsonArray* QJsonDocument_Array(const QJsonDocument* self) {
return new QJsonArray(self->array());
}
void QJsonDocument_SetObject(QJsonDocument* self, QJsonObject* object) {
self->setObject(*object);
}
void QJsonDocument_SetArray(QJsonDocument* self, QJsonArray* array) {
self->setArray(*array);
}
QJsonValue* QJsonDocument_OperatorSubscript(const QJsonDocument* self, struct miqt_string* key) {
QString key_QString = QString::fromUtf8(&key->data, key->len);
return new QJsonValue(self->operator[](key_QString));
}
QJsonValue* QJsonDocument_OperatorSubscriptWithQsizetype(const QJsonDocument* self, ptrdiff_t i) {
return new QJsonValue(self->operator[]((qsizetype)(i)));
}
bool QJsonDocument_OperatorEqual(const QJsonDocument* self, QJsonDocument* other) {
return self->operator==(*other);
}
bool QJsonDocument_OperatorNotEqual(const QJsonDocument* self, QJsonDocument* other) {
return self->operator!=(*other);
}
bool QJsonDocument_IsNull(const QJsonDocument* self) {
return self->isNull();
}
QJsonDocument* QJsonDocument_FromJson2(QByteArray* json, QJsonParseError* error) {
return new QJsonDocument(QJsonDocument::fromJson(*json, error));
}
QByteArray* QJsonDocument_ToJson1(const QJsonDocument* self, int format) {
return new QByteArray(self->toJson(static_cast<QJsonDocument::JsonFormat>(format)));
}
void QJsonDocument_Delete(QJsonDocument* self) {
delete self;
}