mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
1419 lines
44 KiB
C++
1419 lines
44 KiB
C++
#include <QColor>
|
|
#include <QFont>
|
|
#include <QList>
|
|
#include <QMetaObject>
|
|
#include <QObject>
|
|
#include <QSettings>
|
|
#include <QString>
|
|
#include <QByteArray>
|
|
#include <cstring>
|
|
#include <qscilexerd.h>
|
|
#include "gen_qscilexerd.h"
|
|
|
|
#ifndef _Bool
|
|
#define _Bool bool
|
|
#endif
|
|
#include "_cgo_export.h"
|
|
|
|
class MiqtVirtualQsciLexerD : public virtual QsciLexerD {
|
|
public:
|
|
|
|
MiqtVirtualQsciLexerD(): QsciLexerD() {};
|
|
MiqtVirtualQsciLexerD(QObject* parent): QsciLexerD(parent) {};
|
|
|
|
virtual ~MiqtVirtualQsciLexerD() = default;
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetFoldAtElse = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setFoldAtElse(bool fold) override {
|
|
if (handle__SetFoldAtElse == 0) {
|
|
QsciLexerD::setFoldAtElse(fold);
|
|
return;
|
|
}
|
|
|
|
bool sigval1 = fold;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetFoldAtElse(this, handle__SetFoldAtElse, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetFoldAtElse(bool fold) {
|
|
|
|
QsciLexerD::setFoldAtElse(fold);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetFoldComments = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setFoldComments(bool fold) override {
|
|
if (handle__SetFoldComments == 0) {
|
|
QsciLexerD::setFoldComments(fold);
|
|
return;
|
|
}
|
|
|
|
bool sigval1 = fold;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetFoldComments(this, handle__SetFoldComments, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetFoldComments(bool fold) {
|
|
|
|
QsciLexerD::setFoldComments(fold);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetFoldCompact = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setFoldCompact(bool fold) override {
|
|
if (handle__SetFoldCompact == 0) {
|
|
QsciLexerD::setFoldCompact(fold);
|
|
return;
|
|
}
|
|
|
|
bool sigval1 = fold;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetFoldCompact(this, handle__SetFoldCompact, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetFoldCompact(bool fold) {
|
|
|
|
QsciLexerD::setFoldCompact(fold);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Language = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* language() const override {
|
|
if (handle__Language == 0) {
|
|
return nullptr; // Pure virtual, there is no base we can call
|
|
}
|
|
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_Language(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Language);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Lexer = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* lexer() const override {
|
|
if (handle__Lexer == 0) {
|
|
return QsciLexerD::lexer();
|
|
}
|
|
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_Lexer(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Lexer);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_Lexer() const {
|
|
|
|
return (const char*) QsciLexerD::lexer();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__LexerId = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int lexerId() const override {
|
|
if (handle__LexerId == 0) {
|
|
return QsciLexerD::lexerId();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_LexerId(const_cast<MiqtVirtualQsciLexerD*>(this), handle__LexerId);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_LexerId() const {
|
|
|
|
return QsciLexerD::lexerId();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__AutoCompletionFillups = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* autoCompletionFillups() const override {
|
|
if (handle__AutoCompletionFillups == 0) {
|
|
return QsciLexerD::autoCompletionFillups();
|
|
}
|
|
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_AutoCompletionFillups(const_cast<MiqtVirtualQsciLexerD*>(this), handle__AutoCompletionFillups);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_AutoCompletionFillups() const {
|
|
|
|
return (const char*) QsciLexerD::autoCompletionFillups();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__AutoCompletionWordSeparators = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QStringList autoCompletionWordSeparators() const override {
|
|
if (handle__AutoCompletionWordSeparators == 0) {
|
|
return QsciLexerD::autoCompletionWordSeparators();
|
|
}
|
|
|
|
|
|
struct miqt_array /* of struct miqt_string */ callback_return_value = miqt_exec_callback_QsciLexerD_AutoCompletionWordSeparators(const_cast<MiqtVirtualQsciLexerD*>(this), handle__AutoCompletionWordSeparators);
|
|
QStringList callback_return_value_QList;
|
|
callback_return_value_QList.reserve(callback_return_value.len);
|
|
struct miqt_string* callback_return_value_arr = static_cast<struct miqt_string*>(callback_return_value.data);
|
|
for(size_t i = 0; i < callback_return_value.len; ++i) {
|
|
QString callback_return_value_arr_i_QString = QString::fromUtf8(callback_return_value_arr[i].data, callback_return_value_arr[i].len);
|
|
callback_return_value_QList.push_back(callback_return_value_arr_i_QString);
|
|
}
|
|
|
|
return callback_return_value_QList;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
struct miqt_array /* of struct miqt_string */ virtualbase_AutoCompletionWordSeparators() const {
|
|
|
|
QStringList _ret = QsciLexerD::autoCompletionWordSeparators();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _arr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
QString _lv_ret = _ret[i];
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _lv_b = _lv_ret.toUtf8();
|
|
struct miqt_string _lv_ms;
|
|
_lv_ms.len = _lv_b.length();
|
|
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
|
|
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
|
|
_arr[i] = _lv_ms;
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__BlockEnd = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* blockEnd(int* style) const override {
|
|
if (handle__BlockEnd == 0) {
|
|
return QsciLexerD::blockEnd(style);
|
|
}
|
|
|
|
int* sigval1 = style;
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_BlockEnd(const_cast<MiqtVirtualQsciLexerD*>(this), handle__BlockEnd, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_BlockEnd(int* style) const {
|
|
|
|
return (const char*) QsciLexerD::blockEnd(static_cast<int*>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__BlockLookback = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int blockLookback() const override {
|
|
if (handle__BlockLookback == 0) {
|
|
return QsciLexerD::blockLookback();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_BlockLookback(const_cast<MiqtVirtualQsciLexerD*>(this), handle__BlockLookback);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_BlockLookback() const {
|
|
|
|
return QsciLexerD::blockLookback();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__BlockStart = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* blockStart(int* style) const override {
|
|
if (handle__BlockStart == 0) {
|
|
return QsciLexerD::blockStart(style);
|
|
}
|
|
|
|
int* sigval1 = style;
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_BlockStart(const_cast<MiqtVirtualQsciLexerD*>(this), handle__BlockStart, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_BlockStart(int* style) const {
|
|
|
|
return (const char*) QsciLexerD::blockStart(static_cast<int*>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__BlockStartKeyword = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* blockStartKeyword(int* style) const override {
|
|
if (handle__BlockStartKeyword == 0) {
|
|
return QsciLexerD::blockStartKeyword(style);
|
|
}
|
|
|
|
int* sigval1 = style;
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_BlockStartKeyword(const_cast<MiqtVirtualQsciLexerD*>(this), handle__BlockStartKeyword, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_BlockStartKeyword(int* style) const {
|
|
|
|
return (const char*) QsciLexerD::blockStartKeyword(static_cast<int*>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__BraceStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int braceStyle() const override {
|
|
if (handle__BraceStyle == 0) {
|
|
return QsciLexerD::braceStyle();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_BraceStyle(const_cast<MiqtVirtualQsciLexerD*>(this), handle__BraceStyle);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_BraceStyle() const {
|
|
|
|
return QsciLexerD::braceStyle();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__CaseSensitive = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool caseSensitive() const override {
|
|
if (handle__CaseSensitive == 0) {
|
|
return QsciLexerD::caseSensitive();
|
|
}
|
|
|
|
|
|
bool callback_return_value = miqt_exec_callback_QsciLexerD_CaseSensitive(const_cast<MiqtVirtualQsciLexerD*>(this), handle__CaseSensitive);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_CaseSensitive() const {
|
|
|
|
return QsciLexerD::caseSensitive();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Color = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QColor color(int style) const override {
|
|
if (handle__Color == 0) {
|
|
return QsciLexerD::color(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QColor* callback_return_value = miqt_exec_callback_QsciLexerD_Color(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Color, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QColor* virtualbase_Color(int style) const {
|
|
|
|
return new QColor(QsciLexerD::color(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__EolFill = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool eolFill(int style) const override {
|
|
if (handle__EolFill == 0) {
|
|
return QsciLexerD::eolFill(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QsciLexerD_EolFill(const_cast<MiqtVirtualQsciLexerD*>(this), handle__EolFill, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_EolFill(int style) const {
|
|
|
|
return QsciLexerD::eolFill(static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Font = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QFont font(int style) const override {
|
|
if (handle__Font == 0) {
|
|
return QsciLexerD::font(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QFont* callback_return_value = miqt_exec_callback_QsciLexerD_Font(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Font, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QFont* virtualbase_Font(int style) const {
|
|
|
|
return new QFont(QsciLexerD::font(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__IndentationGuideView = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int indentationGuideView() const override {
|
|
if (handle__IndentationGuideView == 0) {
|
|
return QsciLexerD::indentationGuideView();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_IndentationGuideView(const_cast<MiqtVirtualQsciLexerD*>(this), handle__IndentationGuideView);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_IndentationGuideView() const {
|
|
|
|
return QsciLexerD::indentationGuideView();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Keywords = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* keywords(int set) const override {
|
|
if (handle__Keywords == 0) {
|
|
return QsciLexerD::keywords(set);
|
|
}
|
|
|
|
int sigval1 = set;
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_Keywords(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Keywords, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_Keywords(int set) const {
|
|
|
|
return (const char*) QsciLexerD::keywords(static_cast<int>(set));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DefaultStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int defaultStyle() const override {
|
|
if (handle__DefaultStyle == 0) {
|
|
return QsciLexerD::defaultStyle();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_DefaultStyle(const_cast<MiqtVirtualQsciLexerD*>(this), handle__DefaultStyle);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_DefaultStyle() const {
|
|
|
|
return QsciLexerD::defaultStyle();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Description = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QString description(int style) const override {
|
|
if (handle__Description == 0) {
|
|
return QString(); // Pure virtual, there is no base we can call
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
struct miqt_string callback_return_value = miqt_exec_callback_QsciLexerD_Description(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Description, sigval1);
|
|
QString callback_return_value_QString = QString::fromUtf8(callback_return_value.data, callback_return_value.len);
|
|
|
|
return callback_return_value_QString;
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__Paper = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QColor paper(int style) const override {
|
|
if (handle__Paper == 0) {
|
|
return QsciLexerD::paper(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QColor* callback_return_value = miqt_exec_callback_QsciLexerD_Paper(const_cast<MiqtVirtualQsciLexerD*>(this), handle__Paper, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QColor* virtualbase_Paper(int style) const {
|
|
|
|
return new QColor(QsciLexerD::paper(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DefaultColorWithStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QColor defaultColor(int style) const override {
|
|
if (handle__DefaultColorWithStyle == 0) {
|
|
return QsciLexerD::defaultColor(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QColor* callback_return_value = miqt_exec_callback_QsciLexerD_DefaultColorWithStyle(const_cast<MiqtVirtualQsciLexerD*>(this), handle__DefaultColorWithStyle, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QColor* virtualbase_DefaultColorWithStyle(int style) const {
|
|
|
|
return new QColor(QsciLexerD::defaultColor(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DefaultEolFill = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool defaultEolFill(int style) const override {
|
|
if (handle__DefaultEolFill == 0) {
|
|
return QsciLexerD::defaultEolFill(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QsciLexerD_DefaultEolFill(const_cast<MiqtVirtualQsciLexerD*>(this), handle__DefaultEolFill, sigval1);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_DefaultEolFill(int style) const {
|
|
|
|
return QsciLexerD::defaultEolFill(static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DefaultFontWithStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QFont defaultFont(int style) const override {
|
|
if (handle__DefaultFontWithStyle == 0) {
|
|
return QsciLexerD::defaultFont(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QFont* callback_return_value = miqt_exec_callback_QsciLexerD_DefaultFontWithStyle(const_cast<MiqtVirtualQsciLexerD*>(this), handle__DefaultFontWithStyle, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QFont* virtualbase_DefaultFontWithStyle(int style) const {
|
|
|
|
return new QFont(QsciLexerD::defaultFont(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__DefaultPaperWithStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual QColor defaultPaper(int style) const override {
|
|
if (handle__DefaultPaperWithStyle == 0) {
|
|
return QsciLexerD::defaultPaper(style);
|
|
}
|
|
|
|
int sigval1 = style;
|
|
|
|
QColor* callback_return_value = miqt_exec_callback_QsciLexerD_DefaultPaperWithStyle(const_cast<MiqtVirtualQsciLexerD*>(this), handle__DefaultPaperWithStyle, sigval1);
|
|
|
|
return *callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
QColor* virtualbase_DefaultPaperWithStyle(int style) const {
|
|
|
|
return new QColor(QsciLexerD::defaultPaper(static_cast<int>(style)));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetEditor = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setEditor(QsciScintilla* editor) override {
|
|
if (handle__SetEditor == 0) {
|
|
QsciLexerD::setEditor(editor);
|
|
return;
|
|
}
|
|
|
|
QsciScintilla* sigval1 = editor;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetEditor(this, handle__SetEditor, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetEditor(QsciScintilla* editor) {
|
|
|
|
QsciLexerD::setEditor(editor);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__RefreshProperties = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void refreshProperties() override {
|
|
if (handle__RefreshProperties == 0) {
|
|
QsciLexerD::refreshProperties();
|
|
return;
|
|
}
|
|
|
|
|
|
miqt_exec_callback_QsciLexerD_RefreshProperties(this, handle__RefreshProperties);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_RefreshProperties() {
|
|
|
|
QsciLexerD::refreshProperties();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__StyleBitsNeeded = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual int styleBitsNeeded() const override {
|
|
if (handle__StyleBitsNeeded == 0) {
|
|
return QsciLexerD::styleBitsNeeded();
|
|
}
|
|
|
|
|
|
int callback_return_value = miqt_exec_callback_QsciLexerD_StyleBitsNeeded(const_cast<MiqtVirtualQsciLexerD*>(this), handle__StyleBitsNeeded);
|
|
|
|
return static_cast<int>(callback_return_value);
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
int virtualbase_StyleBitsNeeded() const {
|
|
|
|
return QsciLexerD::styleBitsNeeded();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__WordCharacters = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual const char* wordCharacters() const override {
|
|
if (handle__WordCharacters == 0) {
|
|
return QsciLexerD::wordCharacters();
|
|
}
|
|
|
|
|
|
const char* callback_return_value = miqt_exec_callback_QsciLexerD_WordCharacters(const_cast<MiqtVirtualQsciLexerD*>(this), handle__WordCharacters);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
const char* virtualbase_WordCharacters() const {
|
|
|
|
return (const char*) QsciLexerD::wordCharacters();
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetAutoIndentStyle = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setAutoIndentStyle(int autoindentstyle) override {
|
|
if (handle__SetAutoIndentStyle == 0) {
|
|
QsciLexerD::setAutoIndentStyle(autoindentstyle);
|
|
return;
|
|
}
|
|
|
|
int sigval1 = autoindentstyle;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetAutoIndentStyle(this, handle__SetAutoIndentStyle, sigval1);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetAutoIndentStyle(int autoindentstyle) {
|
|
|
|
QsciLexerD::setAutoIndentStyle(static_cast<int>(autoindentstyle));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetColor = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setColor(const QColor& c, int style) override {
|
|
if (handle__SetColor == 0) {
|
|
QsciLexerD::setColor(c, style);
|
|
return;
|
|
}
|
|
|
|
const QColor& c_ret = c;
|
|
// Cast returned reference into pointer
|
|
QColor* sigval1 = const_cast<QColor*>(&c_ret);
|
|
int sigval2 = style;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetColor(this, handle__SetColor, sigval1, sigval2);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetColor(QColor* c, int style) {
|
|
|
|
QsciLexerD::setColor(*c, static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetEolFill = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setEolFill(bool eoffill, int style) override {
|
|
if (handle__SetEolFill == 0) {
|
|
QsciLexerD::setEolFill(eoffill, style);
|
|
return;
|
|
}
|
|
|
|
bool sigval1 = eoffill;
|
|
int sigval2 = style;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetEolFill(this, handle__SetEolFill, sigval1, sigval2);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetEolFill(bool eoffill, int style) {
|
|
|
|
QsciLexerD::setEolFill(eoffill, static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetFont = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setFont(const QFont& f, int style) override {
|
|
if (handle__SetFont == 0) {
|
|
QsciLexerD::setFont(f, style);
|
|
return;
|
|
}
|
|
|
|
const QFont& f_ret = f;
|
|
// Cast returned reference into pointer
|
|
QFont* sigval1 = const_cast<QFont*>(&f_ret);
|
|
int sigval2 = style;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetFont(this, handle__SetFont, sigval1, sigval2);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetFont(QFont* f, int style) {
|
|
|
|
QsciLexerD::setFont(*f, static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__SetPaper = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual void setPaper(const QColor& c, int style) override {
|
|
if (handle__SetPaper == 0) {
|
|
QsciLexerD::setPaper(c, style);
|
|
return;
|
|
}
|
|
|
|
const QColor& c_ret = c;
|
|
// Cast returned reference into pointer
|
|
QColor* sigval1 = const_cast<QColor*>(&c_ret);
|
|
int sigval2 = style;
|
|
|
|
miqt_exec_callback_QsciLexerD_SetPaper(this, handle__SetPaper, sigval1, sigval2);
|
|
|
|
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
void virtualbase_SetPaper(QColor* c, int style) {
|
|
|
|
QsciLexerD::setPaper(*c, static_cast<int>(style));
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__ReadProperties = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool readProperties(QSettings& qs, const QString& prefix) override {
|
|
if (handle__ReadProperties == 0) {
|
|
return QsciLexerD::readProperties(qs, prefix);
|
|
}
|
|
|
|
QSettings& qs_ret = qs;
|
|
// Cast returned reference into pointer
|
|
QSettings* sigval1 = &qs_ret;
|
|
const QString prefix_ret = prefix;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray prefix_b = prefix_ret.toUtf8();
|
|
struct miqt_string prefix_ms;
|
|
prefix_ms.len = prefix_b.length();
|
|
prefix_ms.data = static_cast<char*>(malloc(prefix_ms.len));
|
|
memcpy(prefix_ms.data, prefix_b.data(), prefix_ms.len);
|
|
struct miqt_string sigval2 = prefix_ms;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QsciLexerD_ReadProperties(this, handle__ReadProperties, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_ReadProperties(QSettings* qs, struct miqt_string prefix) {
|
|
QString prefix_QString = QString::fromUtf8(prefix.data, prefix.len);
|
|
|
|
return QsciLexerD::readProperties(*qs, prefix_QString);
|
|
|
|
}
|
|
|
|
// cgo.Handle value for overwritten implementation
|
|
intptr_t handle__WriteProperties = 0;
|
|
|
|
// Subclass to allow providing a Go implementation
|
|
virtual bool writeProperties(QSettings& qs, const QString& prefix) const override {
|
|
if (handle__WriteProperties == 0) {
|
|
return QsciLexerD::writeProperties(qs, prefix);
|
|
}
|
|
|
|
QSettings& qs_ret = qs;
|
|
// Cast returned reference into pointer
|
|
QSettings* sigval1 = &qs_ret;
|
|
const QString prefix_ret = prefix;
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray prefix_b = prefix_ret.toUtf8();
|
|
struct miqt_string prefix_ms;
|
|
prefix_ms.len = prefix_b.length();
|
|
prefix_ms.data = static_cast<char*>(malloc(prefix_ms.len));
|
|
memcpy(prefix_ms.data, prefix_b.data(), prefix_ms.len);
|
|
struct miqt_string sigval2 = prefix_ms;
|
|
|
|
bool callback_return_value = miqt_exec_callback_QsciLexerD_WriteProperties(const_cast<MiqtVirtualQsciLexerD*>(this), handle__WriteProperties, sigval1, sigval2);
|
|
|
|
return callback_return_value;
|
|
}
|
|
|
|
// Wrapper to allow calling protected method
|
|
bool virtualbase_WriteProperties(QSettings* qs, struct miqt_string prefix) const {
|
|
QString prefix_QString = QString::fromUtf8(prefix.data, prefix.len);
|
|
|
|
return QsciLexerD::writeProperties(*qs, prefix_QString);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
QsciLexerD* QsciLexerD_new() {
|
|
return new MiqtVirtualQsciLexerD();
|
|
}
|
|
|
|
QsciLexerD* QsciLexerD_new2(QObject* parent) {
|
|
return new MiqtVirtualQsciLexerD(parent);
|
|
}
|
|
|
|
void QsciLexerD_virtbase(QsciLexerD* src, QsciLexer** outptr_QsciLexer) {
|
|
*outptr_QsciLexer = static_cast<QsciLexer*>(src);
|
|
}
|
|
|
|
QMetaObject* QsciLexerD_MetaObject(const QsciLexerD* self) {
|
|
return (QMetaObject*) self->metaObject();
|
|
}
|
|
|
|
void* QsciLexerD_Metacast(QsciLexerD* self, const char* param1) {
|
|
return self->qt_metacast(param1);
|
|
}
|
|
|
|
struct miqt_string QsciLexerD_Tr(const char* s) {
|
|
QString _ret = QsciLexerD::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 QsciLexerD_TrUtf8(const char* s) {
|
|
QString _ret = QsciLexerD::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* QsciLexerD_Language(const QsciLexerD* self) {
|
|
return (const char*) self->language();
|
|
}
|
|
|
|
const char* QsciLexerD_Lexer(const QsciLexerD* self) {
|
|
return (const char*) self->lexer();
|
|
}
|
|
|
|
struct miqt_array /* of struct miqt_string */ QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self) {
|
|
QStringList _ret = self->autoCompletionWordSeparators();
|
|
// Convert QList<> from C++ memory to manually-managed C memory
|
|
struct miqt_string* _arr = static_cast<struct miqt_string*>(malloc(sizeof(struct miqt_string) * _ret.length()));
|
|
for (size_t i = 0, e = _ret.length(); i < e; ++i) {
|
|
QString _lv_ret = _ret[i];
|
|
// Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory
|
|
QByteArray _lv_b = _lv_ret.toUtf8();
|
|
struct miqt_string _lv_ms;
|
|
_lv_ms.len = _lv_b.length();
|
|
_lv_ms.data = static_cast<char*>(malloc(_lv_ms.len));
|
|
memcpy(_lv_ms.data, _lv_b.data(), _lv_ms.len);
|
|
_arr[i] = _lv_ms;
|
|
}
|
|
struct miqt_array _out;
|
|
_out.len = _ret.length();
|
|
_out.data = static_cast<void*>(_arr);
|
|
return _out;
|
|
}
|
|
|
|
const char* QsciLexerD_BlockEnd(const QsciLexerD* self) {
|
|
return (const char*) self->blockEnd();
|
|
}
|
|
|
|
const char* QsciLexerD_BlockStart(const QsciLexerD* self) {
|
|
return (const char*) self->blockStart();
|
|
}
|
|
|
|
const char* QsciLexerD_BlockStartKeyword(const QsciLexerD* self) {
|
|
return (const char*) self->blockStartKeyword();
|
|
}
|
|
|
|
int QsciLexerD_BraceStyle(const QsciLexerD* self) {
|
|
return self->braceStyle();
|
|
}
|
|
|
|
const char* QsciLexerD_WordCharacters(const QsciLexerD* self) {
|
|
return (const char*) self->wordCharacters();
|
|
}
|
|
|
|
QColor* QsciLexerD_DefaultColor(const QsciLexerD* self, int style) {
|
|
return new QColor(self->defaultColor(static_cast<int>(style)));
|
|
}
|
|
|
|
bool QsciLexerD_DefaultEolFill(const QsciLexerD* self, int style) {
|
|
return self->defaultEolFill(static_cast<int>(style));
|
|
}
|
|
|
|
QFont* QsciLexerD_DefaultFont(const QsciLexerD* self, int style) {
|
|
return new QFont(self->defaultFont(static_cast<int>(style)));
|
|
}
|
|
|
|
QColor* QsciLexerD_DefaultPaper(const QsciLexerD* self, int style) {
|
|
return new QColor(self->defaultPaper(static_cast<int>(style)));
|
|
}
|
|
|
|
const char* QsciLexerD_Keywords(const QsciLexerD* self, int set) {
|
|
return (const char*) self->keywords(static_cast<int>(set));
|
|
}
|
|
|
|
struct miqt_string QsciLexerD_Description(const QsciLexerD* 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 QsciLexerD_RefreshProperties(QsciLexerD* self) {
|
|
self->refreshProperties();
|
|
}
|
|
|
|
bool QsciLexerD_FoldAtElse(const QsciLexerD* self) {
|
|
return self->foldAtElse();
|
|
}
|
|
|
|
bool QsciLexerD_FoldComments(const QsciLexerD* self) {
|
|
return self->foldComments();
|
|
}
|
|
|
|
bool QsciLexerD_FoldCompact(const QsciLexerD* self) {
|
|
return self->foldCompact();
|
|
}
|
|
|
|
void QsciLexerD_SetFoldAtElse(QsciLexerD* self, bool fold) {
|
|
self->setFoldAtElse(fold);
|
|
}
|
|
|
|
void QsciLexerD_SetFoldComments(QsciLexerD* self, bool fold) {
|
|
self->setFoldComments(fold);
|
|
}
|
|
|
|
void QsciLexerD_SetFoldCompact(QsciLexerD* self, bool fold) {
|
|
self->setFoldCompact(fold);
|
|
}
|
|
|
|
struct miqt_string QsciLexerD_Tr2(const char* s, const char* c) {
|
|
QString _ret = QsciLexerD::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 QsciLexerD_Tr3(const char* s, const char* c, int n) {
|
|
QString _ret = QsciLexerD::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 QsciLexerD_TrUtf82(const char* s, const char* c) {
|
|
QString _ret = QsciLexerD::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 QsciLexerD_TrUtf83(const char* s, const char* c, int n) {
|
|
QString _ret = QsciLexerD::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;
|
|
}
|
|
|
|
const char* QsciLexerD_BlockEnd1(const QsciLexerD* self, int* style) {
|
|
return (const char*) self->blockEnd(static_cast<int*>(style));
|
|
}
|
|
|
|
const char* QsciLexerD_BlockStart1(const QsciLexerD* self, int* style) {
|
|
return (const char*) self->blockStart(static_cast<int*>(style));
|
|
}
|
|
|
|
const char* QsciLexerD_BlockStartKeyword1(const QsciLexerD* self, int* style) {
|
|
return (const char*) self->blockStartKeyword(static_cast<int*>(style));
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetFoldAtElse(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetFoldAtElse = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetFoldAtElse(void* self, bool fold) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetFoldAtElse(fold);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetFoldComments(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetFoldComments = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetFoldComments(void* self, bool fold) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetFoldComments(fold);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetFoldCompact(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetFoldCompact = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetFoldCompact(void* self, bool fold) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetFoldCompact(fold);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Language(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Language = slot;
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Lexer(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Lexer = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_Lexer(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_Lexer();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_LexerId(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__LexerId = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_LexerId(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_LexerId();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_AutoCompletionFillups(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__AutoCompletionFillups = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_AutoCompletionFillups(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_AutoCompletionFillups();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_AutoCompletionWordSeparators(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__AutoCompletionWordSeparators = slot;
|
|
}
|
|
|
|
struct miqt_array /* of struct miqt_string */ QsciLexerD_virtualbase_AutoCompletionWordSeparators(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_AutoCompletionWordSeparators();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_BlockEnd(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__BlockEnd = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_BlockEnd(const void* self, int* style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_BlockEnd(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_BlockLookback(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__BlockLookback = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_BlockLookback(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_BlockLookback();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_BlockStart(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__BlockStart = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_BlockStart(const void* self, int* style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_BlockStart(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_BlockStartKeyword(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__BlockStartKeyword = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_BlockStartKeyword(const void* self, int* style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_BlockStartKeyword(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_BraceStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__BraceStyle = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_BraceStyle(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_BraceStyle();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_CaseSensitive(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__CaseSensitive = slot;
|
|
}
|
|
|
|
bool QsciLexerD_virtualbase_CaseSensitive(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_CaseSensitive();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Color(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Color = slot;
|
|
}
|
|
|
|
QColor* QsciLexerD_virtualbase_Color(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_Color(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_EolFill(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__EolFill = slot;
|
|
}
|
|
|
|
bool QsciLexerD_virtualbase_EolFill(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_EolFill(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Font(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Font = slot;
|
|
}
|
|
|
|
QFont* QsciLexerD_virtualbase_Font(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_Font(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_IndentationGuideView(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__IndentationGuideView = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_IndentationGuideView(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_IndentationGuideView();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Keywords(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Keywords = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_Keywords(const void* self, int set) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_Keywords(set);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_DefaultStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__DefaultStyle = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_DefaultStyle(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_DefaultStyle();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Description(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Description = slot;
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_Paper(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__Paper = slot;
|
|
}
|
|
|
|
QColor* QsciLexerD_virtualbase_Paper(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_Paper(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_DefaultColorWithStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__DefaultColorWithStyle = slot;
|
|
}
|
|
|
|
QColor* QsciLexerD_virtualbase_DefaultColorWithStyle(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_DefaultColorWithStyle(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_DefaultEolFill(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__DefaultEolFill = slot;
|
|
}
|
|
|
|
bool QsciLexerD_virtualbase_DefaultEolFill(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_DefaultEolFill(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_DefaultFontWithStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__DefaultFontWithStyle = slot;
|
|
}
|
|
|
|
QFont* QsciLexerD_virtualbase_DefaultFontWithStyle(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_DefaultFontWithStyle(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_DefaultPaperWithStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__DefaultPaperWithStyle = slot;
|
|
}
|
|
|
|
QColor* QsciLexerD_virtualbase_DefaultPaperWithStyle(const void* self, int style) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_DefaultPaperWithStyle(style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetEditor(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetEditor = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetEditor(void* self, QsciScintilla* editor) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetEditor(editor);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_RefreshProperties(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__RefreshProperties = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_RefreshProperties(void* self) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_RefreshProperties();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_StyleBitsNeeded(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__StyleBitsNeeded = slot;
|
|
}
|
|
|
|
int QsciLexerD_virtualbase_StyleBitsNeeded(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_StyleBitsNeeded();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_WordCharacters(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__WordCharacters = slot;
|
|
}
|
|
|
|
const char* QsciLexerD_virtualbase_WordCharacters(const void* self) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_WordCharacters();
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetAutoIndentStyle(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetAutoIndentStyle = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetAutoIndentStyle(void* self, int autoindentstyle) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetAutoIndentStyle(autoindentstyle);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetColor(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetColor = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetColor(void* self, QColor* c, int style) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetColor(c, style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetEolFill(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetEolFill = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetEolFill(void* self, bool eoffill, int style) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetEolFill(eoffill, style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetFont(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetFont = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetFont(void* self, QFont* f, int style) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetFont(f, style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_SetPaper(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__SetPaper = slot;
|
|
}
|
|
|
|
void QsciLexerD_virtualbase_SetPaper(void* self, QColor* c, int style) {
|
|
( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_SetPaper(c, style);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_ReadProperties(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__ReadProperties = slot;
|
|
}
|
|
|
|
bool QsciLexerD_virtualbase_ReadProperties(void* self, QSettings* qs, struct miqt_string prefix) {
|
|
return ( (MiqtVirtualQsciLexerD*)(self) )->virtualbase_ReadProperties(qs, prefix);
|
|
}
|
|
|
|
void QsciLexerD_override_virtual_WriteProperties(void* self, intptr_t slot) {
|
|
dynamic_cast<MiqtVirtualQsciLexerD*>( (QsciLexerD*)(self) )->handle__WriteProperties = slot;
|
|
}
|
|
|
|
bool QsciLexerD_virtualbase_WriteProperties(const void* self, QSettings* qs, struct miqt_string prefix) {
|
|
return ( (const MiqtVirtualQsciLexerD*)(self) )->virtualbase_WriteProperties(qs, prefix);
|
|
}
|
|
|
|
void QsciLexerD_Delete(QsciLexerD* self, bool isSubclass) {
|
|
if (isSubclass) {
|
|
delete dynamic_cast<MiqtVirtualQsciLexerD*>( self );
|
|
} else {
|
|
delete self;
|
|
}
|
|
}
|
|
|