#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 "qtextdocument.h" #include "gen_qtextdocument.h" extern "C" { extern void miqt_exec_callback(void* cb, int argc, void* argv); } void QAbstractUndoItem_Undo(QAbstractUndoItem* self) { self->undo(); } void QAbstractUndoItem_Redo(QAbstractUndoItem* self) { self->redo(); } void QAbstractUndoItem_Delete(QAbstractUndoItem* self) { delete self; } QTextDocument* QTextDocument_new() { return new QTextDocument(); } QTextDocument* QTextDocument_new2(const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); return new QTextDocument(text_QString); } QTextDocument* QTextDocument_new3(QObject* parent) { return new QTextDocument(parent); } QTextDocument* QTextDocument_new4(const char* text, size_t text_Strlen, QObject* parent) { QString text_QString = QString::fromUtf8(text, text_Strlen); return new QTextDocument(text_QString, parent); } QMetaObject* QTextDocument_MetaObject(QTextDocument* self) { return (QMetaObject*) const_cast(self)->metaObject(); } void QTextDocument_Tr(const char* s, char** _out, int* _out_Strlen) { 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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_TrUtf8(const char* s, char** _out, int* _out_Strlen) { QString ret = QTextDocument::trUtf8(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QTextDocument* QTextDocument_Clone(QTextDocument* self) { return const_cast(self)->clone(); } bool QTextDocument_IsEmpty(QTextDocument* self) { return const_cast(self)->isEmpty(); } void QTextDocument_Clear(QTextDocument* self) { self->clear(); } void QTextDocument_SetUndoRedoEnabled(QTextDocument* self, bool enable) { self->setUndoRedoEnabled(enable); } bool QTextDocument_IsUndoRedoEnabled(QTextDocument* self) { return const_cast(self)->isUndoRedoEnabled(); } bool QTextDocument_IsUndoAvailable(QTextDocument* self) { return const_cast(self)->isUndoAvailable(); } bool QTextDocument_IsRedoAvailable(QTextDocument* self) { return const_cast(self)->isRedoAvailable(); } int QTextDocument_AvailableUndoSteps(QTextDocument* self) { return const_cast(self)->availableUndoSteps(); } int QTextDocument_AvailableRedoSteps(QTextDocument* self) { return const_cast(self)->availableRedoSteps(); } int QTextDocument_Revision(QTextDocument* self) { return const_cast(self)->revision(); } void QTextDocument_SetDocumentLayout(QTextDocument* self, QAbstractTextDocumentLayout* layout) { self->setDocumentLayout(layout); } QAbstractTextDocumentLayout* QTextDocument_DocumentLayout(QTextDocument* self) { return const_cast(self)->documentLayout(); } void QTextDocument_SetMetaInformation(QTextDocument* self, uintptr_t info, const char* param2, size_t param2_Strlen) { QString param2_QString = QString::fromUtf8(param2, param2_Strlen); self->setMetaInformation(static_cast(info), param2_QString); } void QTextDocument_MetaInformation(QTextDocument* self, uintptr_t info, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->metaInformation(static_cast(info)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_ToHtml(QTextDocument* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->toHtml(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_SetHtml(QTextDocument* self, const char* html, size_t html_Strlen) { QString html_QString = QString::fromUtf8(html, html_Strlen); self->setHtml(html_QString); } void QTextDocument_ToMarkdown(QTextDocument* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->toMarkdown(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_SetMarkdown(QTextDocument* self, const char* markdown, size_t markdown_Strlen) { QString markdown_QString = QString::fromUtf8(markdown, markdown_Strlen); self->setMarkdown(markdown_QString); } void QTextDocument_ToRawText(QTextDocument* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->toRawText(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_ToPlainText(QTextDocument* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->toPlainText(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_SetPlainText(QTextDocument* self, const char* text, size_t text_Strlen) { QString text_QString = QString::fromUtf8(text, text_Strlen); self->setPlainText(text_QString); } QChar* QTextDocument_CharacterAt(QTextDocument* self, int pos) { QChar ret = const_cast(self)->characterAt(static_cast(pos)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QChar(ret)); } QTextCursor* QTextDocument_Find(QTextDocument* self, const char* subString, size_t subString_Strlen) { QString subString_QString = QString::fromUtf8(subString, subString_Strlen); QTextCursor ret = const_cast(self)->find(subString_QString); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find2(QTextDocument* self, const char* subString, size_t subString_Strlen, QTextCursor* cursor) { QString subString_QString = QString::fromUtf8(subString, subString_Strlen); QTextCursor ret = const_cast(self)->find(subString_QString, *cursor); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_FindWithExpr(QTextDocument* self, QRegExp* expr) { QTextCursor ret = const_cast(self)->find(*expr); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find3(QTextDocument* self, QRegExp* expr, QTextCursor* cursor) { QTextCursor ret = const_cast(self)->find(*expr, *cursor); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find4(QTextDocument* self, QRegularExpression* expr) { QTextCursor ret = const_cast(self)->find(*expr); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find5(QTextDocument* self, QRegularExpression* expr, QTextCursor* cursor) { QTextCursor ret = const_cast(self)->find(*expr, *cursor); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextFrame* QTextDocument_FrameAt(QTextDocument* self, int pos) { return const_cast(self)->frameAt(static_cast(pos)); } QTextFrame* QTextDocument_RootFrame(QTextDocument* self) { return const_cast(self)->rootFrame(); } QTextObject* QTextDocument_Object(QTextDocument* self, int objectIndex) { return const_cast(self)->object(static_cast(objectIndex)); } QTextObject* QTextDocument_ObjectForFormat(QTextDocument* self, QTextFormat* param1) { return const_cast(self)->objectForFormat(*param1); } QTextBlock* QTextDocument_FindBlock(QTextDocument* self, int pos) { QTextBlock ret = const_cast(self)->findBlock(static_cast(pos)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_FindBlockByNumber(QTextDocument* self, int blockNumber) { QTextBlock ret = const_cast(self)->findBlockByNumber(static_cast(blockNumber)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_FindBlockByLineNumber(QTextDocument* self, int blockNumber) { QTextBlock ret = const_cast(self)->findBlockByLineNumber(static_cast(blockNumber)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_Begin(QTextDocument* self) { QTextBlock ret = const_cast(self)->begin(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_End(QTextDocument* self) { QTextBlock ret = const_cast(self)->end(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_FirstBlock(QTextDocument* self) { QTextBlock ret = const_cast(self)->firstBlock(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } QTextBlock* QTextDocument_LastBlock(QTextDocument* self) { QTextBlock ret = const_cast(self)->lastBlock(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextBlock(ret)); } void QTextDocument_SetPageSize(QTextDocument* self, QSizeF* size) { self->setPageSize(*size); } QSizeF* QTextDocument_PageSize(QTextDocument* self) { QSizeF ret = const_cast(self)->pageSize(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } void QTextDocument_SetDefaultFont(QTextDocument* self, QFont* font) { self->setDefaultFont(*font); } QFont* QTextDocument_DefaultFont(QTextDocument* self) { QFont ret = const_cast(self)->defaultFont(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QFont(ret)); } int QTextDocument_PageCount(QTextDocument* self) { return const_cast(self)->pageCount(); } bool QTextDocument_IsModified(QTextDocument* self) { return const_cast(self)->isModified(); } void QTextDocument_Print(QTextDocument* self, QPagedPaintDevice* printer) { const_cast(self)->print(printer); } QVariant* QTextDocument_Resource(QTextDocument* self, int typeVal, QUrl* name) { QVariant ret = const_cast(self)->resource(static_cast(typeVal), *name); // Copy-construct value returned type into heap-allocated copy return static_cast(new QVariant(ret)); } void QTextDocument_AddResource(QTextDocument* self, int typeVal, QUrl* name, QVariant* resource) { self->addResource(static_cast(typeVal), *name, *resource); } void QTextDocument_AllFormats(QTextDocument* self, QTextFormat*** _out, size_t* _out_len) { QVector ret = const_cast(self)->allFormats(); // Convert QList<> from C++ memory to manually-managed C memory of copy-constructed pointers QTextFormat** __out = static_cast(malloc(sizeof(QTextFormat**) * ret.length())); for (size_t i = 0, e = ret.length(); i < e; ++i) { __out[i] = new QTextFormat(ret[i]); } *_out = __out; *_out_len = ret.length(); } void QTextDocument_MarkContentsDirty(QTextDocument* self, int from, int length) { self->markContentsDirty(static_cast(from), static_cast(length)); } void QTextDocument_SetUseDesignMetrics(QTextDocument* self, bool b) { self->setUseDesignMetrics(b); } bool QTextDocument_UseDesignMetrics(QTextDocument* self) { return const_cast(self)->useDesignMetrics(); } void QTextDocument_DrawContents(QTextDocument* self, QPainter* painter) { self->drawContents(painter); } void QTextDocument_SetTextWidth(QTextDocument* self, double width) { self->setTextWidth(static_cast(width)); } double QTextDocument_TextWidth(QTextDocument* self) { return const_cast(self)->textWidth(); } double QTextDocument_IdealWidth(QTextDocument* self) { return const_cast(self)->idealWidth(); } double QTextDocument_IndentWidth(QTextDocument* self) { return const_cast(self)->indentWidth(); } void QTextDocument_SetIndentWidth(QTextDocument* self, double width) { self->setIndentWidth(static_cast(width)); } double QTextDocument_DocumentMargin(QTextDocument* self) { return const_cast(self)->documentMargin(); } void QTextDocument_SetDocumentMargin(QTextDocument* self, double margin) { self->setDocumentMargin(static_cast(margin)); } void QTextDocument_AdjustSize(QTextDocument* self) { self->adjustSize(); } QSizeF* QTextDocument_Size(QTextDocument* self) { QSizeF ret = const_cast(self)->size(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QSizeF(ret)); } int QTextDocument_BlockCount(QTextDocument* self) { return const_cast(self)->blockCount(); } int QTextDocument_LineCount(QTextDocument* self) { return const_cast(self)->lineCount(); } int QTextDocument_CharacterCount(QTextDocument* self) { return const_cast(self)->characterCount(); } void QTextDocument_SetDefaultStyleSheet(QTextDocument* self, const char* sheet, size_t sheet_Strlen) { QString sheet_QString = QString::fromUtf8(sheet, sheet_Strlen); self->setDefaultStyleSheet(sheet_QString); } void QTextDocument_DefaultStyleSheet(QTextDocument* self, char** _out, int* _out_Strlen) { QString ret = const_cast(self)->defaultStyleSheet(); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } 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(QTextDocument* self) { return const_cast(self)->maximumBlockCount(); } void QTextDocument_SetMaximumBlockCount(QTextDocument* self, int maximum) { self->setMaximumBlockCount(static_cast(maximum)); } QTextOption* QTextDocument_DefaultTextOption(QTextDocument* self) { QTextOption ret = const_cast(self)->defaultTextOption(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextOption(ret)); } void QTextDocument_SetDefaultTextOption(QTextDocument* self, QTextOption* option) { self->setDefaultTextOption(*option); } QUrl* QTextDocument_BaseUrl(QTextDocument* self) { QUrl ret = const_cast(self)->baseUrl(); // Copy-construct value returned type into heap-allocated copy return static_cast(new QUrl(ret)); } void QTextDocument_SetBaseUrl(QTextDocument* self, QUrl* url) { self->setBaseUrl(*url); } uintptr_t QTextDocument_DefaultCursorMoveStyle(QTextDocument* self) { Qt::CursorMoveStyle ret = const_cast(self)->defaultCursorMoveStyle(); return static_cast(ret); } void QTextDocument_SetDefaultCursorMoveStyle(QTextDocument* self, uintptr_t style) { self->setDefaultCursorMoveStyle(static_cast(style)); } void QTextDocument_ContentsChange(QTextDocument* self, int from, int charsRemoved, int charsAdded) { self->contentsChange(static_cast(from), static_cast(charsRemoved), static_cast(charsAdded)); } void QTextDocument_connect_ContentsChange(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::contentsChange), self, [=](int from, int charsRemoved, int charsAdded) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_ContentsChanged(QTextDocument* self) { self->contentsChanged(); } void QTextDocument_connect_ContentsChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::contentsChanged), self, [=]() { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_UndoAvailable(QTextDocument* self, bool param1) { self->undoAvailable(param1); } void QTextDocument_connect_UndoAvailable(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::undoAvailable), self, [=](bool param1) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_RedoAvailable(QTextDocument* self, bool param1) { self->redoAvailable(param1); } void QTextDocument_connect_RedoAvailable(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::redoAvailable), self, [=](bool param1) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_UndoCommandAdded(QTextDocument* self) { self->undoCommandAdded(); } void QTextDocument_connect_UndoCommandAdded(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::undoCommandAdded), self, [=]() { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_ModificationChanged(QTextDocument* self, bool m) { self->modificationChanged(m); } void QTextDocument_connect_ModificationChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::modificationChanged), self, [=](bool m) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_CursorPositionChanged(QTextDocument* self, QTextCursor* cursor) { self->cursorPositionChanged(*cursor); } void QTextDocument_connect_CursorPositionChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::cursorPositionChanged), self, [=](const QTextCursor& cursor) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_BlockCountChanged(QTextDocument* self, int newBlockCount) { self->blockCountChanged(static_cast(newBlockCount)); } void QTextDocument_connect_BlockCountChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::blockCountChanged), self, [=](int newBlockCount) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_BaseUrlChanged(QTextDocument* self, QUrl* url) { self->baseUrlChanged(*url); } void QTextDocument_connect_BaseUrlChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::baseUrlChanged), self, [=](const QUrl& url) { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_DocumentLayoutChanged(QTextDocument* self) { self->documentLayoutChanged(); } void QTextDocument_connect_DocumentLayoutChanged(QTextDocument* self, void* slot) { QTextDocument::connect(self, static_cast(&QTextDocument::documentLayoutChanged), self, [=]() { miqt_exec_callback(slot, 0, nullptr); }); } void QTextDocument_Undo2(QTextDocument* self) { self->undo(); } void QTextDocument_Redo2(QTextDocument* self) { self->redo(); } void QTextDocument_SetModified(QTextDocument* self) { self->setModified(); } void QTextDocument_Tr2(const char* s, const char* c, char** _out, int* _out_Strlen) { 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(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_Tr3(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QTextDocument::tr(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_TrUtf82(const char* s, const char* c, char** _out, int* _out_Strlen) { QString ret = QTextDocument::trUtf8(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_TrUtf83(const char* s, const char* c, int n, char** _out, int* _out_Strlen) { QString ret = QTextDocument::trUtf8(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } QTextDocument* QTextDocument_Clone1(QTextDocument* self, QObject* parent) { return self->clone(parent); } void QTextDocument_ToHtml1(QTextDocument* self, QByteArray* encoding, char** _out, int* _out_Strlen) { QString ret = self->toHtml(*encoding); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_ToMarkdown1(QTextDocument* self, int features, char** _out, int* _out_Strlen) { QString ret = self->toMarkdown(static_cast(features)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray b = ret.toUtf8(); *_out = static_cast(malloc(b.length())); memcpy(*_out, b.data(), b.length()); *_out_Strlen = b.length(); } void QTextDocument_SetMarkdown2(QTextDocument* self, const char* markdown, size_t markdown_Strlen, int features) { QString markdown_QString = QString::fromUtf8(markdown, markdown_Strlen); self->setMarkdown(markdown_QString, static_cast(features)); } QTextCursor* QTextDocument_Find22(QTextDocument* self, const char* subString, size_t subString_Strlen, int from) { QString subString_QString = QString::fromUtf8(subString, subString_Strlen); QTextCursor ret = self->find(subString_QString, static_cast(from)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find32(QTextDocument* self, const char* subString, size_t subString_Strlen, int from, int options) { QString subString_QString = QString::fromUtf8(subString, subString_Strlen); QTextCursor ret = self->find(subString_QString, static_cast(from), static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find33(QTextDocument* self, const char* subString, size_t subString_Strlen, QTextCursor* cursor, int options) { QString subString_QString = QString::fromUtf8(subString, subString_Strlen); QTextCursor ret = self->find(subString_QString, *cursor, static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find23(QTextDocument* self, QRegExp* expr, int from) { QTextCursor ret = self->find(*expr, static_cast(from)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find34(QTextDocument* self, QRegExp* expr, int from, int options) { QTextCursor ret = self->find(*expr, static_cast(from), static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find35(QTextDocument* self, QRegExp* expr, QTextCursor* cursor, int options) { QTextCursor ret = self->find(*expr, *cursor, static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find24(QTextDocument* self, QRegularExpression* expr, int from) { QTextCursor ret = self->find(*expr, static_cast(from)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find36(QTextDocument* self, QRegularExpression* expr, int from, int options) { QTextCursor ret = self->find(*expr, static_cast(from), static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } QTextCursor* QTextDocument_Find37(QTextDocument* self, QRegularExpression* expr, QTextCursor* cursor, int options) { QTextCursor ret = self->find(*expr, *cursor, static_cast(options)); // Copy-construct value returned type into heap-allocated copy return static_cast(new QTextCursor(ret)); } void QTextDocument_DrawContents2(QTextDocument* self, QPainter* painter, QRectF* rect) { self->drawContents(painter, *rect); } void QTextDocument_ClearUndoRedoStacks1(QTextDocument* self, uintptr_t historyToClear) { self->clearUndoRedoStacks(static_cast(historyToClear)); } void QTextDocument_SetModified1(QTextDocument* self, bool m) { self->setModified(m); } void QTextDocument_Delete(QTextDocument* self) { delete self; }