mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
116 lines
3.4 KiB
C++
116 lines
3.4 KiB
C++
#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;
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
void QsciLexerYAML_Delete(QsciLexerYAML* self) {
|
|
delete self;
|
|
}
|
|
|