miqt/qt6/gen_qtextlist.go

237 lines
6.9 KiB
Go

package qt6
/*
#include "gen_qtextlist.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QTextList struct {
h *C.QTextList
isSubclass bool
*QTextBlockGroup
}
func (this *QTextList) cPointer() *C.QTextList {
if this == nil {
return nil
}
return this.h
}
func (this *QTextList) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQTextList constructs the type using only CGO pointers.
func newQTextList(h *C.QTextList) *QTextList {
if h == nil {
return nil
}
var outptr_QTextBlockGroup *C.QTextBlockGroup = nil
C.QTextList_virtbase(h, &outptr_QTextBlockGroup)
return &QTextList{h: h,
QTextBlockGroup: newQTextBlockGroup(outptr_QTextBlockGroup)}
}
// UnsafeNewQTextList constructs the type using only unsafe pointers.
func UnsafeNewQTextList(h unsafe.Pointer) *QTextList {
return newQTextList((*C.QTextList)(h))
}
// NewQTextList constructs a new QTextList object.
func NewQTextList(doc *QTextDocument) *QTextList {
ret := newQTextList(C.QTextList_new(doc.cPointer()))
ret.isSubclass = true
return ret
}
func (this *QTextList) MetaObject() *QMetaObject {
return newQMetaObject(C.QTextList_MetaObject(this.h))
}
func (this *QTextList) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QTextList_Metacast(this.h, param1_Cstring))
}
func QTextList_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QTextList_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextList) Count() int {
return (int)(C.QTextList_Count(this.h))
}
func (this *QTextList) Item(i int) *QTextBlock {
_goptr := newQTextBlock(C.QTextList_Item(this.h, (C.int)(i)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextList) ItemNumber(param1 *QTextBlock) int {
return (int)(C.QTextList_ItemNumber(this.h, param1.cPointer()))
}
func (this *QTextList) ItemText(param1 *QTextBlock) string {
var _ms C.struct_miqt_string = C.QTextList_ItemText(this.h, param1.cPointer())
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextList) RemoveItem(i int) {
C.QTextList_RemoveItem(this.h, (C.int)(i))
}
func (this *QTextList) Remove(param1 *QTextBlock) {
C.QTextList_Remove(this.h, param1.cPointer())
}
func (this *QTextList) Add(block *QTextBlock) {
C.QTextList_Add(this.h, block.cPointer())
}
func (this *QTextList) SetFormat(format *QTextListFormat) {
C.QTextList_SetFormat(this.h, format.cPointer())
}
func (this *QTextList) Format() *QTextListFormat {
_goptr := newQTextListFormat(C.QTextList_Format(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func QTextList_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.QTextList_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QTextList_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.QTextList_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 *QTextList) callVirtualBase_BlockInserted(block *QTextBlock) {
C.QTextList_virtualbase_BlockInserted(unsafe.Pointer(this.h), block.cPointer())
}
func (this *QTextList) OnBlockInserted(slot func(super func(block *QTextBlock), block *QTextBlock)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTextList_override_virtual_BlockInserted(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTextList_BlockInserted
func miqt_exec_callback_QTextList_BlockInserted(self *C.QTextList, cb C.intptr_t, block *C.QTextBlock) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(block *QTextBlock), block *QTextBlock))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTextBlock(block)
gofunc((&QTextList{h: self}).callVirtualBase_BlockInserted, slotval1)
}
func (this *QTextList) callVirtualBase_BlockRemoved(block *QTextBlock) {
C.QTextList_virtualbase_BlockRemoved(unsafe.Pointer(this.h), block.cPointer())
}
func (this *QTextList) OnBlockRemoved(slot func(super func(block *QTextBlock), block *QTextBlock)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTextList_override_virtual_BlockRemoved(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTextList_BlockRemoved
func miqt_exec_callback_QTextList_BlockRemoved(self *C.QTextList, cb C.intptr_t, block *C.QTextBlock) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(block *QTextBlock), block *QTextBlock))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTextBlock(block)
gofunc((&QTextList{h: self}).callVirtualBase_BlockRemoved, slotval1)
}
func (this *QTextList) callVirtualBase_BlockFormatChanged(block *QTextBlock) {
C.QTextList_virtualbase_BlockFormatChanged(unsafe.Pointer(this.h), block.cPointer())
}
func (this *QTextList) OnBlockFormatChanged(slot func(super func(block *QTextBlock), block *QTextBlock)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTextList_override_virtual_BlockFormatChanged(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTextList_BlockFormatChanged
func miqt_exec_callback_QTextList_BlockFormatChanged(self *C.QTextList, cb C.intptr_t, block *C.QTextBlock) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(block *QTextBlock), block *QTextBlock))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTextBlock(block)
gofunc((&QTextList{h: self}).callVirtualBase_BlockFormatChanged, slotval1)
}
// Delete this object from C++ memory.
func (this *QTextList) Delete() {
C.QTextList_Delete(this.h, C.bool(this.isSubclass))
}
// 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 *QTextList) GoGC() {
runtime.SetFinalizer(this, func(this *QTextList) {
this.Delete()
runtime.KeepAlive(this.h)
})
}