miqt/qt-restricted-extras/qscintilla/gen_qscilexeryaml.cpp

149 lines
4.5 KiB
C++
Raw Normal View History

2024-10-20 04:59:23 +00:00
#include <QColor>
#include <QFont>
#include <QMetaObject>
#include <QObject>
#include <QString>
#include <QByteArray>
#include <cstring>
#include <qscilexeryaml.h>
#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<char*>(malloc(_ms.len));
memcpy(_ms.data, _b.data(), _ms.len);
return _ms;
}
struct miqt_string QsciLexerYAML_TrUtf8(const char* s) {
QString _ret = QsciLexerYAML::trUtf8(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;
}
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<int>(style)));
}
bool QsciLexerYAML_DefaultEolFill(const QsciLexerYAML* self, int style) {
return self->defaultEolFill(static_cast<int>(style));
}
QFont* QsciLexerYAML_DefaultFont(const QsciLexerYAML* self, int style) {
return new QFont(self->defaultFont(static_cast<int>(style)));
}
QColor* QsciLexerYAML_DefaultPaper(const QsciLexerYAML* self, int style) {
return new QColor(self->defaultPaper(static_cast<int>(style)));
}
const char* QsciLexerYAML_Keywords(const QsciLexerYAML* self, int set) {
return (const char*) self->keywords(static_cast<int>(set));
}
struct miqt_string QsciLexerYAML_Description(const QsciLexerYAML* self, int style) {
QString _ret = self->description(static_cast<int>(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<char*>(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<char*>(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<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;
}
struct miqt_string QsciLexerYAML_TrUtf82(const char* s, const char* c) {
QString _ret = QsciLexerYAML::trUtf8(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 QsciLexerYAML_TrUtf83(const char* s, const char* c, int n) {
QString _ret = QsciLexerYAML::trUtf8(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;
}
void QsciLexerYAML_Delete(QsciLexerYAML* self) {
delete self;
}