#include #include #include #include #include #include #include #include #include "gen_qscilexeryaml.h" #include "_cgo_export.h" QsciLexerYAML* QsciLexerYAML_new() { return new QsciLexerYAML(); } QsciLexerYAML* QsciLexerYAML_new2(QObject* parent) { return new QsciLexerYAML(parent); } QMetaObject* QsciLexerYAML_MetaObject(const QsciLexerYAML* self) { return (QMetaObject*) self->metaObject(); } void* QsciLexerYAML_Metacast(QsciLexerYAML* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string QsciLexerYAML_Tr(const char* s) { QString _ret = QsciLexerYAML::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } const char* QsciLexerYAML_Language(const QsciLexerYAML* self) { return (const char*) self->language(); } const char* QsciLexerYAML_Lexer(const QsciLexerYAML* self) { return (const char*) self->lexer(); } QColor* QsciLexerYAML_DefaultColor(const QsciLexerYAML* self, int style) { return new QColor(self->defaultColor(static_cast(style))); } bool QsciLexerYAML_DefaultEolFill(const QsciLexerYAML* self, int style) { return self->defaultEolFill(static_cast(style)); } QFont* QsciLexerYAML_DefaultFont(const QsciLexerYAML* self, int style) { return new QFont(self->defaultFont(static_cast(style))); } QColor* QsciLexerYAML_DefaultPaper(const QsciLexerYAML* self, int style) { return new QColor(self->defaultPaper(static_cast(style))); } const char* QsciLexerYAML_Keywords(const QsciLexerYAML* self, int set) { return (const char*) self->keywords(static_cast(set)); } struct miqt_string QsciLexerYAML_Description(const QsciLexerYAML* self, int style) { QString _ret = self->description(static_cast(style)); // 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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } void QsciLexerYAML_RefreshProperties(QsciLexerYAML* self) { self->refreshProperties(); } bool QsciLexerYAML_FoldComments(const QsciLexerYAML* self) { return self->foldComments(); } void QsciLexerYAML_SetFoldComments(QsciLexerYAML* self, bool fold) { self->setFoldComments(fold); } struct miqt_string QsciLexerYAML_Tr2(const char* s, const char* c) { QString _ret = QsciLexerYAML::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(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } struct miqt_string QsciLexerYAML_Tr3(const char* s, const char* c, int n) { QString _ret = QsciLexerYAML::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(); struct miqt_string _ms; _ms.len = _b.length(); _ms.data = static_cast(malloc(_ms.len)); memcpy(_ms.data, _b.data(), _ms.len); return _ms; } void QsciLexerYAML_Delete(QsciLexerYAML* self) { delete self; }