miqt/qt6/gen_qtexttable.go

344 lines
9.7 KiB
Go
Raw Permalink Normal View History

2024-10-20 05:21:03 +00:00
package qt6
/*
#include "gen_qtexttable.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QTextTableCell struct {
2024-11-19 06:29:06 +00:00
h *C.QTextTableCell
isSubclass bool
2024-10-20 05:21:03 +00:00
}
func (this *QTextTableCell) cPointer() *C.QTextTableCell {
if this == nil {
return nil
}
return this.h
}
func (this *QTextTableCell) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQTextTableCell constructs the type using only CGO pointers.
2024-10-20 05:21:03 +00:00
func newQTextTableCell(h *C.QTextTableCell) *QTextTableCell {
if h == nil {
return nil
}
2024-12-07 04:15:57 +00:00
2024-10-20 05:21:03 +00:00
return &QTextTableCell{h: h}
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQTextTableCell constructs the type using only unsafe pointers.
2024-10-20 05:21:03 +00:00
func UnsafeNewQTextTableCell(h unsafe.Pointer) *QTextTableCell {
2024-12-07 04:15:57 +00:00
return newQTextTableCell((*C.QTextTableCell)(h))
2024-10-20 05:21:03 +00:00
}
// NewQTextTableCell constructs a new QTextTableCell object.
func NewQTextTableCell() *QTextTableCell {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQTextTableCell(C.QTextTableCell_new())
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQTextTableCell2 constructs a new QTextTableCell object.
func NewQTextTableCell2(o *QTextTableCell) *QTextTableCell {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQTextTableCell(C.QTextTableCell_new2(o.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
func (this *QTextTableCell) OperatorAssign(o *QTextTableCell) {
C.QTextTableCell_OperatorAssign(this.h, o.cPointer())
}
func (this *QTextTableCell) SetFormat(format *QTextCharFormat) {
C.QTextTableCell_SetFormat(this.h, format.cPointer())
}
func (this *QTextTableCell) Format() *QTextCharFormat {
2024-12-07 04:15:57 +00:00
_goptr := newQTextCharFormat(C.QTextTableCell_Format(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTableCell) Row() int {
return (int)(C.QTextTableCell_Row(this.h))
}
func (this *QTextTableCell) Column() int {
return (int)(C.QTextTableCell_Column(this.h))
}
func (this *QTextTableCell) RowSpan() int {
return (int)(C.QTextTableCell_RowSpan(this.h))
}
func (this *QTextTableCell) ColumnSpan() int {
return (int)(C.QTextTableCell_ColumnSpan(this.h))
}
func (this *QTextTableCell) IsValid() bool {
return (bool)(C.QTextTableCell_IsValid(this.h))
}
func (this *QTextTableCell) FirstCursorPosition() *QTextCursor {
_goptr := newQTextCursor(C.QTextTableCell_FirstCursorPosition(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTableCell) LastCursorPosition() *QTextCursor {
_goptr := newQTextCursor(C.QTextTableCell_LastCursorPosition(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTableCell) FirstPosition() int {
return (int)(C.QTextTableCell_FirstPosition(this.h))
}
func (this *QTextTableCell) LastPosition() int {
return (int)(C.QTextTableCell_LastPosition(this.h))
}
func (this *QTextTableCell) OperatorEqual(other *QTextTableCell) bool {
return (bool)(C.QTextTableCell_OperatorEqual(this.h, other.cPointer()))
}
func (this *QTextTableCell) OperatorNotEqual(other *QTextTableCell) bool {
return (bool)(C.QTextTableCell_OperatorNotEqual(this.h, other.cPointer()))
}
func (this *QTextTableCell) Begin() *QTextFrame__iterator {
_goptr := newQTextFrame__iterator(C.QTextTableCell_Begin(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTableCell) End() *QTextFrame__iterator {
_goptr := newQTextFrame__iterator(C.QTextTableCell_End(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTableCell) TableCellFormatIndex() int {
return (int)(C.QTextTableCell_TableCellFormatIndex(this.h))
}
// Delete this object from C++ memory.
func (this *QTextTableCell) Delete() {
2024-11-19 06:29:06 +00:00
C.QTextTableCell_Delete(this.h, C.bool(this.isSubclass))
2024-10-20 05:21:03 +00: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 *QTextTableCell) GoGC() {
runtime.SetFinalizer(this, func(this *QTextTableCell) {
this.Delete()
runtime.KeepAlive(this.h)
})
}
type QTextTable struct {
2024-11-19 06:29:06 +00:00
h *C.QTextTable
isSubclass bool
2024-10-20 05:21:03 +00:00
*QTextFrame
}
func (this *QTextTable) cPointer() *C.QTextTable {
if this == nil {
return nil
}
return this.h
}
func (this *QTextTable) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQTextTable constructs the type using only CGO pointers.
2024-12-07 04:15:57 +00:00
func newQTextTable(h *C.QTextTable) *QTextTable {
2024-10-20 05:21:03 +00:00
if h == nil {
return nil
}
2024-12-07 04:15:57 +00:00
var outptr_QTextFrame *C.QTextFrame = nil
C.QTextTable_virtbase(h, &outptr_QTextFrame)
2024-11-19 06:29:06 +00:00
return &QTextTable{h: h,
2024-12-07 04:15:57 +00:00
QTextFrame: newQTextFrame(outptr_QTextFrame)}
2024-10-20 05:21:03 +00:00
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQTextTable constructs the type using only unsafe pointers.
2024-12-07 04:15:57 +00:00
func UnsafeNewQTextTable(h unsafe.Pointer) *QTextTable {
return newQTextTable((*C.QTextTable)(h))
2024-10-20 05:21:03 +00:00
}
// NewQTextTable constructs a new QTextTable object.
func NewQTextTable(doc *QTextDocument) *QTextTable {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQTextTable(C.QTextTable_new(doc.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
func (this *QTextTable) MetaObject() *QMetaObject {
return newQMetaObject(C.QTextTable_MetaObject(this.h))
2024-10-20 05:21:03 +00:00
}
func (this *QTextTable) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QTextTable_Metacast(this.h, param1_Cstring))
}
func QTextTable_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QTextTable_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextTable) Resize(rows int, cols int) {
C.QTextTable_Resize(this.h, (C.int)(rows), (C.int)(cols))
}
func (this *QTextTable) InsertRows(pos int, num int) {
C.QTextTable_InsertRows(this.h, (C.int)(pos), (C.int)(num))
}
func (this *QTextTable) InsertColumns(pos int, num int) {
C.QTextTable_InsertColumns(this.h, (C.int)(pos), (C.int)(num))
}
func (this *QTextTable) AppendRows(count int) {
C.QTextTable_AppendRows(this.h, (C.int)(count))
}
func (this *QTextTable) AppendColumns(count int) {
C.QTextTable_AppendColumns(this.h, (C.int)(count))
}
func (this *QTextTable) RemoveRows(pos int, num int) {
C.QTextTable_RemoveRows(this.h, (C.int)(pos), (C.int)(num))
}
func (this *QTextTable) RemoveColumns(pos int, num int) {
C.QTextTable_RemoveColumns(this.h, (C.int)(pos), (C.int)(num))
}
func (this *QTextTable) MergeCells(row int, col int, numRows int, numCols int) {
C.QTextTable_MergeCells(this.h, (C.int)(row), (C.int)(col), (C.int)(numRows), (C.int)(numCols))
}
func (this *QTextTable) MergeCellsWithCursor(cursor *QTextCursor) {
C.QTextTable_MergeCellsWithCursor(this.h, cursor.cPointer())
}
func (this *QTextTable) SplitCell(row int, col int, numRows int, numCols int) {
C.QTextTable_SplitCell(this.h, (C.int)(row), (C.int)(col), (C.int)(numRows), (C.int)(numCols))
}
func (this *QTextTable) Rows() int {
return (int)(C.QTextTable_Rows(this.h))
}
func (this *QTextTable) Columns() int {
return (int)(C.QTextTable_Columns(this.h))
}
func (this *QTextTable) CellAt(row int, col int) *QTextTableCell {
_goptr := newQTextTableCell(C.QTextTable_CellAt(this.h, (C.int)(row), (C.int)(col)))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTable) CellAtWithPosition(position int) *QTextTableCell {
_goptr := newQTextTableCell(C.QTextTable_CellAtWithPosition(this.h, (C.int)(position)))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTable) CellAtWithQTextCursor(c *QTextCursor) *QTextTableCell {
_goptr := newQTextTableCell(C.QTextTable_CellAtWithQTextCursor(this.h, c.cPointer()))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTable) RowStart(c *QTextCursor) *QTextCursor {
_goptr := newQTextCursor(C.QTextTable_RowStart(this.h, c.cPointer()))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTable) RowEnd(c *QTextCursor) *QTextCursor {
_goptr := newQTextCursor(C.QTextTable_RowEnd(this.h, c.cPointer()))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextTable) SetFormat(format *QTextTableFormat) {
C.QTextTable_SetFormat(this.h, format.cPointer())
}
func (this *QTextTable) Format() *QTextTableFormat {
2024-12-07 04:15:57 +00:00
_goptr := newQTextTableFormat(C.QTextTable_Format(this.h))
2024-10-20 05:21:03 +00:00
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func QTextTable_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.QTextTable_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QTextTable_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.QTextTable_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 *QTextTable) Delete() {
2024-11-19 06:29:06 +00:00
C.QTextTable_Delete(this.h, C.bool(this.isSubclass))
2024-10-20 05:21:03 +00: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 *QTextTable) GoGC() {
runtime.SetFinalizer(this, func(this *QTextTable) {
this.Delete()
runtime.KeepAlive(this.h)
})
}