miqt/qt-restricted-extras/qscintilla6/gen_qscilexercustom.go
2024-11-06 18:44:05 +13:00

129 lines
3.4 KiB
Go

package qscintilla6
/*
#include "gen_qscilexercustom.h"
#include <stdlib.h>
*/
import "C"
import (
"github.com/mappu/miqt/qt6"
"runtime"
"unsafe"
)
type QsciLexerCustom struct {
h *C.QsciLexerCustom
*QsciLexer
}
func (this *QsciLexerCustom) cPointer() *C.QsciLexerCustom {
if this == nil {
return nil
}
return this.h
}
func (this *QsciLexerCustom) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
func newQsciLexerCustom(h *C.QsciLexerCustom) *QsciLexerCustom {
if h == nil {
return nil
}
return &QsciLexerCustom{h: h, QsciLexer: UnsafeNewQsciLexer(unsafe.Pointer(h))}
}
func UnsafeNewQsciLexerCustom(h unsafe.Pointer) *QsciLexerCustom {
return newQsciLexerCustom((*C.QsciLexerCustom)(h))
}
func (this *QsciLexerCustom) MetaObject() *qt6.QMetaObject {
return qt6.UnsafeNewQMetaObject(unsafe.Pointer(C.QsciLexerCustom_MetaObject(this.h)))
}
func (this *QsciLexerCustom) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QsciLexerCustom_Metacast(this.h, param1_Cstring))
}
func QsciLexerCustom_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QsciLexerCustom_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QsciLexerCustom) SetStyling(length int, style int) {
C.QsciLexerCustom_SetStyling(this.h, (C.int)(length), (C.int)(style))
}
func (this *QsciLexerCustom) SetStyling2(length int, style *QsciStyle) {
C.QsciLexerCustom_SetStyling2(this.h, (C.int)(length), style.cPointer())
}
func (this *QsciLexerCustom) StartStyling(pos int) {
C.QsciLexerCustom_StartStyling(this.h, (C.int)(pos))
}
func (this *QsciLexerCustom) StyleText(start int, end int) {
C.QsciLexerCustom_StyleText(this.h, (C.int)(start), (C.int)(end))
}
func (this *QsciLexerCustom) SetEditor(editor *QsciScintilla) {
C.QsciLexerCustom_SetEditor(this.h, editor.cPointer())
}
func (this *QsciLexerCustom) StyleBitsNeeded() int {
return (int)(C.QsciLexerCustom_StyleBitsNeeded(this.h))
}
func QsciLexerCustom_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))
var _ms C.struct_miqt_string = C.QsciLexerCustom_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QsciLexerCustom_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))
var _ms C.struct_miqt_string = C.QsciLexerCustom_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QsciLexerCustom) StartStyling2(pos int, styleBits int) {
C.QsciLexerCustom_StartStyling2(this.h, (C.int)(pos), (C.int)(styleBits))
}
// Delete this object from C++ memory.
func (this *QsciLexerCustom) Delete() {
C.QsciLexerCustom_Delete(this.h)
}
// 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 *QsciLexerCustom) GoGC() {
runtime.SetFinalizer(this, func(this *QsciLexerCustom) {
this.Delete()
runtime.KeepAlive(this.h)
})
}