mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
1055 lines
33 KiB
C++
1055 lines
33 KiB
C++
#include <QAbstractTextDocumentLayout>
|
|
#include <QAbstractUndoItem>
|
|
#include <QChar>
|
|
#include <QChildEvent>
|
|
#include <QEvent>
|
|
#include <QFont>
|
|
#include <QList>
|
|
#include <QMetaMethod>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QPagedPaintDevice>
|
|
#include <QPainter>
|
|
#include <QRectF>
|
|
#include <QRegularExpression>
|
|
#include <QSizeF>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <QTextBlock>
|
|
#include <QTextCursor>
|
|
#include <QTextDocument>
|
|
#include <QTextFormat>
|
|
#include <QTextFrame>
|
|
#include <QTextObject>
|
|
#include <QTextOption>
|
|
#include <QTimerEvent>
|
|
#include <QUrl>
|
|
#include <QVariant>
|
|
#include <qtextdocument.h>
|
|
#include "gen_qtextdocument.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
void QAbstractUndoItem_Undo(QAbstractUndoItem* self) {
|
|
self->undo();
|
|
}
|
|
|
|
void QAbstractUndoItem_Redo(QAbstractUndoItem* self) {
|
|
self->redo();
|
|
}
|
|
|
|
void QAbstractUndoItem_OperatorAssign(QAbstractUndoItem* self, QAbstractUndoItem* param1) {
|
|
self->operator=(*param1);
|
|
}
|
|
|
|
void QAbstractUndoItem_Delete(QAbstractUndoItem* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<QAbstractUndoItem*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|
|
class MiqtVirtualQTextDocument : public virtual QTextDocument {
|
|
public:
|
|
|
|
MiqtVirtualQTextDocument(): QTextDocument() {};
|
|
MiqtVirtualQTextDocument(const QString& text): QTextDocument(text) {};
|
|
MiqtVirtualQTextDocument(QObject* parent): QTextDocument(parent) {};
|
|
MiqtVirtualQTextDocument(const QString& text, QObject* parent): QTextDocument(text, parent) {};
|
|
|
|
virtual ~MiqtVirtualQTextDocument() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Clear = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void clear() override {
|
|
if (handle__Clear == 0) {
|
|
QTextDocument::clear();
|
|
return;
|
|
}
|
|
|
|
|
|
miqt_exec_callback_QTextDocument_Clear(this, handle__Clear);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_Clear() {
|
|
|
|
QTextDocument::clear();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__CreateObject = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QTextObject* createObject(const QTextFormat& f) override {
|
|
if (handle__CreateObject == 0) {
|
|
return QTextDocument::createObject(f);
|
|
}
|
|
|
|
const QTextFormat& f_ret = f;
|
|
// Cast returned reference into pointer
|
|
QTextFormat* sigval1 = const_cast<QTextFormat*>(&f_ret);
|
|
|
|
QTextObject* callback_return_value = miqt_exec_callback_QTextDocument_CreateObject(this, handle__CreateObject, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QTextObject* virtualbase_CreateObject(QTextFormat* f) {
|
|
|
|
return QTextDocument::createObject(*f);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__LoadResource = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QVariant loadResource(int typeVal, const QUrl& name) override {
|
|
if (handle__LoadResource == 0) {
|
|
return QTextDocument::loadResource(typeVal, name);
|
|
}
|
|
|
|
int sigval1 = typeVal;
|
|
const QUrl& name_ret = name;
|
|
// Cast returned reference into pointer
|
|
QUrl* sigval2 = const_cast<QUrl*>(&name_ret);
|
|
|
|
QVariant* callback_return_value = miqt_exec_callback_QTextDocument_LoadResource(this, handle__LoadResource, sigval1, sigval2);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QVariant* virtualbase_LoadResource(int typeVal, QUrl* name) {
|
|
|
|
return new QVariant(QTextDocument::loadResource(static_cast<int>(typeVal), *name));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Event = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool event(QEvent* event) override {
|
|
if (handle__Event == 0) {
|
|
return QTextDocument::event(event);
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QTextDocument_Event(this, handle__Event, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_Event(QEvent* event) {
|
|
|
|
return QTextDocument::event(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__EventFilter = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eventFilter(QObject* watched, QEvent* event) override {
|
|
if (handle__EventFilter == 0) {
|
|
return QTextDocument::eventFilter(watched, event);
|
|
}
|
|
|
|
QObject* sigval1 = watched;
|
|
QEvent* sigval2 = event;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QTextDocument_EventFilter(this, handle__EventFilter, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EventFilter(QObject* watched, QEvent* event) {
|
|
|
|
return QTextDocument::eventFilter(watched, event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__TimerEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void timerEvent(QTimerEvent* event) override {
|
|
if (handle__TimerEvent == 0) {
|
|
QTextDocument::timerEvent(event);
|
|
return;
|
|
}
|
|
|
|
QTimerEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QTextDocument_TimerEvent(this, handle__TimerEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_TimerEvent(QTimerEvent* event) {
|
|
|
|
QTextDocument::timerEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__ChildEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void childEvent(QChildEvent* event) override {
|
|
if (handle__ChildEvent == 0) {
|
|
QTextDocument::childEvent(event);
|
|
return;
|
|
}
|
|
|
|
QChildEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QTextDocument_ChildEvent(this, handle__ChildEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ChildEvent(QChildEvent* event) {
|
|
|
|
QTextDocument::childEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__CustomEvent = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void customEvent(QEvent* event) override {
|
|
if (handle__CustomEvent == 0) {
|
|
QTextDocument::customEvent(event);
|
|
return;
|
|
}
|
|
|
|
QEvent* sigval1 = event;
|
|
|
|
miqt_exec_callback_QTextDocument_CustomEvent(this, handle__CustomEvent, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_CustomEvent(QEvent* event) {
|
|
|
|
QTextDocument::customEvent(event);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__ConnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void connectNotify(const QMetaMethod& signal) override {
|
|
if (handle__ConnectNotify == 0) {
|
|
QTextDocument::connectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QTextDocument_ConnectNotify(this, handle__ConnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_ConnectNotify(QMetaMethod* signal) {
|
|
|
|
QTextDocument::connectNotify(*signal);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DisconnectNotify = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void disconnectNotify(const QMetaMethod& signal) override {
|
|
if (handle__DisconnectNotify == 0) {
|
|
QTextDocument::disconnectNotify(signal);
|
|
return;
|
|
}
|
|
|
|
const QMetaMethod& signal_ret = signal;
|
|
// Cast returned reference into pointer
|
|
QMetaMethod* sigval1 = const_cast<QMetaMethod*>(&signal_ret);
|
|
|
|
miqt_exec_callback_QTextDocument_DisconnectNotify(this, handle__DisconnectNotify, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_DisconnectNotify(QMetaMethod* signal) {
|
|
|
|
QTextDocument::disconnectNotify(*signal);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QTextDocument* QTextDocument_new() {
|
|
return new MiqtVirtualQTextDocument();
|
|
}
|
|
|
|
QTextDocument* QTextDocument_new2(struct miqt_string text) {
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
return new MiqtVirtualQTextDocument(text_QString);
|
|
}
|
|
|
|
QTextDocument* QTextDocument_new3(QObject* parent) {
|
|
return new MiqtVirtualQTextDocument(parent);
|
|
}
|
|
|
|
QTextDocument* QTextDocument_new4(struct miqt_string text, QObject* parent) {
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
return new MiqtVirtualQTextDocument(text_QString, parent);
|
|
}
|
|
|
|
void QTextDocument_virtbase(QTextDocument* src, QObject** outptr_QObject) {
|
|
*outptr_QObject = static_cast<QObject*>(src);
|
|
}
|
|
|
|
QMetaObject* QTextDocument_MetaObject(const QTextDocument* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QTextDocument_Metacast(QTextDocument* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_Tr(const char* s) {
|
|
QString _ret = QTextDocument::tr(s);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QTextDocument* QTextDocument_Clone(const QTextDocument* self) {
|
|
return self->clone();
|
|
}
|
|
|
|
bool QTextDocument_IsEmpty(const QTextDocument* self) {
|
|
return self->isEmpty();
|
|
}
|
|
|
|
void QTextDocument_Clear(QTextDocument* self) {
|
|
self->clear();
|
|
}
|
|
|
|
void QTextDocument_SetUndoRedoEnabled(QTextDocument* self, bool enable) {
|
|
self->setUndoRedoEnabled(enable);
|
|
}
|
|
|
|
bool QTextDocument_IsUndoRedoEnabled(const QTextDocument* self) {
|
|
return self->isUndoRedoEnabled();
|
|
}
|
|
|
|
bool QTextDocument_IsUndoAvailable(const QTextDocument* self) {
|
|
return self->isUndoAvailable();
|
|
}
|
|
|
|
bool QTextDocument_IsRedoAvailable(const QTextDocument* self) {
|
|
return self->isRedoAvailable();
|
|
}
|
|
|
|
int QTextDocument_AvailableUndoSteps(const QTextDocument* self) {
|
|
return self->availableUndoSteps();
|
|
}
|
|
|
|
int QTextDocument_AvailableRedoSteps(const QTextDocument* self) {
|
|
return self->availableRedoSteps();
|
|
}
|
|
|
|
int QTextDocument_Revision(const QTextDocument* self) {
|
|
return self->revision();
|
|
}
|
|
|
|
void QTextDocument_SetDocumentLayout(QTextDocument* self, QAbstractTextDocumentLayout* layout) {
|
|
self->setDocumentLayout(layout);
|
|
}
|
|
|
|
QAbstractTextDocumentLayout* QTextDocument_DocumentLayout(const QTextDocument* self) {
|
|
return self->documentLayout();
|
|
}
|
|
|
|
void QTextDocument_SetMetaInformation(QTextDocument* self, int info, struct miqt_string param2) {
|
|
QString param2_QString = QString::fromUtf8(param2.data, param2.len);
|
|
self->setMetaInformation(static_cast<QTextDocument::MetaInformation>(info), param2_QString);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_MetaInformation(const QTextDocument* self, int info) {
|
|
QString _ret = self->metaInformation(static_cast<QTextDocument::MetaInformation>(info));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QTextDocument_ToHtml(const QTextDocument* self) {
|
|
QString _ret = self->toHtml();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QTextDocument_SetHtml(QTextDocument* self, struct miqt_string html) {
|
|
QString html_QString = QString::fromUtf8(html.data, html.len);
|
|
self->setHtml(html_QString);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_ToMarkdown(const QTextDocument* self) {
|
|
QString _ret = self->toMarkdown();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QTextDocument_SetMarkdown(QTextDocument* self, struct miqt_string markdown) {
|
|
QString markdown_QString = QString::fromUtf8(markdown.data, markdown.len);
|
|
self->setMarkdown(markdown_QString);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_ToRawText(const QTextDocument* self) {
|
|
QString _ret = self->toRawText();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QTextDocument_ToPlainText(const QTextDocument* self) {
|
|
QString _ret = self->toPlainText();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QTextDocument_SetPlainText(QTextDocument* self, struct miqt_string text) {
|
|
QString text_QString = QString::fromUtf8(text.data, text.len);
|
|
self->setPlainText(text_QString);
|
|
}
|
|
|
|
QChar* QTextDocument_CharacterAt(const QTextDocument* self, int pos) {
|
|
return new QChar(self->characterAt(static_cast<int>(pos)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find(const QTextDocument* self, struct miqt_string subString) {
|
|
QString subString_QString = QString::fromUtf8(subString.data, subString.len);
|
|
return new QTextCursor(self->find(subString_QString));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find2(const QTextDocument* self, struct miqt_string subString, QTextCursor* cursor) {
|
|
QString subString_QString = QString::fromUtf8(subString.data, subString.len);
|
|
return new QTextCursor(self->find(subString_QString, *cursor));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_FindWithExpr(const QTextDocument* self, QRegularExpression* expr) {
|
|
return new QTextCursor(self->find(*expr));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find3(const QTextDocument* self, QRegularExpression* expr, QTextCursor* cursor) {
|
|
return new QTextCursor(self->find(*expr, *cursor));
|
|
}
|
|
|
|
QTextFrame* QTextDocument_FrameAt(const QTextDocument* self, int pos) {
|
|
return self->frameAt(static_cast<int>(pos));
|
|
}
|
|
|
|
QTextFrame* QTextDocument_RootFrame(const QTextDocument* self) {
|
|
return self->rootFrame();
|
|
}
|
|
|
|
QTextObject* QTextDocument_Object(const QTextDocument* self, int objectIndex) {
|
|
return self->object(static_cast<int>(objectIndex));
|
|
}
|
|
|
|
QTextObject* QTextDocument_ObjectForFormat(const QTextDocument* self, QTextFormat* param1) {
|
|
return self->objectForFormat(*param1);
|
|
}
|
|
|
|
QTextBlock* QTextDocument_FindBlock(const QTextDocument* self, int pos) {
|
|
return new QTextBlock(self->findBlock(static_cast<int>(pos)));
|
|
}
|
|
|
|
QTextBlock* QTextDocument_FindBlockByNumber(const QTextDocument* self, int blockNumber) {
|
|
return new QTextBlock(self->findBlockByNumber(static_cast<int>(blockNumber)));
|
|
}
|
|
|
|
QTextBlock* QTextDocument_FindBlockByLineNumber(const QTextDocument* self, int blockNumber) {
|
|
return new QTextBlock(self->findBlockByLineNumber(static_cast<int>(blockNumber)));
|
|
}
|
|
|
|
QTextBlock* QTextDocument_Begin(const QTextDocument* self) {
|
|
return new QTextBlock(self->begin());
|
|
}
|
|
|
|
QTextBlock* QTextDocument_End(const QTextDocument* self) {
|
|
return new QTextBlock(self->end());
|
|
}
|
|
|
|
QTextBlock* QTextDocument_FirstBlock(const QTextDocument* self) {
|
|
return new QTextBlock(self->firstBlock());
|
|
}
|
|
|
|
QTextBlock* QTextDocument_LastBlock(const QTextDocument* self) {
|
|
return new QTextBlock(self->lastBlock());
|
|
}
|
|
|
|
void QTextDocument_SetPageSize(QTextDocument* self, QSizeF* size) {
|
|
self->setPageSize(*size);
|
|
}
|
|
|
|
QSizeF* QTextDocument_PageSize(const QTextDocument* self) {
|
|
return new QSizeF(self->pageSize());
|
|
}
|
|
|
|
void QTextDocument_SetDefaultFont(QTextDocument* self, QFont* font) {
|
|
self->setDefaultFont(*font);
|
|
}
|
|
|
|
QFont* QTextDocument_DefaultFont(const QTextDocument* self) {
|
|
return new QFont(self->defaultFont());
|
|
}
|
|
|
|
void QTextDocument_SetSuperScriptBaseline(QTextDocument* self, double baseline) {
|
|
self->setSuperScriptBaseline(static_cast<qreal>(baseline));
|
|
}
|
|
|
|
double QTextDocument_SuperScriptBaseline(const QTextDocument* self) {
|
|
qreal _ret = self->superScriptBaseline();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QTextDocument_SetSubScriptBaseline(QTextDocument* self, double baseline) {
|
|
self->setSubScriptBaseline(static_cast<qreal>(baseline));
|
|
}
|
|
|
|
double QTextDocument_SubScriptBaseline(const QTextDocument* self) {
|
|
qreal _ret = self->subScriptBaseline();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QTextDocument_SetBaselineOffset(QTextDocument* self, double baseline) {
|
|
self->setBaselineOffset(static_cast<qreal>(baseline));
|
|
}
|
|
|
|
double QTextDocument_BaselineOffset(const QTextDocument* self) {
|
|
qreal _ret = self->baselineOffset();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
int QTextDocument_PageCount(const QTextDocument* self) {
|
|
return self->pageCount();
|
|
}
|
|
|
|
bool QTextDocument_IsModified(const QTextDocument* self) {
|
|
return self->isModified();
|
|
}
|
|
|
|
void QTextDocument_Print(const QTextDocument* self, QPagedPaintDevice* printer) {
|
|
self->print(printer);
|
|
}
|
|
|
|
QVariant* QTextDocument_Resource(const QTextDocument* self, int typeVal, QUrl* name) {
|
|
return new QVariant(self->resource(static_cast<int>(typeVal), *name));
|
|
}
|
|
|
|
void QTextDocument_AddResource(QTextDocument* self, int typeVal, QUrl* name, QVariant* resource) {
|
|
self->addResource(static_cast<int>(typeVal), *name, *resource);
|
|
}
|
|
|
|
struct miqt_array /* of QTextFormat* */ QTextDocument_AllFormats(const QTextDocument* self) {
|
|
QList<QTextFormat> _ret = self->allFormats();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
QTextFormat** _arr = static_cast<QTextFormat**>(malloc(sizeof(QTextFormat*) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
_arr[i] = new QTextFormat(_ret[i]);
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
void QTextDocument_MarkContentsDirty(QTextDocument* self, int from, int length) {
|
|
self->markContentsDirty(static_cast<int>(from), static_cast<int>(length));
|
|
}
|
|
|
|
void QTextDocument_SetUseDesignMetrics(QTextDocument* self, bool b) {
|
|
self->setUseDesignMetrics(b);
|
|
}
|
|
|
|
bool QTextDocument_UseDesignMetrics(const QTextDocument* self) {
|
|
return self->useDesignMetrics();
|
|
}
|
|
|
|
void QTextDocument_SetLayoutEnabled(QTextDocument* self, bool b) {
|
|
self->setLayoutEnabled(b);
|
|
}
|
|
|
|
bool QTextDocument_IsLayoutEnabled(const QTextDocument* self) {
|
|
return self->isLayoutEnabled();
|
|
}
|
|
|
|
void QTextDocument_DrawContents(QTextDocument* self, QPainter* painter) {
|
|
self->drawContents(painter);
|
|
}
|
|
|
|
void QTextDocument_SetTextWidth(QTextDocument* self, double width) {
|
|
self->setTextWidth(static_cast<qreal>(width));
|
|
}
|
|
|
|
double QTextDocument_TextWidth(const QTextDocument* self) {
|
|
qreal _ret = self->textWidth();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
double QTextDocument_IdealWidth(const QTextDocument* self) {
|
|
qreal _ret = self->idealWidth();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
double QTextDocument_IndentWidth(const QTextDocument* self) {
|
|
qreal _ret = self->indentWidth();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QTextDocument_SetIndentWidth(QTextDocument* self, double width) {
|
|
self->setIndentWidth(static_cast<qreal>(width));
|
|
}
|
|
|
|
double QTextDocument_DocumentMargin(const QTextDocument* self) {
|
|
qreal _ret = self->documentMargin();
|
|
return static_cast<double>(_ret);
|
|
}
|
|
|
|
void QTextDocument_SetDocumentMargin(QTextDocument* self, double margin) {
|
|
self->setDocumentMargin(static_cast<qreal>(margin));
|
|
}
|
|
|
|
void QTextDocument_AdjustSize(QTextDocument* self) {
|
|
self->adjustSize();
|
|
}
|
|
|
|
QSizeF* QTextDocument_Size(const QTextDocument* self) {
|
|
return new QSizeF(self->size());
|
|
}
|
|
|
|
int QTextDocument_BlockCount(const QTextDocument* self) {
|
|
return self->blockCount();
|
|
}
|
|
|
|
int QTextDocument_LineCount(const QTextDocument* self) {
|
|
return self->lineCount();
|
|
}
|
|
|
|
int QTextDocument_CharacterCount(const QTextDocument* self) {
|
|
return self->characterCount();
|
|
}
|
|
|
|
void QTextDocument_SetDefaultStyleSheet(QTextDocument* self, struct miqt_string sheet) {
|
|
QString sheet_QString = QString::fromUtf8(sheet.data, sheet.len);
|
|
self->setDefaultStyleSheet(sheet_QString);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_DefaultStyleSheet(const QTextDocument* self) {
|
|
QString _ret = self->defaultStyleSheet();
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QTextDocument_Undo(QTextDocument* self, QTextCursor* cursor) {
|
|
self->undo(cursor);
|
|
}
|
|
|
|
void QTextDocument_Redo(QTextDocument* self, QTextCursor* cursor) {
|
|
self->redo(cursor);
|
|
}
|
|
|
|
void QTextDocument_ClearUndoRedoStacks(QTextDocument* self) {
|
|
self->clearUndoRedoStacks();
|
|
}
|
|
|
|
int QTextDocument_MaximumBlockCount(const QTextDocument* self) {
|
|
return self->maximumBlockCount();
|
|
}
|
|
|
|
void QTextDocument_SetMaximumBlockCount(QTextDocument* self, int maximum) {
|
|
self->setMaximumBlockCount(static_cast<int>(maximum));
|
|
}
|
|
|
|
QTextOption* QTextDocument_DefaultTextOption(const QTextDocument* self) {
|
|
return new QTextOption(self->defaultTextOption());
|
|
}
|
|
|
|
void QTextDocument_SetDefaultTextOption(QTextDocument* self, QTextOption* option) {
|
|
self->setDefaultTextOption(*option);
|
|
}
|
|
|
|
QUrl* QTextDocument_BaseUrl(const QTextDocument* self) {
|
|
return new QUrl(self->baseUrl());
|
|
}
|
|
|
|
void QTextDocument_SetBaseUrl(QTextDocument* self, QUrl* url) {
|
|
self->setBaseUrl(*url);
|
|
}
|
|
|
|
int QTextDocument_DefaultCursorMoveStyle(const QTextDocument* self) {
|
|
Qt::CursorMoveStyle _ret = self->defaultCursorMoveStyle();
|
|
return static_cast<int>(_ret);
|
|
}
|
|
|
|
void QTextDocument_SetDefaultCursorMoveStyle(QTextDocument* self, int style) {
|
|
self->setDefaultCursorMoveStyle(static_cast<Qt::CursorMoveStyle>(style));
|
|
}
|
|
|
|
void QTextDocument_ContentsChange(QTextDocument* self, int from, int charsRemoved, int charsAdded) {
|
|
self->contentsChange(static_cast<int>(from), static_cast<int>(charsRemoved), static_cast<int>(charsAdded));
|
|
}
|
|
|
|
void QTextDocument_connect_ContentsChange(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(int, int, int)>(&QTextDocument::contentsChange), self, [=](int from, int charsRemoved, int charsAdded) {
|
|
int sigval1 = from;
|
|
int sigval2 = charsRemoved;
|
|
int sigval3 = charsAdded;
|
|
miqt_exec_callback_QTextDocument_ContentsChange(slot, sigval1, sigval2, sigval3);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_ContentsChanged(QTextDocument* self) {
|
|
self->contentsChanged();
|
|
}
|
|
|
|
void QTextDocument_connect_ContentsChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)()>(&QTextDocument::contentsChanged), self, [=]() {
|
|
miqt_exec_callback_QTextDocument_ContentsChanged(slot);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_UndoAvailable(QTextDocument* self, bool param1) {
|
|
self->undoAvailable(param1);
|
|
}
|
|
|
|
void QTextDocument_connect_UndoAvailable(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(bool)>(&QTextDocument::undoAvailable), self, [=](bool param1) {
|
|
bool sigval1 = param1;
|
|
miqt_exec_callback_QTextDocument_UndoAvailable(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_RedoAvailable(QTextDocument* self, bool param1) {
|
|
self->redoAvailable(param1);
|
|
}
|
|
|
|
void QTextDocument_connect_RedoAvailable(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(bool)>(&QTextDocument::redoAvailable), self, [=](bool param1) {
|
|
bool sigval1 = param1;
|
|
miqt_exec_callback_QTextDocument_RedoAvailable(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_UndoCommandAdded(QTextDocument* self) {
|
|
self->undoCommandAdded();
|
|
}
|
|
|
|
void QTextDocument_connect_UndoCommandAdded(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)()>(&QTextDocument::undoCommandAdded), self, [=]() {
|
|
miqt_exec_callback_QTextDocument_UndoCommandAdded(slot);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_ModificationChanged(QTextDocument* self, bool m) {
|
|
self->modificationChanged(m);
|
|
}
|
|
|
|
void QTextDocument_connect_ModificationChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(bool)>(&QTextDocument::modificationChanged), self, [=](bool m) {
|
|
bool sigval1 = m;
|
|
miqt_exec_callback_QTextDocument_ModificationChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_CursorPositionChanged(QTextDocument* self, QTextCursor* cursor) {
|
|
self->cursorPositionChanged(*cursor);
|
|
}
|
|
|
|
void QTextDocument_connect_CursorPositionChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(const QTextCursor&)>(&QTextDocument::cursorPositionChanged), self, [=](const QTextCursor& cursor) {
|
|
const QTextCursor& cursor_ret = cursor;
|
|
// Cast returned reference into pointer
|
|
QTextCursor* sigval1 = const_cast<QTextCursor*>(&cursor_ret);
|
|
miqt_exec_callback_QTextDocument_CursorPositionChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_BlockCountChanged(QTextDocument* self, int newBlockCount) {
|
|
self->blockCountChanged(static_cast<int>(newBlockCount));
|
|
}
|
|
|
|
void QTextDocument_connect_BlockCountChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(int)>(&QTextDocument::blockCountChanged), self, [=](int newBlockCount) {
|
|
int sigval1 = newBlockCount;
|
|
miqt_exec_callback_QTextDocument_BlockCountChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_BaseUrlChanged(QTextDocument* self, QUrl* url) {
|
|
self->baseUrlChanged(*url);
|
|
}
|
|
|
|
void QTextDocument_connect_BaseUrlChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)(const QUrl&)>(&QTextDocument::baseUrlChanged), self, [=](const QUrl& url) {
|
|
const QUrl& url_ret = url;
|
|
// Cast returned reference into pointer
|
|
QUrl* sigval1 = const_cast<QUrl*>(&url_ret);
|
|
miqt_exec_callback_QTextDocument_BaseUrlChanged(slot, sigval1);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_DocumentLayoutChanged(QTextDocument* self) {
|
|
self->documentLayoutChanged();
|
|
}
|
|
|
|
void QTextDocument_connect_DocumentLayoutChanged(QTextDocument* self, intptr_t slot) {
|
|
MiqtVirtualQTextDocument::connect(self, static_cast<void (QTextDocument::*)()>(&QTextDocument::documentLayoutChanged), self, [=]() {
|
|
miqt_exec_callback_QTextDocument_DocumentLayoutChanged(slot);
|
|
});
|
|
}
|
|
|
|
void QTextDocument_Undo2(QTextDocument* self) {
|
|
self->undo();
|
|
}
|
|
|
|
void QTextDocument_Redo2(QTextDocument* self) {
|
|
self->redo();
|
|
}
|
|
|
|
void QTextDocument_AppendUndoItem(QTextDocument* self, QAbstractUndoItem* param1) {
|
|
self->appendUndoItem(param1);
|
|
}
|
|
|
|
void QTextDocument_SetModified(QTextDocument* self) {
|
|
self->setModified();
|
|
}
|
|
|
|
struct miqt_string QTextDocument_Tr2(const char* s, const char* c) {
|
|
QString _ret = QTextDocument::tr(s, c);
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
struct miqt_string QTextDocument_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QTextDocument::tr(s, c, static_cast<int>(n));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
QTextDocument* QTextDocument_Clone1(const QTextDocument* self, QObject* parent) {
|
|
return self->clone(parent);
|
|
}
|
|
|
|
struct miqt_string QTextDocument_ToMarkdown1(const QTextDocument* self, int features) {
|
|
QString _ret = self->toMarkdown(static_cast<QTextDocument::MarkdownFeatures>(features));
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _b = _ret.toUtf8();
|
|
struct miqt_string _ms;
|
|
_ms.len = _b.length();
|
|
_ms.data = static_cast<char*>(malloc(_ms.len));
|
|
memcpy(_ms.data, _b.data(), _ms.len);
|
|
return _ms;
|
|
}
|
|
|
|
void QTextDocument_SetMarkdown2(QTextDocument* self, struct miqt_string markdown, int features) {
|
|
QString markdown_QString = QString::fromUtf8(markdown.data, markdown.len);
|
|
self->setMarkdown(markdown_QString, static_cast<QTextDocument::MarkdownFeatures>(features));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find22(const QTextDocument* self, struct miqt_string subString, int from) {
|
|
QString subString_QString = QString::fromUtf8(subString.data, subString.len);
|
|
return new QTextCursor(self->find(subString_QString, static_cast<int>(from)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find32(const QTextDocument* self, struct miqt_string subString, int from, int options) {
|
|
QString subString_QString = QString::fromUtf8(subString.data, subString.len);
|
|
return new QTextCursor(self->find(subString_QString, static_cast<int>(from), static_cast<QTextDocument::FindFlags>(options)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find33(const QTextDocument* self, struct miqt_string subString, QTextCursor* cursor, int options) {
|
|
QString subString_QString = QString::fromUtf8(subString.data, subString.len);
|
|
return new QTextCursor(self->find(subString_QString, *cursor, static_cast<QTextDocument::FindFlags>(options)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find23(const QTextDocument* self, QRegularExpression* expr, int from) {
|
|
return new QTextCursor(self->find(*expr, static_cast<int>(from)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find34(const QTextDocument* self, QRegularExpression* expr, int from, int options) {
|
|
return new QTextCursor(self->find(*expr, static_cast<int>(from), static_cast<QTextDocument::FindFlags>(options)));
|
|
}
|
|
|
|
QTextCursor* QTextDocument_Find35(const QTextDocument* self, QRegularExpression* expr, QTextCursor* cursor, int options) {
|
|
return new QTextCursor(self->find(*expr, *cursor, static_cast<QTextDocument::FindFlags>(options)));
|
|
}
|
|
|
|
void QTextDocument_DrawContents2(QTextDocument* self, QPainter* painter, QRectF* rect) {
|
|
self->drawContents(painter, *rect);
|
|
}
|
|
|
|
void QTextDocument_ClearUndoRedoStacks1(QTextDocument* self, int historyToClear) {
|
|
self->clearUndoRedoStacks(static_cast<QTextDocument::Stacks>(historyToClear));
|
|
}
|
|
|
|
void QTextDocument_SetModified1(QTextDocument* self, bool m) {
|
|
self->setModified(m);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_Clear(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__Clear = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_Clear(void* self) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_Clear();
|
|
}
|
|
|
|
void QTextDocument_override_virtual_CreateObject(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__CreateObject = slot;
|
|
}
|
|
|
|
QTextObject* QTextDocument_virtualbase_CreateObject(void* self, QTextFormat* f) {
|
|
return ( (MiqtVirtualQTextDocument*)(self) )->virtualbase_CreateObject(f);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_LoadResource(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__LoadResource = slot;
|
|
}
|
|
|
|
QVariant* QTextDocument_virtualbase_LoadResource(void* self, int typeVal, QUrl* name) {
|
|
return ( (MiqtVirtualQTextDocument*)(self) )->virtualbase_LoadResource(typeVal, name);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_Event(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__Event = slot;
|
|
}
|
|
|
|
bool QTextDocument_virtualbase_Event(void* self, QEvent* event) {
|
|
return ( (MiqtVirtualQTextDocument*)(self) )->virtualbase_Event(event);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_EventFilter(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__EventFilter = slot;
|
|
}
|
|
|
|
bool QTextDocument_virtualbase_EventFilter(void* self, QObject* watched, QEvent* event) {
|
|
return ( (MiqtVirtualQTextDocument*)(self) )->virtualbase_EventFilter(watched, event);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_TimerEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__TimerEvent = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_TimerEvent(void* self, QTimerEvent* event) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_TimerEvent(event);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_ChildEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__ChildEvent = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_ChildEvent(void* self, QChildEvent* event) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_ChildEvent(event);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_CustomEvent(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__CustomEvent = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_CustomEvent(void* self, QEvent* event) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_CustomEvent(event);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_ConnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__ConnectNotify = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_ConnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_ConnectNotify(signal);
|
|
}
|
|
|
|
void QTextDocument_override_virtual_DisconnectNotify(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQTextDocument*>( (QTextDocument*)(self) )->handle__DisconnectNotify = slot;
|
|
}
|
|
|
|
void QTextDocument_virtualbase_DisconnectNotify(void* self, QMetaMethod* signal) {
|
|
( (MiqtVirtualQTextDocument*)(self) )->virtualbase_DisconnectNotify(signal);
|
|
}
|
|
|
|
void QTextDocument_Delete(QTextDocument* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQTextDocument*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|