mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
qt: rebuild (updated header guards, container comments, add QPair)
This commit is contained in:
parent
2f99f450a5
commit
9583866dff
@ -1899,6 +1899,20 @@ struct miqt_string ScintillaEdit_TextReturner(const ScintillaEdit* self, int mes
|
||||
return _ms;
|
||||
}
|
||||
|
||||
struct miqt_map /* tuple of int and int */ ScintillaEdit_FindText(ScintillaEdit* self, int flags, const char* text, int cpMin, int cpMax) {
|
||||
QPair<int, int> _ret = self->find_text(static_cast<int>(flags), text, static_cast<int>(cpMin), static_cast<int>(cpMax));
|
||||
// Convert QPair<> from C++ memory to manually-managed C memory
|
||||
int* _first_arr = static_cast<int*>(malloc(sizeof(int)));
|
||||
int* _second_arr = static_cast<int*>(malloc(sizeof(int)));
|
||||
_first_arr[0] = _ret.first;
|
||||
_second_arr[0] = _ret.second;
|
||||
struct miqt_map _out;
|
||||
_out.len = 1;
|
||||
_out.keys = static_cast<void*>(_first_arr);
|
||||
_out.values = static_cast<void*>(_second_arr);
|
||||
return _out;
|
||||
}
|
||||
|
||||
struct miqt_string ScintillaEdit_GetTextRange(ScintillaEdit* self, int start, int end) {
|
||||
QByteArray _qb = self->get_text_range(static_cast<int>(start), static_cast<int>(end));
|
||||
struct miqt_string _ms;
|
||||
@ -1916,6 +1930,20 @@ void ScintillaEdit_SetDoc(ScintillaEdit* self, ScintillaDocument* pdoc_) {
|
||||
self->set_doc(pdoc_);
|
||||
}
|
||||
|
||||
struct miqt_map /* tuple of int and int */ ScintillaEdit_FindText2(ScintillaEdit* self, int flags, const char* text, int cpMin, int cpMax) {
|
||||
QPair<int, int> _ret = self->findText(static_cast<int>(flags), text, static_cast<int>(cpMin), static_cast<int>(cpMax));
|
||||
// Convert QPair<> from C++ memory to manually-managed C memory
|
||||
int* _first_arr = static_cast<int*>(malloc(sizeof(int)));
|
||||
int* _second_arr = static_cast<int*>(malloc(sizeof(int)));
|
||||
_first_arr[0] = _ret.first;
|
||||
_second_arr[0] = _ret.second;
|
||||
struct miqt_map _out;
|
||||
_out.len = 1;
|
||||
_out.keys = static_cast<void*>(_first_arr);
|
||||
_out.values = static_cast<void*>(_second_arr);
|
||||
return _out;
|
||||
}
|
||||
|
||||
struct miqt_string ScintillaEdit_TextRange(ScintillaEdit* self, int start, int end) {
|
||||
QByteArray _qb = self->textRange(static_cast<int>(start), static_cast<int>(end));
|
||||
struct miqt_string _ms;
|
||||
|
@ -5831,6 +5831,25 @@ func (this *ScintillaEdit) TextReturner(message int, wParam uintptr) []byte {
|
||||
return _ret
|
||||
}
|
||||
|
||||
func (this *ScintillaEdit) FindText(flags int, text string, cpMin int, cpMax int) struct {
|
||||
First int
|
||||
Second int
|
||||
} {
|
||||
text_Cstring := C.CString(text)
|
||||
defer C.free(unsafe.Pointer(text_Cstring))
|
||||
var _mm C.struct_miqt_map = C.ScintillaEdit_FindText(this.h, (C.int)(flags), text_Cstring, (C.int)(cpMin), (C.int)(cpMax))
|
||||
_First_CArray := (*[0xffff]C.int)(unsafe.Pointer(_mm.keys))
|
||||
_Second_CArray := (*[0xffff]C.int)(unsafe.Pointer(_mm.values))
|
||||
_entry_First := (int)(_First_CArray[0])
|
||||
|
||||
_entry_Second := (int)(_Second_CArray[0])
|
||||
|
||||
return struct {
|
||||
First int
|
||||
Second int
|
||||
}{First: _entry_First, Second: _entry_Second}
|
||||
}
|
||||
|
||||
func (this *ScintillaEdit) GetTextRange(start int, end int) []byte {
|
||||
var _bytearray C.struct_miqt_string = C.ScintillaEdit_GetTextRange(this.h, (C.int)(start), (C.int)(end))
|
||||
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
||||
@ -5846,6 +5865,25 @@ func (this *ScintillaEdit) SetDoc(pdoc_ *ScintillaDocument) {
|
||||
C.ScintillaEdit_SetDoc(this.h, pdoc_.cPointer())
|
||||
}
|
||||
|
||||
func (this *ScintillaEdit) FindText2(flags int, text string, cpMin int, cpMax int) struct {
|
||||
First int
|
||||
Second int
|
||||
} {
|
||||
text_Cstring := C.CString(text)
|
||||
defer C.free(unsafe.Pointer(text_Cstring))
|
||||
var _mm C.struct_miqt_map = C.ScintillaEdit_FindText2(this.h, (C.int)(flags), text_Cstring, (C.int)(cpMin), (C.int)(cpMax))
|
||||
_First_CArray := (*[0xffff]C.int)(unsafe.Pointer(_mm.keys))
|
||||
_Second_CArray := (*[0xffff]C.int)(unsafe.Pointer(_mm.values))
|
||||
_entry_First := (int)(_First_CArray[0])
|
||||
|
||||
_entry_Second := (int)(_Second_CArray[0])
|
||||
|
||||
return struct {
|
||||
First int
|
||||
Second int
|
||||
}{First: _entry_First, Second: _entry_Second}
|
||||
}
|
||||
|
||||
func (this *ScintillaEdit) TextRange(start int, end int) []byte {
|
||||
var _bytearray C.struct_miqt_string = C.ScintillaEdit_TextRange(this.h, (C.int)(start), (C.int)(end))
|
||||
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_SCINTILLAEDIT_H
|
||||
#define GEN_SCINTILLAEDIT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_EXTRAS_SCINTILLAEDIT_GEN_SCINTILLAEDIT_H
|
||||
#define MIQT_QT_EXTRAS_SCINTILLAEDIT_GEN_SCINTILLAEDIT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -673,9 +674,11 @@ void* ScintillaEdit_Metacast(ScintillaEdit* self, const char* param1);
|
||||
struct miqt_string ScintillaEdit_Tr(const char* s);
|
||||
struct miqt_string ScintillaEdit_TrUtf8(const char* s);
|
||||
struct miqt_string ScintillaEdit_TextReturner(const ScintillaEdit* self, int message, uintptr_t wParam);
|
||||
struct miqt_map /* tuple of int and int */ ScintillaEdit_FindText(ScintillaEdit* self, int flags, const char* text, int cpMin, int cpMax);
|
||||
struct miqt_string ScintillaEdit_GetTextRange(ScintillaEdit* self, int start, int end);
|
||||
ScintillaDocument* ScintillaEdit_GetDoc(ScintillaEdit* self);
|
||||
void ScintillaEdit_SetDoc(ScintillaEdit* self, ScintillaDocument* pdoc_);
|
||||
struct miqt_map /* tuple of int and int */ ScintillaEdit_FindText2(ScintillaEdit* self, int flags, const char* text, int cpMin, int cpMax);
|
||||
struct miqt_string ScintillaEdit_TextRange(ScintillaEdit* self, int start, int end);
|
||||
long ScintillaEdit_FormatRange(ScintillaEdit* self, bool draw, QPaintDevice* target, QPaintDevice* measure, QRect* print_rect, QRect* page_rect, long range_start, long range_end);
|
||||
long ScintillaEdit_FormatRange2(ScintillaEdit* self, bool draw, QPaintDevice* target, QPaintDevice* measure, QRect* print_rect, QRect* page_rect, long range_start, long range_end);
|
||||
|
@ -64,7 +64,7 @@ void QsciAbstractAPIs_AutoCompletionSelected(QsciAbstractAPIs* self, struct miqt
|
||||
self->autoCompletionSelected(selection_QString);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
QStringList context_QList;
|
||||
context_QList.reserve(context.len);
|
||||
struct miqt_string* context_arr = static_cast<struct miqt_string*>(context.data);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIABSTRACTAPIS_H
|
||||
#define GEN_QSCIABSTRACTAPIS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIABSTRACTAPIS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIABSTRACTAPIS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -30,7 +31,7 @@ struct miqt_string QsciAbstractAPIs_TrUtf8(const char* s);
|
||||
QsciLexer* QsciAbstractAPIs_Lexer(const QsciAbstractAPIs* self);
|
||||
void QsciAbstractAPIs_UpdateAutoCompletionList(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, struct miqt_array /* of struct miqt_string */ list);
|
||||
void QsciAbstractAPIs_AutoCompletionSelected(QsciAbstractAPIs* self, struct miqt_string selection);
|
||||
struct miqt_array QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_string QsciAbstractAPIs_Tr2(const char* s, const char* c);
|
||||
struct miqt_string QsciAbstractAPIs_Tr3(const char* s, const char* c, int n);
|
||||
struct miqt_string QsciAbstractAPIs_TrUtf82(const char* s, const char* c);
|
||||
|
@ -115,7 +115,7 @@ void QsciAPIs_AutoCompletionSelected(QsciAPIs* self, struct miqt_string sel) {
|
||||
self->autoCompletionSelected(sel_QString);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
QStringList context_QList;
|
||||
context_QList.reserve(context.len);
|
||||
struct miqt_string* context_arr = static_cast<struct miqt_string*>(context.data);
|
||||
@ -152,7 +152,7 @@ bool QsciAPIs_Event(QsciAPIs* self, QEvent* e) {
|
||||
return self->event(e);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAPIs_InstalledAPIFiles(const QsciAPIs* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_InstalledAPIFiles(const QsciAPIs* self) {
|
||||
QStringList _ret = self->installedAPIFiles();
|
||||
// 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIAPIS_H
|
||||
#define GEN_QSCIAPIS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIAPIS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIAPIS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -42,9 +43,9 @@ bool QsciAPIs_LoadPrepared(QsciAPIs* self);
|
||||
bool QsciAPIs_SavePrepared(const QsciAPIs* self);
|
||||
void QsciAPIs_UpdateAutoCompletionList(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, struct miqt_array /* of struct miqt_string */ list);
|
||||
void QsciAPIs_AutoCompletionSelected(QsciAPIs* self, struct miqt_string sel);
|
||||
struct miqt_array QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
bool QsciAPIs_Event(QsciAPIs* self, QEvent* e);
|
||||
struct miqt_array QsciAPIs_InstalledAPIFiles(const QsciAPIs* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_InstalledAPIFiles(const QsciAPIs* self);
|
||||
void QsciAPIs_ApiPreparationCancelled(QsciAPIs* self);
|
||||
void QsciAPIs_connect_ApiPreparationCancelled(QsciAPIs* self, intptr_t slot);
|
||||
void QsciAPIs_ApiPreparationStarted(QsciAPIs* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCICOMMAND_H
|
||||
#define GEN_QSCICOMMAND_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCICOMMAND_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCICOMMAND_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -12,7 +12,7 @@ bool QsciCommandSet_WriteSettings(QsciCommandSet* self, QSettings* qs) {
|
||||
return self->writeSettings(*qs);
|
||||
}
|
||||
|
||||
struct miqt_array QsciCommandSet_Commands(QsciCommandSet* self) {
|
||||
struct miqt_array /* of QsciCommand* */ QsciCommandSet_Commands(QsciCommandSet* self) {
|
||||
QList<QsciCommand *>& _ret = self->commands();
|
||||
// Convert QList<> from C++ memory to manually-managed C memory
|
||||
QsciCommand** _arr = static_cast<QsciCommand**>(malloc(sizeof(QsciCommand*) * _ret.length()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCICOMMANDSET_H
|
||||
#define GEN_QSCICOMMANDSET_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCICOMMANDSET_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCICOMMANDSET_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -25,7 +26,7 @@ typedef struct QsciCommandSet QsciCommandSet;
|
||||
|
||||
bool QsciCommandSet_ReadSettings(QsciCommandSet* self, QSettings* qs);
|
||||
bool QsciCommandSet_WriteSettings(QsciCommandSet* self, QSettings* qs);
|
||||
struct miqt_array QsciCommandSet_Commands(QsciCommandSet* self);
|
||||
struct miqt_array /* of QsciCommand* */ QsciCommandSet_Commands(QsciCommandSet* self);
|
||||
void QsciCommandSet_ClearKeys(QsciCommandSet* self);
|
||||
void QsciCommandSet_ClearAlternateKeys(QsciCommandSet* self);
|
||||
QsciCommand* QsciCommandSet_BoundTo(const QsciCommandSet* self, int key);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIDOCUMENT_H
|
||||
#define GEN_QSCIDOCUMENT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIDOCUMENT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIDOCUMENT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -60,7 +60,7 @@ const char* QsciLexer_AutoCompletionFillups(const QsciLexer* self) {
|
||||
return (const char*) self->autoCompletionFillups();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexer_AutoCompletionWordSeparators(const QsciLexer* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXER_H
|
||||
#define GEN_QSCILEXER_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXER_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXER_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -40,7 +41,7 @@ const char* QsciLexer_Lexer(const QsciLexer* self);
|
||||
int QsciLexer_LexerId(const QsciLexer* self);
|
||||
QsciAbstractAPIs* QsciLexer_Apis(const QsciLexer* self);
|
||||
const char* QsciLexer_AutoCompletionFillups(const QsciLexer* self);
|
||||
struct miqt_array QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self);
|
||||
int QsciLexer_AutoIndentStyle(QsciLexer* self);
|
||||
const char* QsciLexer_BlockEnd(const QsciLexer* self);
|
||||
int QsciLexer_BlockLookback(const QsciLexer* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERAVS_H
|
||||
#define GEN_QSCILEXERAVS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERAVS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERAVS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERBASH_H
|
||||
#define GEN_QSCILEXERBASH_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERBASH_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERBASH_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERBATCH_H
|
||||
#define GEN_QSCILEXERBATCH_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERBATCH_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERBATCH_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCMAKE_H
|
||||
#define GEN_QSCILEXERCMAKE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCMAKE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCMAKE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerCoffeeScript_Lexer(const QsciLexerCoffeeScript* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#define GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerCoffeeScript_Tr(const char* s);
|
||||
struct miqt_string QsciLexerCoffeeScript_TrUtf8(const char* s);
|
||||
const char* QsciLexerCoffeeScript_Language(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_Lexer(const QsciLexerCoffeeScript* self);
|
||||
struct miqt_array QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockEnd(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockStart(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockStartKeyword(const QsciLexerCoffeeScript* self);
|
||||
|
@ -60,7 +60,7 @@ const char* QsciLexerCPP_Lexer(const QsciLexerCPP* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCPP_H
|
||||
#define GEN_QSCILEXERCPP_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCPP_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCPP_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -36,7 +37,7 @@ struct miqt_string QsciLexerCPP_Tr(const char* s);
|
||||
struct miqt_string QsciLexerCPP_TrUtf8(const char* s);
|
||||
const char* QsciLexerCPP_Language(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_Lexer(const QsciLexerCPP* self);
|
||||
struct miqt_array QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockEnd(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockStart(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockStartKeyword(const QsciLexerCPP* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCSHARP_H
|
||||
#define GEN_QSCILEXERCSHARP_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCSHARP_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCSHARP_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCSS_H
|
||||
#define GEN_QSCILEXERCSS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCSS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCSS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCUSTOM_H
|
||||
#define GEN_QSCILEXERCUSTOM_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCUSTOM_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERCUSTOM_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerD_Lexer(const QsciLexerD* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self) {
|
||||
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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERD_H
|
||||
#define GEN_QSCILEXERD_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERD_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERD_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerD_Tr(const char* s);
|
||||
struct miqt_string QsciLexerD_TrUtf8(const char* s);
|
||||
const char* QsciLexerD_Language(const QsciLexerD* self);
|
||||
const char* QsciLexerD_Lexer(const QsciLexerD* self);
|
||||
struct miqt_array QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockEnd(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockStart(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockStartKeyword(const QsciLexerD* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERDIFF_H
|
||||
#define GEN_QSCILEXERDIFF_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERDIFF_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERDIFF_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXEREDIFACT_H
|
||||
#define GEN_QSCILEXEREDIFACT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEREDIFACT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEREDIFACT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERFORTRAN_H
|
||||
#define GEN_QSCILEXERFORTRAN_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERFORTRAN_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERFORTRAN_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERFORTRAN77_H
|
||||
#define GEN_QSCILEXERFORTRAN77_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERFORTRAN77_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERFORTRAN77_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERHTML_H
|
||||
#define GEN_QSCILEXERHTML_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERHTML_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERHTML_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERIDL_H
|
||||
#define GEN_QSCILEXERIDL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERIDL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERIDL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJAVA_H
|
||||
#define GEN_QSCILEXERJAVA_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJAVA_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJAVA_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJAVASCRIPT_H
|
||||
#define GEN_QSCILEXERJAVASCRIPT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJAVASCRIPT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJAVASCRIPT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJSON_H
|
||||
#define GEN_QSCILEXERJSON_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJSON_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERJSON_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerLua_Lexer(const QsciLexerLua* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerLua_AutoCompletionWordSeparators(const QsciLexerLua* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerLua_AutoCompletionWordSeparators(const QsciLexerLua* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERLUA_H
|
||||
#define GEN_QSCILEXERLUA_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERLUA_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERLUA_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerLua_Tr(const char* s);
|
||||
struct miqt_string QsciLexerLua_TrUtf8(const char* s);
|
||||
const char* QsciLexerLua_Language(const QsciLexerLua* self);
|
||||
const char* QsciLexerLua_Lexer(const QsciLexerLua* self);
|
||||
struct miqt_array QsciLexerLua_AutoCompletionWordSeparators(const QsciLexerLua* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerLua_AutoCompletionWordSeparators(const QsciLexerLua* self);
|
||||
const char* QsciLexerLua_BlockStart(const QsciLexerLua* self);
|
||||
int QsciLexerLua_BraceStyle(const QsciLexerLua* self);
|
||||
QColor* QsciLexerLua_DefaultColor(const QsciLexerLua* self, int style);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERMAKEFILE_H
|
||||
#define GEN_QSCILEXERMAKEFILE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMAKEFILE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMAKEFILE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERMARKDOWN_H
|
||||
#define GEN_QSCILEXERMARKDOWN_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMARKDOWN_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMARKDOWN_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERMATLAB_H
|
||||
#define GEN_QSCILEXERMATLAB_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMATLAB_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERMATLAB_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXEROCTAVE_H
|
||||
#define GEN_QSCILEXEROCTAVE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEROCTAVE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXEROCTAVE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerPascal_Lexer(const QsciLexerPascal* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerPascal_AutoCompletionWordSeparators(const QsciLexerPascal* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPascal_AutoCompletionWordSeparators(const QsciLexerPascal* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPASCAL_H
|
||||
#define GEN_QSCILEXERPASCAL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPASCAL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPASCAL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerPascal_Tr(const char* s);
|
||||
struct miqt_string QsciLexerPascal_TrUtf8(const char* s);
|
||||
const char* QsciLexerPascal_Language(const QsciLexerPascal* self);
|
||||
const char* QsciLexerPascal_Lexer(const QsciLexerPascal* self);
|
||||
struct miqt_array QsciLexerPascal_AutoCompletionWordSeparators(const QsciLexerPascal* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPascal_AutoCompletionWordSeparators(const QsciLexerPascal* self);
|
||||
const char* QsciLexerPascal_BlockEnd(const QsciLexerPascal* self);
|
||||
const char* QsciLexerPascal_BlockStart(const QsciLexerPascal* self);
|
||||
const char* QsciLexerPascal_BlockStartKeyword(const QsciLexerPascal* self);
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerPerl_Lexer(const QsciLexerPerl* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerPerl_AutoCompletionWordSeparators(const QsciLexerPerl* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPerl_AutoCompletionWordSeparators(const QsciLexerPerl* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPERL_H
|
||||
#define GEN_QSCILEXERPERL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPERL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPERL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerPerl_Tr(const char* s);
|
||||
struct miqt_string QsciLexerPerl_TrUtf8(const char* s);
|
||||
const char* QsciLexerPerl_Language(const QsciLexerPerl* self);
|
||||
const char* QsciLexerPerl_Lexer(const QsciLexerPerl* self);
|
||||
struct miqt_array QsciLexerPerl_AutoCompletionWordSeparators(const QsciLexerPerl* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPerl_AutoCompletionWordSeparators(const QsciLexerPerl* self);
|
||||
const char* QsciLexerPerl_BlockEnd(const QsciLexerPerl* self);
|
||||
const char* QsciLexerPerl_BlockStart(const QsciLexerPerl* self);
|
||||
int QsciLexerPerl_BraceStyle(const QsciLexerPerl* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPO_H
|
||||
#define GEN_QSCILEXERPO_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPO_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPO_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPOSTSCRIPT_H
|
||||
#define GEN_QSCILEXERPOSTSCRIPT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPOSTSCRIPT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPOSTSCRIPT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPOV_H
|
||||
#define GEN_QSCILEXERPOV_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPOV_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPOV_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPROPERTIES_H
|
||||
#define GEN_QSCILEXERPROPERTIES_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPROPERTIES_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPROPERTIES_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -56,7 +56,7 @@ const char* QsciLexerPython_Lexer(const QsciLexerPython* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerPython_AutoCompletionWordSeparators(const QsciLexerPython* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPython_AutoCompletionWordSeparators(const QsciLexerPython* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERPYTHON_H
|
||||
#define GEN_QSCILEXERPYTHON_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPYTHON_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERPYTHON_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ struct miqt_string QsciLexerPython_Tr(const char* s);
|
||||
struct miqt_string QsciLexerPython_TrUtf8(const char* s);
|
||||
const char* QsciLexerPython_Language(const QsciLexerPython* self);
|
||||
const char* QsciLexerPython_Lexer(const QsciLexerPython* self);
|
||||
struct miqt_array QsciLexerPython_AutoCompletionWordSeparators(const QsciLexerPython* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerPython_AutoCompletionWordSeparators(const QsciLexerPython* self);
|
||||
int QsciLexerPython_BlockLookback(const QsciLexerPython* self);
|
||||
const char* QsciLexerPython_BlockStart(const QsciLexerPython* self);
|
||||
int QsciLexerPython_BraceStyle(const QsciLexerPython* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERRUBY_H
|
||||
#define GEN_QSCILEXERRUBY_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERRUBY_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERRUBY_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERSPICE_H
|
||||
#define GEN_QSCILEXERSPICE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERSPICE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERSPICE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERSQL_H
|
||||
#define GEN_QSCILEXERSQL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERSQL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERSQL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERTCL_H
|
||||
#define GEN_QSCILEXERTCL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERTCL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERTCL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERTEX_H
|
||||
#define GEN_QSCILEXERTEX_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERTEX_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERTEX_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERVERILOG_H
|
||||
#define GEN_QSCILEXERVERILOG_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERVERILOG_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERVERILOG_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERVHDL_H
|
||||
#define GEN_QSCILEXERVHDL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERVHDL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERVHDL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERXML_H
|
||||
#define GEN_QSCILEXERXML_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERXML_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERXML_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERYAML_H
|
||||
#define GEN_QSCILEXERYAML_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERYAML_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCILEXERYAML_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIMACRO_H
|
||||
#define GEN_QSCIMACRO_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIMACRO_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIMACRO_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIPRINTER_H
|
||||
#define GEN_QSCIPRINTER_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIPRINTER_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCIPRINTER_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -54,7 +54,7 @@ struct miqt_string QsciScintilla_TrUtf8(const char* s) {
|
||||
return _ms;
|
||||
}
|
||||
|
||||
struct miqt_array QsciScintilla_ApiContext(QsciScintilla* self, int pos, int* context_start, int* last_word_start) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciScintilla_ApiContext(QsciScintilla* self, int pos, int* context_start, int* last_word_start) {
|
||||
QStringList _ret = self->apiContext(static_cast<int>(pos), static_cast<int&>(*context_start), static_cast<int&>(*last_word_start));
|
||||
// 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()));
|
||||
@ -206,7 +206,7 @@ QColor* QsciScintilla_Color(const QsciScintilla* self) {
|
||||
return new QColor(self->color());
|
||||
}
|
||||
|
||||
struct miqt_array QsciScintilla_ContractedFolds(const QsciScintilla* self) {
|
||||
struct miqt_array /* of int */ QsciScintilla_ContractedFolds(const QsciScintilla* self) {
|
||||
QList<int> _ret = self->contractedFolds();
|
||||
// Convert QList<> from C++ memory to manually-managed C memory
|
||||
int* _arr = static_cast<int*>(malloc(sizeof(int) * _ret.length()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCISCINTILLA_H
|
||||
#define GEN_QSCISCINTILLA_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISCINTILLA_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISCINTILLA_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -55,7 +56,7 @@ QMetaObject* QsciScintilla_MetaObject(const QsciScintilla* self);
|
||||
void* QsciScintilla_Metacast(QsciScintilla* self, const char* param1);
|
||||
struct miqt_string QsciScintilla_Tr(const char* s);
|
||||
struct miqt_string QsciScintilla_TrUtf8(const char* s);
|
||||
struct miqt_array QsciScintilla_ApiContext(QsciScintilla* self, int pos, int* context_start, int* last_word_start);
|
||||
struct miqt_array /* of struct miqt_string */ QsciScintilla_ApiContext(QsciScintilla* self, int pos, int* context_start, int* last_word_start);
|
||||
void QsciScintilla_Annotate(QsciScintilla* self, int line, struct miqt_string text, int style);
|
||||
void QsciScintilla_Annotate2(QsciScintilla* self, int line, struct miqt_string text, QsciStyle* style);
|
||||
void QsciScintilla_Annotate3(QsciScintilla* self, int line, QsciStyledText* text);
|
||||
@ -84,7 +85,7 @@ void QsciScintilla_ClearFolds(QsciScintilla* self);
|
||||
void QsciScintilla_ClearIndicatorRange(QsciScintilla* self, int lineFrom, int indexFrom, int lineTo, int indexTo, int indicatorNumber);
|
||||
void QsciScintilla_ClearRegisteredImages(QsciScintilla* self);
|
||||
QColor* QsciScintilla_Color(const QsciScintilla* self);
|
||||
struct miqt_array QsciScintilla_ContractedFolds(const QsciScintilla* self);
|
||||
struct miqt_array /* of int */ QsciScintilla_ContractedFolds(const QsciScintilla* self);
|
||||
void QsciScintilla_ConvertEols(QsciScintilla* self, int mode);
|
||||
QMenu* QsciScintilla_CreateStandardContextMenu(QsciScintilla* self);
|
||||
QsciDocument* QsciScintilla_Document(const QsciScintilla* self);
|
||||
|
@ -1783,7 +1783,7 @@ func (this *QsciScintillaBase) OnSCN_MACRORECORD(slot func(param1 uint, param2 u
|
||||
}
|
||||
|
||||
//export miqt_exec_callback_QsciScintillaBase_SCN_MACRORECORD
|
||||
func miqt_exec_callback_QsciScintillaBase_SCN_MACRORECORD(cb C.intptr_t, param1 C.uint, param2 C.ulong, param3 *C.void) {
|
||||
func miqt_exec_callback_QsciScintillaBase_SCN_MACRORECORD(cb C.intptr_t, param1 C.uint, param2 C.ulong, param3 unsafe.Pointer) {
|
||||
gofunc, ok := cgo.Handle(cb).Value().(func(param1 uint, param2 uint64, param3 unsafe.Pointer))
|
||||
if !ok {
|
||||
panic("miqt: callback of non-callback type (heap corruption?)")
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCISCINTILLABASE_H
|
||||
#define GEN_QSCISCINTILLABASE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISCINTILLABASE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISCINTILLABASE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCISTYLE_H
|
||||
#define GEN_QSCISTYLE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCISTYLEDTEXT_H
|
||||
#define GEN_QSCISTYLEDTEXT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLEDTEXT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA_GEN_QSCISTYLEDTEXT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -53,7 +53,7 @@ void QsciAbstractAPIs_AutoCompletionSelected(QsciAbstractAPIs* self, struct miqt
|
||||
self->autoCompletionSelected(selection_QString);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
QStringList context_QList;
|
||||
context_QList.reserve(context.len);
|
||||
struct miqt_string* context_arr = static_cast<struct miqt_string*>(context.data);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIABSTRACTAPIS_H
|
||||
#define GEN_QSCIABSTRACTAPIS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIABSTRACTAPIS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIABSTRACTAPIS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -29,7 +30,7 @@ struct miqt_string QsciAbstractAPIs_Tr(const char* s);
|
||||
QsciLexer* QsciAbstractAPIs_Lexer(const QsciAbstractAPIs* self);
|
||||
void QsciAbstractAPIs_UpdateAutoCompletionList(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, struct miqt_array /* of struct miqt_string */ list);
|
||||
void QsciAbstractAPIs_AutoCompletionSelected(QsciAbstractAPIs* self, struct miqt_string selection);
|
||||
struct miqt_array QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAbstractAPIs_CallTips(QsciAbstractAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_string QsciAbstractAPIs_Tr2(const char* s, const char* c);
|
||||
struct miqt_string QsciAbstractAPIs_Tr3(const char* s, const char* c, int n);
|
||||
void QsciAbstractAPIs_Delete(QsciAbstractAPIs* self);
|
||||
|
@ -104,7 +104,7 @@ void QsciAPIs_AutoCompletionSelected(QsciAPIs* self, struct miqt_string sel) {
|
||||
self->autoCompletionSelected(sel_QString);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts) {
|
||||
QStringList context_QList;
|
||||
context_QList.reserve(context.len);
|
||||
struct miqt_string* context_arr = static_cast<struct miqt_string*>(context.data);
|
||||
@ -141,7 +141,7 @@ bool QsciAPIs_Event(QsciAPIs* self, QEvent* e) {
|
||||
return self->event(e);
|
||||
}
|
||||
|
||||
struct miqt_array QsciAPIs_InstalledAPIFiles(const QsciAPIs* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_InstalledAPIFiles(const QsciAPIs* self) {
|
||||
QStringList _ret = self->installedAPIFiles();
|
||||
// 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIAPIS_H
|
||||
#define GEN_QSCIAPIS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIAPIS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIAPIS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -41,9 +42,9 @@ bool QsciAPIs_LoadPrepared(QsciAPIs* self);
|
||||
bool QsciAPIs_SavePrepared(const QsciAPIs* self);
|
||||
void QsciAPIs_UpdateAutoCompletionList(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, struct miqt_array /* of struct miqt_string */ list);
|
||||
void QsciAPIs_AutoCompletionSelected(QsciAPIs* self, struct miqt_string sel);
|
||||
struct miqt_array QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_CallTips(QsciAPIs* self, struct miqt_array /* of struct miqt_string */ context, int commas, int style, struct miqt_array /* of int */ shifts);
|
||||
bool QsciAPIs_Event(QsciAPIs* self, QEvent* e);
|
||||
struct miqt_array QsciAPIs_InstalledAPIFiles(const QsciAPIs* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciAPIs_InstalledAPIFiles(const QsciAPIs* self);
|
||||
void QsciAPIs_ApiPreparationCancelled(QsciAPIs* self);
|
||||
void QsciAPIs_connect_ApiPreparationCancelled(QsciAPIs* self, intptr_t slot);
|
||||
void QsciAPIs_ApiPreparationStarted(QsciAPIs* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCICOMMAND_H
|
||||
#define GEN_QSCICOMMAND_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMAND_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMAND_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -12,7 +12,7 @@ bool QsciCommandSet_WriteSettings(QsciCommandSet* self, QSettings* qs) {
|
||||
return self->writeSettings(*qs);
|
||||
}
|
||||
|
||||
struct miqt_array QsciCommandSet_Commands(QsciCommandSet* self) {
|
||||
struct miqt_array /* of QsciCommand* */ QsciCommandSet_Commands(QsciCommandSet* self) {
|
||||
QList<QsciCommand *>& _ret = self->commands();
|
||||
// Convert QList<> from C++ memory to manually-managed C memory
|
||||
QsciCommand** _arr = static_cast<QsciCommand**>(malloc(sizeof(QsciCommand*) * _ret.length()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCICOMMANDSET_H
|
||||
#define GEN_QSCICOMMANDSET_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMANDSET_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCICOMMANDSET_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -25,7 +26,7 @@ typedef struct QsciCommandSet QsciCommandSet;
|
||||
|
||||
bool QsciCommandSet_ReadSettings(QsciCommandSet* self, QSettings* qs);
|
||||
bool QsciCommandSet_WriteSettings(QsciCommandSet* self, QSettings* qs);
|
||||
struct miqt_array QsciCommandSet_Commands(QsciCommandSet* self);
|
||||
struct miqt_array /* of QsciCommand* */ QsciCommandSet_Commands(QsciCommandSet* self);
|
||||
void QsciCommandSet_ClearKeys(QsciCommandSet* self);
|
||||
void QsciCommandSet_ClearAlternateKeys(QsciCommandSet* self);
|
||||
QsciCommand* QsciCommandSet_BoundTo(const QsciCommandSet* self, int key);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCIDOCUMENT_H
|
||||
#define GEN_QSCIDOCUMENT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIDOCUMENT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCIDOCUMENT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -49,7 +49,7 @@ const char* QsciLexer_AutoCompletionFillups(const QsciLexer* self) {
|
||||
return (const char*) self->autoCompletionFillups();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexer_AutoCompletionWordSeparators(const QsciLexer* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXER_H
|
||||
#define GEN_QSCILEXER_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXER_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXER_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -39,7 +40,7 @@ const char* QsciLexer_Lexer(const QsciLexer* self);
|
||||
int QsciLexer_LexerId(const QsciLexer* self);
|
||||
QsciAbstractAPIs* QsciLexer_Apis(const QsciLexer* self);
|
||||
const char* QsciLexer_AutoCompletionFillups(const QsciLexer* self);
|
||||
struct miqt_array QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexer_AutoCompletionWordSeparators(const QsciLexer* self);
|
||||
int QsciLexer_AutoIndentStyle(QsciLexer* self);
|
||||
const char* QsciLexer_BlockEnd(const QsciLexer* self);
|
||||
int QsciLexer_BlockLookback(const QsciLexer* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERAVS_H
|
||||
#define GEN_QSCILEXERAVS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERAVS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERAVS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERBASH_H
|
||||
#define GEN_QSCILEXERBASH_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERBASH_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERBASH_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERBATCH_H
|
||||
#define GEN_QSCILEXERBATCH_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERBATCH_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERBATCH_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCMAKE_H
|
||||
#define GEN_QSCILEXERCMAKE_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCMAKE_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCMAKE_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -45,7 +45,7 @@ const char* QsciLexerCoffeeScript_Lexer(const QsciLexerCoffeeScript* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#define GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCOFFEESCRIPT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -34,7 +35,7 @@ void* QsciLexerCoffeeScript_Metacast(QsciLexerCoffeeScript* self, const char* pa
|
||||
struct miqt_string QsciLexerCoffeeScript_Tr(const char* s);
|
||||
const char* QsciLexerCoffeeScript_Language(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_Lexer(const QsciLexerCoffeeScript* self);
|
||||
struct miqt_array QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCoffeeScript_AutoCompletionWordSeparators(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockEnd(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockStart(const QsciLexerCoffeeScript* self);
|
||||
const char* QsciLexerCoffeeScript_BlockStartKeyword(const QsciLexerCoffeeScript* self);
|
||||
|
@ -49,7 +49,7 @@ const char* QsciLexerCPP_Lexer(const QsciLexerCPP* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self) {
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* 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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCPP_H
|
||||
#define GEN_QSCILEXERCPP_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCPP_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCPP_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -35,7 +36,7 @@ void* QsciLexerCPP_Metacast(QsciLexerCPP* self, const char* param1);
|
||||
struct miqt_string QsciLexerCPP_Tr(const char* s);
|
||||
const char* QsciLexerCPP_Language(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_Lexer(const QsciLexerCPP* self);
|
||||
struct miqt_array QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerCPP_AutoCompletionWordSeparators(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockEnd(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockStart(const QsciLexerCPP* self);
|
||||
const char* QsciLexerCPP_BlockStartKeyword(const QsciLexerCPP* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCSHARP_H
|
||||
#define GEN_QSCILEXERCSHARP_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCSHARP_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCSHARP_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCSS_H
|
||||
#define GEN_QSCILEXERCSS_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCSS_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCSS_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERCUSTOM_H
|
||||
#define GEN_QSCILEXERCUSTOM_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCUSTOM_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERCUSTOM_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -45,7 +45,7 @@ const char* QsciLexerD_Lexer(const QsciLexerD* self) {
|
||||
return (const char*) self->lexer();
|
||||
}
|
||||
|
||||
struct miqt_array QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self) {
|
||||
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()));
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERD_H
|
||||
#define GEN_QSCILEXERD_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERD_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERD_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
@ -34,7 +35,7 @@ void* QsciLexerD_Metacast(QsciLexerD* self, const char* param1);
|
||||
struct miqt_string QsciLexerD_Tr(const char* s);
|
||||
const char* QsciLexerD_Language(const QsciLexerD* self);
|
||||
const char* QsciLexerD_Lexer(const QsciLexerD* self);
|
||||
struct miqt_array QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self);
|
||||
struct miqt_array /* of struct miqt_string */ QsciLexerD_AutoCompletionWordSeparators(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockEnd(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockStart(const QsciLexerD* self);
|
||||
const char* QsciLexerD_BlockStartKeyword(const QsciLexerD* self);
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERDIFF_H
|
||||
#define GEN_QSCILEXERDIFF_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERDIFF_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERDIFF_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXEREDIFACT_H
|
||||
#define GEN_QSCILEXEREDIFACT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXEREDIFACT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXEREDIFACT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERFORTRAN_H
|
||||
#define GEN_QSCILEXERFORTRAN_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERFORTRAN_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERFORTRAN_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERFORTRAN77_H
|
||||
#define GEN_QSCILEXERFORTRAN77_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERFORTRAN77_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERFORTRAN77_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERHTML_H
|
||||
#define GEN_QSCILEXERHTML_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERHTML_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERHTML_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERIDL_H
|
||||
#define GEN_QSCILEXERIDL_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERIDL_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERIDL_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJAVA_H
|
||||
#define GEN_QSCILEXERJAVA_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJAVA_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJAVA_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJAVASCRIPT_H
|
||||
#define GEN_QSCILEXERJAVASCRIPT_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJAVASCRIPT_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJAVASCRIPT_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
@ -1,5 +1,6 @@
|
||||
#ifndef GEN_QSCILEXERJSON_H
|
||||
#define GEN_QSCILEXERJSON_H
|
||||
#pragma once
|
||||
#ifndef MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJSON_H
|
||||
#define MIQT_QT_RESTRICTED_EXTRAS_QSCINTILLA6_GEN_QSCILEXERJSON_H
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user