2024-10-20 17:59:23 +13:00
|
|
|
package qscintilla
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qscilexer.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/mappu/miqt/qt"
|
|
|
|
"runtime"
|
|
|
|
"runtime/cgo"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QsciLexer struct {
|
2025-01-18 17:57:48 +13:00
|
|
|
h *C.QsciLexer
|
2024-10-20 17:59:23 +13:00
|
|
|
*qt.QObject
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) cPointer() *C.QsciLexer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
// newQsciLexer constructs the type using only CGO pointers.
|
2024-12-07 17:15:57 +13:00
|
|
|
func newQsciLexer(h *C.QsciLexer) *QsciLexer {
|
2024-10-20 17:59:23 +13:00
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 17:15:57 +13:00
|
|
|
var outptr_QObject *C.QObject = nil
|
|
|
|
C.QsciLexer_virtbase(h, &outptr_QObject)
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
return &QsciLexer{h: h,
|
2024-12-07 17:15:57 +13:00
|
|
|
QObject: qt.UnsafeNewQObject(unsafe.Pointer(outptr_QObject))}
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
// UnsafeNewQsciLexer constructs the type using only unsafe pointers.
|
2024-12-07 17:15:57 +13:00
|
|
|
func UnsafeNewQsciLexer(h unsafe.Pointer) *QsciLexer {
|
|
|
|
return newQsciLexer((*C.QsciLexer)(h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
// NewQsciLexer constructs a new QsciLexer object.
|
|
|
|
func NewQsciLexer() *QsciLexer {
|
|
|
|
|
2025-01-18 17:57:48 +13:00
|
|
|
return newQsciLexer(C.QsciLexer_new())
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQsciLexer2 constructs a new QsciLexer object.
|
|
|
|
func NewQsciLexer2(parent *qt.QObject) *QsciLexer {
|
|
|
|
|
2025-01-18 17:57:48 +13:00
|
|
|
return newQsciLexer(C.QsciLexer_new2((*C.QObject)(parent.UnsafePointer())))
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2024-10-20 17:59:23 +13:00
|
|
|
func (this *QsciLexer) MetaObject() *qt.QMetaObject {
|
2025-02-01 13:45:16 +13:00
|
|
|
return qt.UnsafeNewQMetaObject(unsafe.Pointer(C.QsciLexer_metaObject(this.h)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Metacast(param1 string) unsafe.Pointer {
|
|
|
|
param1_Cstring := C.CString(param1)
|
|
|
|
defer C.free(unsafe.Pointer(param1_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
return (unsafe.Pointer)(C.QsciLexer_metacast(this.h, param1_Cstring))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_Tr(s string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_tr(s_Cstring)
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_TrUtf8(s string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_trUtf8(s_Cstring)
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Language() string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_language(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Lexer() string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_lexer(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) LexerId() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_lexerId(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Apis() *QsciAbstractAPIs {
|
2025-02-01 13:45:16 +13:00
|
|
|
return newQsciAbstractAPIs(C.QsciLexer_apis(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) AutoCompletionFillups() string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_autoCompletionFillups(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) AutoCompletionWordSeparators() []string {
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ma C.struct_miqt_array = C.QsciLexer_autoCompletionWordSeparators(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := make([]string, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_ms C.struct_miqt_string = _outCast[i]
|
|
|
|
_lv_ret := C.GoStringN(_lv_ms.data, C.int(int64(_lv_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_lv_ms.data))
|
|
|
|
_ret[i] = _lv_ret
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) AutoIndentStyle() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_autoIndentStyle(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) BlockEnd(style *int) string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_blockEnd(this.h, (*C.int)(unsafe.Pointer(style)))
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) BlockLookback() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_blockLookback(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) BlockStart(style *int) string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_blockStart(this.h, (*C.int)(unsafe.Pointer(style)))
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) BlockStartKeyword(style *int) string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_blockStartKeyword(this.h, (*C.int)(unsafe.Pointer(style)))
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) BraceStyle() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_braceStyle(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) CaseSensitive() bool {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_caseSensitive(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Color(style int) *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_color(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) EolFill(style int) bool {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_eolFill(this.h, (C.int)(style)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Font(style int) *qt.QFont {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQFont(unsafe.Pointer(C.QsciLexer_font(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) IndentationGuideView() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_indentationGuideView(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Keywords(set int) string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_keywords(this.h, (C.int)(set))
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultStyle() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_defaultStyle(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Description(style int) string {
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_description(this.h, (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Paper(style int) *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_paper(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultColor() *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_defaultColor(this.h)))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultColorWithStyle(style int) *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_defaultColorWithStyle(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultEolFill(style int) bool {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_defaultEolFill(this.h, (C.int)(style)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultFont() *qt.QFont {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQFont(unsafe.Pointer(C.QsciLexer_defaultFont(this.h)))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultFontWithStyle(style int) *qt.QFont {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQFont(unsafe.Pointer(C.QsciLexer_defaultFontWithStyle(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultPaper() *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_defaultPaper(this.h)))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) DefaultPaperWithStyle(style int) *qt.QColor {
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_defaultPaperWithStyle(this.h, (C.int)(style))))
|
2024-10-20 17:59:23 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) Editor() *QsciScintilla {
|
2025-02-01 13:45:16 +13:00
|
|
|
return newQsciScintilla(C.QsciLexer_editor(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetAPIs(apis *QsciAbstractAPIs) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setAPIs(this.h, apis.cPointer())
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetDefaultColor(c *qt.QColor) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setDefaultColor(this.h, (*C.QColor)(c.UnsafePointer()))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetDefaultFont(f *qt.QFont) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setDefaultFont(this.h, (*C.QFont)(f.UnsafePointer()))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetDefaultPaper(c *qt.QColor) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setDefaultPaper(this.h, (*C.QColor)(c.UnsafePointer()))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetEditor(editor *QsciScintilla) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setEditor(this.h, editor.cPointer())
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) ReadSettings(qs *qt.QSettings) bool {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_readSettings(this.h, (*C.QSettings)(qs.UnsafePointer())))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) RefreshProperties() {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_refreshProperties(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) StyleBitsNeeded() int {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_styleBitsNeeded(this.h))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) WordCharacters() string {
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_wordCharacters(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) WriteSettings(qs *qt.QSettings) bool {
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_writeSettings(this.h, (*C.QSettings)(qs.UnsafePointer())))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) SetAutoIndentStyle(autoindentstyle int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setAutoIndentStyle(this.h, (C.int)(autoindentstyle))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) SetColor(c *qt.QColor, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setColor(this.h, (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) SetEolFill(eoffill bool, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setEolFill(this.h, (C.bool)(eoffill), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) SetFont(f *qt.QFont, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setFont(this.h, (*C.QFont)(f.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2024-11-19 19:29:06 +13:00
|
|
|
func (this *QsciLexer) SetPaper(c *qt.QColor, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_setPaper(this.h, (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) ColorChanged(c *qt.QColor, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_colorChanged(this.h, (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
func (this *QsciLexer) OnColorChanged(slot func(c *qt.QColor, style int)) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_connect_colorChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_colorChanged
|
|
|
|
func miqt_exec_callback_QsciLexer_colorChanged(cb C.intptr_t, c *C.QColor, style C.int) {
|
2024-10-20 17:59:23 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(c *qt.QColor, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQColor(unsafe.Pointer(c))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-10-20 17:59:23 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc(slotval1, slotval2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) EolFillChanged(eolfilled bool, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_eolFillChanged(this.h, (C.bool)(eolfilled), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
func (this *QsciLexer) OnEolFillChanged(slot func(eolfilled bool, style int)) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_connect_eolFillChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_eolFillChanged
|
|
|
|
func miqt_exec_callback_QsciLexer_eolFillChanged(cb C.intptr_t, eolfilled C.bool, style C.int) {
|
2024-10-20 17:59:23 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(eolfilled bool, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (bool)(eolfilled)
|
|
|
|
|
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc(slotval1, slotval2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) FontChanged(f *qt.QFont, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_fontChanged(this.h, (*C.QFont)(f.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
func (this *QsciLexer) OnFontChanged(slot func(f *qt.QFont, style int)) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_connect_fontChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_fontChanged
|
|
|
|
func miqt_exec_callback_QsciLexer_fontChanged(cb C.intptr_t, f *C.QFont, style C.int) {
|
2024-10-20 17:59:23 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(f *qt.QFont, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQFont(unsafe.Pointer(f))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-10-20 17:59:23 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc(slotval1, slotval2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) PaperChanged(c *qt.QColor, style int) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_paperChanged(this.h, (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
func (this *QsciLexer) OnPaperChanged(slot func(c *qt.QColor, style int)) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_connect_paperChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_paperChanged
|
|
|
|
func miqt_exec_callback_QsciLexer_paperChanged(cb C.intptr_t, c *C.QColor, style C.int) {
|
2024-10-20 17:59:23 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(c *qt.QColor, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQColor(unsafe.Pointer(c))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-10-20 17:59:23 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc(slotval1, slotval2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) PropertyChanged(prop string, val string) {
|
|
|
|
prop_Cstring := C.CString(prop)
|
|
|
|
defer C.free(unsafe.Pointer(prop_Cstring))
|
|
|
|
val_Cstring := C.CString(val)
|
|
|
|
defer C.free(unsafe.Pointer(val_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_propertyChanged(this.h, prop_Cstring, val_Cstring)
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
func (this *QsciLexer) OnPropertyChanged(slot func(prop string, val string)) {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_connect_propertyChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_propertyChanged
|
|
|
|
func miqt_exec_callback_QsciLexer_propertyChanged(cb C.intptr_t, prop *C.const_char, val *C.const_char) {
|
2024-10-20 17:59:23 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(prop string, val string))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
prop_ret := prop
|
|
|
|
slotval1 := C.GoString(prop_ret)
|
|
|
|
|
|
|
|
val_ret := val
|
|
|
|
slotval2 := C.GoString(val_ret)
|
|
|
|
|
|
|
|
gofunc(slotval1, slotval2)
|
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_Tr2(s string, c string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
|
|
|
c_Cstring := C.CString(c)
|
|
|
|
defer C.free(unsafe.Pointer(c_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_tr2(s_Cstring, c_Cstring)
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_Tr3(s string, c string, n int) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
|
|
|
c_Cstring := C.CString(c)
|
|
|
|
defer C.free(unsafe.Pointer(c_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_tr3(s_Cstring, c_Cstring, (C.int)(n))
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_TrUtf82(s string, c string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
|
|
|
c_Cstring := C.CString(c)
|
|
|
|
defer C.free(unsafe.Pointer(c_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_trUtf82(s_Cstring, c_Cstring)
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func QsciLexer_TrUtf83(s string, c string, n int) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
|
|
|
c_Cstring := C.CString(c)
|
|
|
|
defer C.free(unsafe.Pointer(c_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ms C.struct_miqt_string = C.QsciLexer_trUtf83(s_Cstring, c_Cstring, (C.int)(n))
|
2024-10-20 17:59:23 +13:00
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) ReadSettings2(qs *qt.QSettings, prefix string) bool {
|
|
|
|
prefix_Cstring := C.CString(prefix)
|
|
|
|
defer C.free(unsafe.Pointer(prefix_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_readSettings2(this.h, (*C.QSettings)(qs.UnsafePointer()), prefix_Cstring))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) WriteSettings2(qs *qt.QSettings, prefix string) bool {
|
|
|
|
prefix_Cstring := C.CString(prefix)
|
|
|
|
defer C.free(unsafe.Pointer(prefix_Cstring))
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_writeSettings2(this.h, (*C.QSettings)(qs.UnsafePointer()), prefix_Cstring))
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onlanguage(slot func() string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_language(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_language
|
|
|
|
func miqt_exec_callback_QsciLexer_language(self *C.QsciLexer, cb C.intptr_t) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func() string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc()
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Lexer() string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_lexer(unsafe.Pointer(this.h))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onlexer(slot func(super func() string) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_lexer(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_lexer
|
|
|
|
func miqt_exec_callback_QsciLexer_lexer(self *C.QsciLexer, cb C.intptr_t) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() string) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Lexer)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_LexerId() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_lexerId(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnlexerId(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_lexerId(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_lexerId
|
|
|
|
func miqt_exec_callback_QsciLexer_lexerId(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_LexerId)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_AutoCompletionFillups() string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_autoCompletionFillups(unsafe.Pointer(this.h))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnautoCompletionFillups(slot func(super func() string) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_autoCompletionFillups(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_autoCompletionFillups
|
|
|
|
func miqt_exec_callback_QsciLexer_autoCompletionFillups(self *C.QsciLexer, cb C.intptr_t) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() string) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_AutoCompletionFillups)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_AutoCompletionWordSeparators() []string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
var _ma C.struct_miqt_array = C.QsciLexer_virtualbase_autoCompletionWordSeparators(unsafe.Pointer(this.h))
|
2024-11-23 19:34:52 +13:00
|
|
|
_ret := make([]string, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_ms C.struct_miqt_string = _outCast[i]
|
|
|
|
_lv_ret := C.GoStringN(_lv_ms.data, C.int(int64(_lv_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_lv_ms.data))
|
|
|
|
_ret[i] = _lv_ret
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnautoCompletionWordSeparators(slot func(super func() []string) []string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_autoCompletionWordSeparators(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_autoCompletionWordSeparators
|
|
|
|
func miqt_exec_callback_QsciLexer_autoCompletionWordSeparators(self *C.QsciLexer, cb C.intptr_t) C.struct_miqt_array {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() []string) []string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_AutoCompletionWordSeparators)
|
|
|
|
virtualReturn_CArray := (*[0xffff]C.struct_miqt_string)(C.malloc(C.size_t(int(unsafe.Sizeof(C.struct_miqt_string{})) * len(virtualReturn))))
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_CArray))
|
|
|
|
for i := range virtualReturn {
|
|
|
|
virtualReturn_i_ms := C.struct_miqt_string{}
|
|
|
|
virtualReturn_i_ms.data = C.CString(virtualReturn[i])
|
|
|
|
virtualReturn_i_ms.len = C.size_t(len(virtualReturn[i]))
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_i_ms.data))
|
|
|
|
virtualReturn_CArray[i] = virtualReturn_i_ms
|
|
|
|
}
|
|
|
|
virtualReturn_ma := C.struct_miqt_array{len: C.size_t(len(virtualReturn)), data: unsafe.Pointer(virtualReturn_CArray)}
|
|
|
|
|
|
|
|
return virtualReturn_ma
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_BlockEnd(style *int) string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_blockEnd(unsafe.Pointer(this.h), (*C.int)(unsafe.Pointer(style)))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnblockEnd(slot func(super func(style *int) string, style *int) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_blockEnd(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_blockEnd
|
|
|
|
func miqt_exec_callback_QsciLexer_blockEnd(self *C.QsciLexer, cb C.intptr_t, style *C.int) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style *int) string, style *int) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (*int)(unsafe.Pointer(style))
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_BlockEnd, slotval1)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_BlockLookback() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_blockLookback(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnblockLookback(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_blockLookback(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_blockLookback
|
|
|
|
func miqt_exec_callback_QsciLexer_blockLookback(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_BlockLookback)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_BlockStart(style *int) string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_blockStart(unsafe.Pointer(this.h), (*C.int)(unsafe.Pointer(style)))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnblockStart(slot func(super func(style *int) string, style *int) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_blockStart(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_blockStart
|
|
|
|
func miqt_exec_callback_QsciLexer_blockStart(self *C.QsciLexer, cb C.intptr_t, style *C.int) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style *int) string, style *int) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (*int)(unsafe.Pointer(style))
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_BlockStart, slotval1)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_BlockStartKeyword(style *int) string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_blockStartKeyword(unsafe.Pointer(this.h), (*C.int)(unsafe.Pointer(style)))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnblockStartKeyword(slot func(super func(style *int) string, style *int) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_blockStartKeyword(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_blockStartKeyword
|
|
|
|
func miqt_exec_callback_QsciLexer_blockStartKeyword(self *C.QsciLexer, cb C.intptr_t, style *C.int) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style *int) string, style *int) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (*int)(unsafe.Pointer(style))
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_BlockStartKeyword, slotval1)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_BraceStyle() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_braceStyle(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnbraceStyle(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_braceStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_braceStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_braceStyle(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_BraceStyle)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_CaseSensitive() bool {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_caseSensitive(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OncaseSensitive(slot func(super func() bool) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_caseSensitive(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_caseSensitive
|
|
|
|
func miqt_exec_callback_QsciLexer_caseSensitive(self *C.QsciLexer, cb C.intptr_t) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_CaseSensitive)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Color(style int) *qt.QColor {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_virtualbase_color(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Oncolor(slot func(super func(style int) *qt.QColor, style int) *qt.QColor) {
|
|
|
|
ok := C.QsciLexer_override_virtual_color(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_color
|
|
|
|
func miqt_exec_callback_QsciLexer_color(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QColor {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QColor, style int) *qt.QColor)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Color, slotval1)
|
|
|
|
|
|
|
|
return (*C.QColor)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_EolFill(style int) bool {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_eolFill(unsafe.Pointer(this.h), (C.int)(style)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OneolFill(slot func(super func(style int) bool, style int) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_eolFill(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_eolFill
|
|
|
|
func miqt_exec_callback_QsciLexer_eolFill(self *C.QsciLexer, cb C.intptr_t, style C.int) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) bool, style int) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_EolFill, slotval1)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Font(style int) *qt.QFont {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQFont(unsafe.Pointer(C.QsciLexer_virtualbase_font(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onfont(slot func(super func(style int) *qt.QFont, style int) *qt.QFont) {
|
|
|
|
ok := C.QsciLexer_override_virtual_font(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_font
|
|
|
|
func miqt_exec_callback_QsciLexer_font(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QFont {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QFont, style int) *qt.QFont)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Font, slotval1)
|
|
|
|
|
|
|
|
return (*C.QFont)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_IndentationGuideView() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_indentationGuideView(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnindentationGuideView(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_indentationGuideView(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_indentationGuideView
|
|
|
|
func miqt_exec_callback_QsciLexer_indentationGuideView(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_IndentationGuideView)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Keywords(set int) string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_keywords(unsafe.Pointer(this.h), (C.int)(set))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onkeywords(slot func(super func(set int) string, set int) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_keywords(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_keywords
|
|
|
|
func miqt_exec_callback_QsciLexer_keywords(self *C.QsciLexer, cb C.intptr_t, set C.int) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(set int) string, set int) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(set)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Keywords, slotval1)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DefaultStyle() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_defaultStyle(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndefaultStyle(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_defaultStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_defaultStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_defaultStyle(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_DefaultStyle)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Ondescription(slot func(style int) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_description(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_description
|
|
|
|
func miqt_exec_callback_QsciLexer_description(self *C.QsciLexer, cb C.intptr_t, style C.int) C.struct_miqt_string {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(style int) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc(slotval1)
|
|
|
|
virtualReturn_ms := C.struct_miqt_string{}
|
|
|
|
virtualReturn_ms.data = C.CString(virtualReturn)
|
|
|
|
virtualReturn_ms.len = C.size_t(len(virtualReturn))
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_ms.data))
|
|
|
|
|
|
|
|
return virtualReturn_ms
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Paper(style int) *qt.QColor {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_virtualbase_paper(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onpaper(slot func(super func(style int) *qt.QColor, style int) *qt.QColor) {
|
|
|
|
ok := C.QsciLexer_override_virtual_paper(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_paper
|
|
|
|
func miqt_exec_callback_QsciLexer_paper(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QColor {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QColor, style int) *qt.QColor)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Paper, slotval1)
|
|
|
|
|
|
|
|
return (*C.QColor)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DefaultColorWithStyle(style int) *qt.QColor {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_virtualbase_defaultColorWithStyle(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndefaultColorWithStyle(slot func(super func(style int) *qt.QColor, style int) *qt.QColor) {
|
|
|
|
ok := C.QsciLexer_override_virtual_defaultColorWithStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_defaultColorWithStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_defaultColorWithStyle(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QColor {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QColor, style int) *qt.QColor)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_DefaultColorWithStyle, slotval1)
|
|
|
|
|
|
|
|
return (*C.QColor)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DefaultEolFill(style int) bool {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_defaultEolFill(unsafe.Pointer(this.h), (C.int)(style)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndefaultEolFill(slot func(super func(style int) bool, style int) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_defaultEolFill(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_defaultEolFill
|
|
|
|
func miqt_exec_callback_QsciLexer_defaultEolFill(self *C.QsciLexer, cb C.intptr_t, style C.int) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) bool, style int) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_DefaultEolFill, slotval1)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DefaultFontWithStyle(style int) *qt.QFont {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQFont(unsafe.Pointer(C.QsciLexer_virtualbase_defaultFontWithStyle(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndefaultFontWithStyle(slot func(super func(style int) *qt.QFont, style int) *qt.QFont) {
|
|
|
|
ok := C.QsciLexer_override_virtual_defaultFontWithStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_defaultFontWithStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_defaultFontWithStyle(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QFont {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QFont, style int) *qt.QFont)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_DefaultFontWithStyle, slotval1)
|
|
|
|
|
|
|
|
return (*C.QFont)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DefaultPaperWithStyle(style int) *qt.QColor {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_goptr := qt.UnsafeNewQColor(unsafe.Pointer(C.QsciLexer_virtualbase_defaultPaperWithStyle(unsafe.Pointer(this.h), (C.int)(style))))
|
2024-11-23 19:34:52 +13:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndefaultPaperWithStyle(slot func(super func(style int) *qt.QColor, style int) *qt.QColor) {
|
|
|
|
ok := C.QsciLexer_override_virtual_defaultPaperWithStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_defaultPaperWithStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_defaultPaperWithStyle(self *C.QsciLexer, cb C.intptr_t, style C.int) *C.QColor {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(style int) *qt.QColor, style int) *qt.QColor)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(style)
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_DefaultPaperWithStyle, slotval1)
|
|
|
|
|
|
|
|
return (*C.QColor)(virtualReturn.UnsafePointer())
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetEditor(editor *QsciScintilla) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setEditor(unsafe.Pointer(this.h), editor.cPointer())
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetEditor(slot func(super func(editor *QsciScintilla), editor *QsciScintilla)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setEditor(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setEditor
|
|
|
|
func miqt_exec_callback_QsciLexer_setEditor(self *C.QsciLexer, cb C.intptr_t, editor *C.QsciScintilla) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(editor *QsciScintilla), editor *QsciScintilla))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
2024-12-07 17:15:57 +13:00
|
|
|
slotval1 := newQsciScintilla(editor)
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetEditor, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_RefreshProperties() {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_refreshProperties(unsafe.Pointer(this.h))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnrefreshProperties(slot func(super func())) {
|
|
|
|
ok := C.QsciLexer_override_virtual_refreshProperties(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_refreshProperties
|
|
|
|
func miqt_exec_callback_QsciLexer_refreshProperties(self *C.QsciLexer, cb C.intptr_t) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func()))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_RefreshProperties)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_StyleBitsNeeded() int {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (int)(C.QsciLexer_virtualbase_styleBitsNeeded(unsafe.Pointer(this.h)))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnstyleBitsNeeded(slot func(super func() int) int) {
|
|
|
|
ok := C.QsciLexer_override_virtual_styleBitsNeeded(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_styleBitsNeeded
|
|
|
|
func miqt_exec_callback_QsciLexer_styleBitsNeeded(self *C.QsciLexer, cb C.intptr_t) C.int {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_StyleBitsNeeded)
|
|
|
|
|
|
|
|
return (C.int)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_WordCharacters() string {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
_ret := C.QsciLexer_virtualbase_wordCharacters(unsafe.Pointer(this.h))
|
2024-11-23 19:34:52 +13:00
|
|
|
return C.GoString(_ret)
|
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnwordCharacters(slot func(super func() string) string) {
|
|
|
|
ok := C.QsciLexer_override_virtual_wordCharacters(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_wordCharacters
|
|
|
|
func miqt_exec_callback_QsciLexer_wordCharacters(self *C.QsciLexer, cb C.intptr_t) *C.const_char {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func() string) string)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_WordCharacters)
|
|
|
|
virtualReturn_Cstring := C.CString(virtualReturn)
|
|
|
|
defer C.free(unsafe.Pointer(virtualReturn_Cstring))
|
|
|
|
|
|
|
|
return virtualReturn_Cstring
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetAutoIndentStyle(autoindentstyle int) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setAutoIndentStyle(unsafe.Pointer(this.h), (C.int)(autoindentstyle))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetAutoIndentStyle(slot func(super func(autoindentstyle int), autoindentstyle int)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setAutoIndentStyle(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setAutoIndentStyle
|
|
|
|
func miqt_exec_callback_QsciLexer_setAutoIndentStyle(self *C.QsciLexer, cb C.intptr_t, autoindentstyle C.int) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(autoindentstyle int), autoindentstyle int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (int)(autoindentstyle)
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetAutoIndentStyle, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetColor(c *qt.QColor, style int) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setColor(unsafe.Pointer(this.h), (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetColor(slot func(super func(c *qt.QColor, style int), c *qt.QColor, style int)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setColor(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setColor
|
|
|
|
func miqt_exec_callback_QsciLexer_setColor(self *C.QsciLexer, cb C.intptr_t, c *C.QColor, style C.int) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(c *qt.QColor, style int), c *qt.QColor, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQColor(unsafe.Pointer(c))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetColor, slotval1, slotval2)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetEolFill(eoffill bool, style int) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setEolFill(unsafe.Pointer(this.h), (C.bool)(eoffill), (C.int)(style))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetEolFill(slot func(super func(eoffill bool, style int), eoffill bool, style int)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setEolFill(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setEolFill
|
|
|
|
func miqt_exec_callback_QsciLexer_setEolFill(self *C.QsciLexer, cb C.intptr_t, eoffill C.bool, style C.int) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(eoffill bool, style int), eoffill bool, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := (bool)(eoffill)
|
|
|
|
|
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetEolFill, slotval1, slotval2)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetFont(f *qt.QFont, style int) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setFont(unsafe.Pointer(this.h), (*C.QFont)(f.UnsafePointer()), (C.int)(style))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetFont(slot func(super func(f *qt.QFont, style int), f *qt.QFont, style int)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setFont(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setFont
|
|
|
|
func miqt_exec_callback_QsciLexer_setFont(self *C.QsciLexer, cb C.intptr_t, f *C.QFont, style C.int) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(f *qt.QFont, style int), f *qt.QFont, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQFont(unsafe.Pointer(f))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetFont, slotval1, slotval2)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_SetPaper(c *qt.QColor, style int) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_setPaper(unsafe.Pointer(this.h), (*C.QColor)(c.UnsafePointer()), (C.int)(style))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnsetPaper(slot func(super func(c *qt.QColor, style int), c *qt.QColor, style int)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_setPaper(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_setPaper
|
|
|
|
func miqt_exec_callback_QsciLexer_setPaper(self *C.QsciLexer, cb C.intptr_t, c *C.QColor, style C.int) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(c *qt.QColor, style int), c *qt.QColor, style int))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQColor(unsafe.Pointer(c))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
slotval2 := (int)(style)
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_SetPaper, slotval1, slotval2)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_ReadProperties(qs *qt.QSettings, prefix string) bool {
|
|
|
|
prefix_ms := C.struct_miqt_string{}
|
|
|
|
prefix_ms.data = C.CString(prefix)
|
|
|
|
prefix_ms.len = C.size_t(len(prefix))
|
|
|
|
defer C.free(unsafe.Pointer(prefix_ms.data))
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_readProperties(unsafe.Pointer(this.h), (*C.QSettings)(qs.UnsafePointer()), prefix_ms))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnreadProperties(slot func(super func(qs *qt.QSettings, prefix string) bool, qs *qt.QSettings, prefix string) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_readProperties(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_readProperties
|
|
|
|
func miqt_exec_callback_QsciLexer_readProperties(self *C.QsciLexer, cb C.intptr_t, qs *C.QSettings, prefix C.struct_miqt_string) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(qs *qt.QSettings, prefix string) bool, qs *qt.QSettings, prefix string) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
2024-12-07 17:15:57 +13:00
|
|
|
slotval1 := qt.UnsafeNewQSettings(unsafe.Pointer(qs))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
var prefix_ms C.struct_miqt_string = prefix
|
|
|
|
prefix_ret := C.GoStringN(prefix_ms.data, C.int(int64(prefix_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(prefix_ms.data))
|
|
|
|
slotval2 := prefix_ret
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_ReadProperties, slotval1, slotval2)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_WriteProperties(qs *qt.QSettings, prefix string) bool {
|
|
|
|
prefix_ms := C.struct_miqt_string{}
|
|
|
|
prefix_ms.data = C.CString(prefix)
|
|
|
|
prefix_ms.len = C.size_t(len(prefix))
|
|
|
|
defer C.free(unsafe.Pointer(prefix_ms.data))
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_writeProperties(unsafe.Pointer(this.h), (*C.QSettings)(qs.UnsafePointer()), prefix_ms))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnwriteProperties(slot func(super func(qs *qt.QSettings, prefix string) bool, qs *qt.QSettings, prefix string) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_writeProperties(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_writeProperties
|
|
|
|
func miqt_exec_callback_QsciLexer_writeProperties(self *C.QsciLexer, cb C.intptr_t, qs *C.QSettings, prefix C.struct_miqt_string) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(qs *qt.QSettings, prefix string) bool, qs *qt.QSettings, prefix string) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
2024-12-07 17:15:57 +13:00
|
|
|
slotval1 := qt.UnsafeNewQSettings(unsafe.Pointer(qs))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
var prefix_ms C.struct_miqt_string = prefix
|
|
|
|
prefix_ret := C.GoStringN(prefix_ms.data, C.int(int64(prefix_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(prefix_ms.data))
|
|
|
|
slotval2 := prefix_ret
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_WriteProperties, slotval1, slotval2)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_Event(event *qt.QEvent) bool {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_event(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer())))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) Onevent(slot func(super func(event *qt.QEvent) bool, event *qt.QEvent) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_event
|
|
|
|
func miqt_exec_callback_QsciLexer_event(self *C.QsciLexer, cb C.intptr_t, event *C.QEvent) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt.QEvent) bool, event *qt.QEvent) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQEvent(unsafe.Pointer(event))
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_Event, slotval1)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_EventFilter(watched *qt.QObject, event *qt.QEvent) bool {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
return (bool)(C.QsciLexer_virtualbase_eventFilter(unsafe.Pointer(this.h), (*C.QObject)(watched.UnsafePointer()), (*C.QEvent)(event.UnsafePointer())))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OneventFilter(slot func(super func(watched *qt.QObject, event *qt.QEvent) bool, watched *qt.QObject, event *qt.QEvent) bool) {
|
|
|
|
ok := C.QsciLexer_override_virtual_eventFilter(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_eventFilter
|
|
|
|
func miqt_exec_callback_QsciLexer_eventFilter(self *C.QsciLexer, cb C.intptr_t, watched *C.QObject, event *C.QEvent) C.bool {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(watched *qt.QObject, event *qt.QEvent) bool, watched *qt.QObject, event *qt.QEvent) bool)
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQObject(unsafe.Pointer(watched))
|
2024-12-07 15:02:06 +13:00
|
|
|
|
2024-11-23 19:34:52 +13:00
|
|
|
slotval2 := qt.UnsafeNewQEvent(unsafe.Pointer(event))
|
|
|
|
|
|
|
|
virtualReturn := gofunc((&QsciLexer{h: self}).callVirtualBase_EventFilter, slotval1, slotval2)
|
|
|
|
|
|
|
|
return (C.bool)(virtualReturn)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_TimerEvent(event *qt.QTimerEvent) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_timerEvent(unsafe.Pointer(this.h), (*C.QTimerEvent)(event.UnsafePointer()))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OntimerEvent(slot func(super func(event *qt.QTimerEvent), event *qt.QTimerEvent)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_timerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_timerEvent
|
|
|
|
func miqt_exec_callback_QsciLexer_timerEvent(self *C.QsciLexer, cb C.intptr_t, event *C.QTimerEvent) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt.QTimerEvent), event *qt.QTimerEvent))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
2024-12-07 17:15:57 +13:00
|
|
|
slotval1 := qt.UnsafeNewQTimerEvent(unsafe.Pointer(event))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_TimerEvent, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_ChildEvent(event *qt.QChildEvent) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_childEvent(unsafe.Pointer(this.h), (*C.QChildEvent)(event.UnsafePointer()))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnchildEvent(slot func(super func(event *qt.QChildEvent), event *qt.QChildEvent)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_childEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_childEvent
|
|
|
|
func miqt_exec_callback_QsciLexer_childEvent(self *C.QsciLexer, cb C.intptr_t, event *C.QChildEvent) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt.QChildEvent), event *qt.QChildEvent))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
2024-12-07 17:15:57 +13:00
|
|
|
slotval1 := qt.UnsafeNewQChildEvent(unsafe.Pointer(event))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_ChildEvent, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_CustomEvent(event *qt.QEvent) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_customEvent(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer()))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OncustomEvent(slot func(super func(event *qt.QEvent), event *qt.QEvent)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_customEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_customEvent
|
|
|
|
func miqt_exec_callback_QsciLexer_customEvent(self *C.QsciLexer, cb C.intptr_t, event *C.QEvent) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt.QEvent), event *qt.QEvent))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQEvent(unsafe.Pointer(event))
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_CustomEvent, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_ConnectNotify(signal *qt.QMetaMethod) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_connectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer()))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OnconnectNotify(slot func(super func(signal *qt.QMetaMethod), signal *qt.QMetaMethod)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_connectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_connectNotify
|
|
|
|
func miqt_exec_callback_QsciLexer_connectNotify(self *C.QsciLexer, cb C.intptr_t, signal *C.QMetaMethod) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt.QMetaMethod), signal *qt.QMetaMethod))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQMetaMethod(unsafe.Pointer(signal))
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_ConnectNotify, slotval1)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QsciLexer) callVirtualBase_DisconnectNotify(signal *qt.QMetaMethod) {
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_virtualbase_disconnectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer()))
|
2024-11-23 19:34:52 +13:00
|
|
|
|
|
|
|
}
|
2025-02-01 13:45:16 +13:00
|
|
|
func (this *QsciLexer) OndisconnectNotify(slot func(super func(signal *qt.QMetaMethod), signal *qt.QMetaMethod)) {
|
|
|
|
ok := C.QsciLexer_override_virtual_disconnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
|
2025-01-18 17:57:48 +13:00
|
|
|
if !ok {
|
2024-12-07 14:43:28 +13:00
|
|
|
panic("miqt: can only override virtual methods for directly constructed types")
|
|
|
|
}
|
2024-11-23 19:34:52 +13:00
|
|
|
}
|
|
|
|
|
2025-02-01 13:45:16 +13:00
|
|
|
//export miqt_exec_callback_QsciLexer_disconnectNotify
|
|
|
|
func miqt_exec_callback_QsciLexer_disconnectNotify(self *C.QsciLexer, cb C.intptr_t, signal *C.QMetaMethod) {
|
2024-11-23 19:34:52 +13:00
|
|
|
gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt.QMetaMethod), signal *qt.QMetaMethod))
|
|
|
|
if !ok {
|
|
|
|
panic("miqt: callback of non-callback type (heap corruption?)")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert all CABI parameters to Go parameters
|
|
|
|
slotval1 := qt.UnsafeNewQMetaMethod(unsafe.Pointer(signal))
|
|
|
|
|
|
|
|
gofunc((&QsciLexer{h: self}).callVirtualBase_DisconnectNotify, slotval1)
|
|
|
|
|
|
|
|
}
|
2024-10-20 17:59:23 +13:00
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QsciLexer) Delete() {
|
2025-02-01 13:45:16 +13:00
|
|
|
C.QsciLexer_delete(this.h)
|
2024-10-20 17:59:23 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// GoGC adds a Go Finalizer to this pointer, so that it will be deleted
|
|
|
|
// from C++ memory once it is unreachable from Go memory.
|
|
|
|
func (this *QsciLexer) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QsciLexer) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|