mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
151 lines
3.8 KiB
Go
151 lines
3.8 KiB
Go
package qt6
|
|
|
|
/*
|
|
|
|
#include "gen_qtextlist.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QTextList struct {
|
|
h *C.QTextList
|
|
*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)
|
|
}
|
|
|
|
func newQTextList(h *C.QTextList) *QTextList {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QTextList{h: h, QTextBlockGroup: UnsafeNewQTextBlockGroup(unsafe.Pointer(h))}
|
|
}
|
|
|
|
func UnsafeNewQTextList(h unsafe.Pointer) *QTextList {
|
|
return newQTextList((*C.QTextList)(h))
|
|
}
|
|
|
|
// NewQTextList constructs a new QTextList object.
|
|
func NewQTextList(doc *QTextDocument) *QTextList {
|
|
ret := C.QTextList_new(doc.cPointer())
|
|
return newQTextList(ret)
|
|
}
|
|
|
|
func (this *QTextList) MetaObject() *QMetaObject {
|
|
return UnsafeNewQMetaObject(unsafe.Pointer(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 {
|
|
_ret := C.QTextList_Item(this.h, (C.int)(i))
|
|
_goptr := newQTextBlock(_ret)
|
|
_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 {
|
|
_ret := C.QTextList_Format(this.h)
|
|
_goptr := newQTextListFormat(_ret)
|
|
_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
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QTextList) Delete() {
|
|
C.QTextList_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 *QTextList) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QTextList) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|