miqt/qt/gen_qtablewidget.go

2242 lines
79 KiB
Go

package qt
/*
#include "gen_qtablewidget.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QTableWidgetItem__ItemType int
const (
QTableWidgetItem__Type QTableWidgetItem__ItemType = 0
QTableWidgetItem__UserType QTableWidgetItem__ItemType = 1000
)
type QTableWidgetSelectionRange struct {
h *C.QTableWidgetSelectionRange
isSubclass bool
}
func (this *QTableWidgetSelectionRange) cPointer() *C.QTableWidgetSelectionRange {
if this == nil {
return nil
}
return this.h
}
func (this *QTableWidgetSelectionRange) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQTableWidgetSelectionRange constructs the type using only CGO pointers.
func newQTableWidgetSelectionRange(h *C.QTableWidgetSelectionRange) *QTableWidgetSelectionRange {
if h == nil {
return nil
}
return &QTableWidgetSelectionRange{h: h}
}
// UnsafeNewQTableWidgetSelectionRange constructs the type using only unsafe pointers.
func UnsafeNewQTableWidgetSelectionRange(h unsafe.Pointer) *QTableWidgetSelectionRange {
return newQTableWidgetSelectionRange((*C.QTableWidgetSelectionRange)(h))
}
// NewQTableWidgetSelectionRange constructs a new QTableWidgetSelectionRange object.
func NewQTableWidgetSelectionRange() *QTableWidgetSelectionRange {
ret := newQTableWidgetSelectionRange(C.QTableWidgetSelectionRange_new())
ret.isSubclass = true
return ret
}
// NewQTableWidgetSelectionRange2 constructs a new QTableWidgetSelectionRange object.
func NewQTableWidgetSelectionRange2(top int, left int, bottom int, right int) *QTableWidgetSelectionRange {
ret := newQTableWidgetSelectionRange(C.QTableWidgetSelectionRange_new2((C.int)(top), (C.int)(left), (C.int)(bottom), (C.int)(right)))
ret.isSubclass = true
return ret
}
// NewQTableWidgetSelectionRange3 constructs a new QTableWidgetSelectionRange object.
func NewQTableWidgetSelectionRange3(other *QTableWidgetSelectionRange) *QTableWidgetSelectionRange {
ret := newQTableWidgetSelectionRange(C.QTableWidgetSelectionRange_new3(other.cPointer()))
ret.isSubclass = true
return ret
}
func (this *QTableWidgetSelectionRange) OperatorAssign(other *QTableWidgetSelectionRange) {
C.QTableWidgetSelectionRange_OperatorAssign(this.h, other.cPointer())
}
func (this *QTableWidgetSelectionRange) TopRow() int {
return (int)(C.QTableWidgetSelectionRange_TopRow(this.h))
}
func (this *QTableWidgetSelectionRange) BottomRow() int {
return (int)(C.QTableWidgetSelectionRange_BottomRow(this.h))
}
func (this *QTableWidgetSelectionRange) LeftColumn() int {
return (int)(C.QTableWidgetSelectionRange_LeftColumn(this.h))
}
func (this *QTableWidgetSelectionRange) RightColumn() int {
return (int)(C.QTableWidgetSelectionRange_RightColumn(this.h))
}
func (this *QTableWidgetSelectionRange) RowCount() int {
return (int)(C.QTableWidgetSelectionRange_RowCount(this.h))
}
func (this *QTableWidgetSelectionRange) ColumnCount() int {
return (int)(C.QTableWidgetSelectionRange_ColumnCount(this.h))
}
// Delete this object from C++ memory.
func (this *QTableWidgetSelectionRange) Delete() {
C.QTableWidgetSelectionRange_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 *QTableWidgetSelectionRange) GoGC() {
runtime.SetFinalizer(this, func(this *QTableWidgetSelectionRange) {
this.Delete()
runtime.KeepAlive(this.h)
})
}
type QTableWidgetItem struct {
h *C.QTableWidgetItem
isSubclass bool
}
func (this *QTableWidgetItem) cPointer() *C.QTableWidgetItem {
if this == nil {
return nil
}
return this.h
}
func (this *QTableWidgetItem) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQTableWidgetItem constructs the type using only CGO pointers.
func newQTableWidgetItem(h *C.QTableWidgetItem) *QTableWidgetItem {
if h == nil {
return nil
}
return &QTableWidgetItem{h: h}
}
// UnsafeNewQTableWidgetItem constructs the type using only unsafe pointers.
func UnsafeNewQTableWidgetItem(h unsafe.Pointer) *QTableWidgetItem {
return newQTableWidgetItem((*C.QTableWidgetItem)(h))
}
// NewQTableWidgetItem constructs a new QTableWidgetItem object.
func NewQTableWidgetItem() *QTableWidgetItem {
ret := newQTableWidgetItem(C.QTableWidgetItem_new())
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem2 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem2(text string) *QTableWidgetItem {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
ret := newQTableWidgetItem(C.QTableWidgetItem_new2(text_ms))
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem3 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem3(icon *QIcon, text string) *QTableWidgetItem {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
ret := newQTableWidgetItem(C.QTableWidgetItem_new3(icon.cPointer(), text_ms))
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem4 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem4(other *QTableWidgetItem) *QTableWidgetItem {
ret := newQTableWidgetItem(C.QTableWidgetItem_new4(other.cPointer()))
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem5 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem5(typeVal int) *QTableWidgetItem {
ret := newQTableWidgetItem(C.QTableWidgetItem_new5((C.int)(typeVal)))
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem6 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem6(text string, typeVal int) *QTableWidgetItem {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
ret := newQTableWidgetItem(C.QTableWidgetItem_new6(text_ms, (C.int)(typeVal)))
ret.isSubclass = true
return ret
}
// NewQTableWidgetItem7 constructs a new QTableWidgetItem object.
func NewQTableWidgetItem7(icon *QIcon, text string, typeVal int) *QTableWidgetItem {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
ret := newQTableWidgetItem(C.QTableWidgetItem_new7(icon.cPointer(), text_ms, (C.int)(typeVal)))
ret.isSubclass = true
return ret
}
func (this *QTableWidgetItem) Clone() *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidgetItem_Clone(this.h))
}
func (this *QTableWidgetItem) TableWidget() *QTableWidget {
return newQTableWidget(C.QTableWidgetItem_TableWidget(this.h))
}
func (this *QTableWidgetItem) Row() int {
return (int)(C.QTableWidgetItem_Row(this.h))
}
func (this *QTableWidgetItem) Column() int {
return (int)(C.QTableWidgetItem_Column(this.h))
}
func (this *QTableWidgetItem) SetSelected(selectVal bool) {
C.QTableWidgetItem_SetSelected(this.h, (C.bool)(selectVal))
}
func (this *QTableWidgetItem) IsSelected() bool {
return (bool)(C.QTableWidgetItem_IsSelected(this.h))
}
func (this *QTableWidgetItem) Flags() ItemFlag {
return (ItemFlag)(C.QTableWidgetItem_Flags(this.h))
}
func (this *QTableWidgetItem) SetFlags(flags ItemFlag) {
C.QTableWidgetItem_SetFlags(this.h, (C.int)(flags))
}
func (this *QTableWidgetItem) Text() string {
var _ms C.struct_miqt_string = C.QTableWidgetItem_Text(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTableWidgetItem) SetText(text string) {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
C.QTableWidgetItem_SetText(this.h, text_ms)
}
func (this *QTableWidgetItem) Icon() *QIcon {
_goptr := newQIcon(C.QTableWidgetItem_Icon(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetIcon(icon *QIcon) {
C.QTableWidgetItem_SetIcon(this.h, icon.cPointer())
}
func (this *QTableWidgetItem) StatusTip() string {
var _ms C.struct_miqt_string = C.QTableWidgetItem_StatusTip(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTableWidgetItem) SetStatusTip(statusTip string) {
statusTip_ms := C.struct_miqt_string{}
statusTip_ms.data = C.CString(statusTip)
statusTip_ms.len = C.size_t(len(statusTip))
defer C.free(unsafe.Pointer(statusTip_ms.data))
C.QTableWidgetItem_SetStatusTip(this.h, statusTip_ms)
}
func (this *QTableWidgetItem) ToolTip() string {
var _ms C.struct_miqt_string = C.QTableWidgetItem_ToolTip(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTableWidgetItem) SetToolTip(toolTip string) {
toolTip_ms := C.struct_miqt_string{}
toolTip_ms.data = C.CString(toolTip)
toolTip_ms.len = C.size_t(len(toolTip))
defer C.free(unsafe.Pointer(toolTip_ms.data))
C.QTableWidgetItem_SetToolTip(this.h, toolTip_ms)
}
func (this *QTableWidgetItem) WhatsThis() string {
var _ms C.struct_miqt_string = C.QTableWidgetItem_WhatsThis(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTableWidgetItem) SetWhatsThis(whatsThis string) {
whatsThis_ms := C.struct_miqt_string{}
whatsThis_ms.data = C.CString(whatsThis)
whatsThis_ms.len = C.size_t(len(whatsThis))
defer C.free(unsafe.Pointer(whatsThis_ms.data))
C.QTableWidgetItem_SetWhatsThis(this.h, whatsThis_ms)
}
func (this *QTableWidgetItem) Font() *QFont {
_goptr := newQFont(C.QTableWidgetItem_Font(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetFont(font *QFont) {
C.QTableWidgetItem_SetFont(this.h, font.cPointer())
}
func (this *QTableWidgetItem) TextAlignment() int {
return (int)(C.QTableWidgetItem_TextAlignment(this.h))
}
func (this *QTableWidgetItem) SetTextAlignment(alignment int) {
C.QTableWidgetItem_SetTextAlignment(this.h, (C.int)(alignment))
}
func (this *QTableWidgetItem) BackgroundColor() *QColor {
_goptr := newQColor(C.QTableWidgetItem_BackgroundColor(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetBackgroundColor(color *QColor) {
C.QTableWidgetItem_SetBackgroundColor(this.h, color.cPointer())
}
func (this *QTableWidgetItem) Background() *QBrush {
_goptr := newQBrush(C.QTableWidgetItem_Background(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetBackground(brush *QBrush) {
C.QTableWidgetItem_SetBackground(this.h, brush.cPointer())
}
func (this *QTableWidgetItem) TextColor() *QColor {
_goptr := newQColor(C.QTableWidgetItem_TextColor(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetTextColor(color *QColor) {
C.QTableWidgetItem_SetTextColor(this.h, color.cPointer())
}
func (this *QTableWidgetItem) Foreground() *QBrush {
_goptr := newQBrush(C.QTableWidgetItem_Foreground(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetForeground(brush *QBrush) {
C.QTableWidgetItem_SetForeground(this.h, brush.cPointer())
}
func (this *QTableWidgetItem) CheckState() CheckState {
return (CheckState)(C.QTableWidgetItem_CheckState(this.h))
}
func (this *QTableWidgetItem) SetCheckState(state CheckState) {
C.QTableWidgetItem_SetCheckState(this.h, (C.int)(state))
}
func (this *QTableWidgetItem) SizeHint() *QSize {
_goptr := newQSize(C.QTableWidgetItem_SizeHint(this.h))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetSizeHint(size *QSize) {
C.QTableWidgetItem_SetSizeHint(this.h, size.cPointer())
}
func (this *QTableWidgetItem) Data(role int) *QVariant {
_goptr := newQVariant(C.QTableWidgetItem_Data(this.h, (C.int)(role)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) SetData(role int, value *QVariant) {
C.QTableWidgetItem_SetData(this.h, (C.int)(role), value.cPointer())
}
func (this *QTableWidgetItem) OperatorLesser(other *QTableWidgetItem) bool {
return (bool)(C.QTableWidgetItem_OperatorLesser(this.h, other.cPointer()))
}
func (this *QTableWidgetItem) Read(in *QDataStream) {
C.QTableWidgetItem_Read(this.h, in.cPointer())
}
func (this *QTableWidgetItem) Write(out *QDataStream) {
C.QTableWidgetItem_Write(this.h, out.cPointer())
}
func (this *QTableWidgetItem) OperatorAssign(other *QTableWidgetItem) {
C.QTableWidgetItem_OperatorAssign(this.h, other.cPointer())
}
func (this *QTableWidgetItem) Type() int {
return (int)(C.QTableWidgetItem_Type(this.h))
}
func (this *QTableWidgetItem) callVirtualBase_Clone() *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidgetItem_virtualbase_Clone(unsafe.Pointer(this.h)))
}
func (this *QTableWidgetItem) OnClone(slot func(super func() *QTableWidgetItem) *QTableWidgetItem) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_Clone(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_Clone
func miqt_exec_callback_QTableWidgetItem_Clone(self *C.QTableWidgetItem, cb C.intptr_t) *C.QTableWidgetItem {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() *QTableWidgetItem) *QTableWidgetItem)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidgetItem{h: self}).callVirtualBase_Clone)
return virtualReturn.cPointer()
}
func (this *QTableWidgetItem) callVirtualBase_Data(role int) *QVariant {
_goptr := newQVariant(C.QTableWidgetItem_virtualbase_Data(unsafe.Pointer(this.h), (C.int)(role)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidgetItem) OnData(slot func(super func(role int) *QVariant, role int) *QVariant) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_Data(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_Data
func miqt_exec_callback_QTableWidgetItem_Data(self *C.QTableWidgetItem, cb C.intptr_t, role C.int) *C.QVariant {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(role int) *QVariant, role int) *QVariant)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(role)
virtualReturn := gofunc((&QTableWidgetItem{h: self}).callVirtualBase_Data, slotval1)
return virtualReturn.cPointer()
}
func (this *QTableWidgetItem) callVirtualBase_SetData(role int, value *QVariant) {
C.QTableWidgetItem_virtualbase_SetData(unsafe.Pointer(this.h), (C.int)(role), value.cPointer())
}
func (this *QTableWidgetItem) OnSetData(slot func(super func(role int, value *QVariant), role int, value *QVariant)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_SetData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_SetData
func miqt_exec_callback_QTableWidgetItem_SetData(self *C.QTableWidgetItem, cb C.intptr_t, role C.int, value *C.QVariant) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(role int, value *QVariant), role int, value *QVariant))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(role)
slotval2 := newQVariant(value)
gofunc((&QTableWidgetItem{h: self}).callVirtualBase_SetData, slotval1, slotval2)
}
func (this *QTableWidgetItem) callVirtualBase_OperatorLesser(other *QTableWidgetItem) bool {
return (bool)(C.QTableWidgetItem_virtualbase_OperatorLesser(unsafe.Pointer(this.h), other.cPointer()))
}
func (this *QTableWidgetItem) OnOperatorLesser(slot func(super func(other *QTableWidgetItem) bool, other *QTableWidgetItem) bool) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_OperatorLesser(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_OperatorLesser
func miqt_exec_callback_QTableWidgetItem_OperatorLesser(self *C.QTableWidgetItem, cb C.intptr_t, other *C.QTableWidgetItem) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(other *QTableWidgetItem) bool, other *QTableWidgetItem) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(other)
virtualReturn := gofunc((&QTableWidgetItem{h: self}).callVirtualBase_OperatorLesser, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QTableWidgetItem) callVirtualBase_Read(in *QDataStream) {
C.QTableWidgetItem_virtualbase_Read(unsafe.Pointer(this.h), in.cPointer())
}
func (this *QTableWidgetItem) OnRead(slot func(super func(in *QDataStream), in *QDataStream)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_Read(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_Read
func miqt_exec_callback_QTableWidgetItem_Read(self *C.QTableWidgetItem, cb C.intptr_t, in *C.QDataStream) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(in *QDataStream), in *QDataStream))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQDataStream(in)
gofunc((&QTableWidgetItem{h: self}).callVirtualBase_Read, slotval1)
}
func (this *QTableWidgetItem) callVirtualBase_Write(out *QDataStream) {
C.QTableWidgetItem_virtualbase_Write(unsafe.Pointer(this.h), out.cPointer())
}
func (this *QTableWidgetItem) OnWrite(slot func(super func(out *QDataStream), out *QDataStream)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidgetItem_override_virtual_Write(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidgetItem_Write
func miqt_exec_callback_QTableWidgetItem_Write(self *C.QTableWidgetItem, cb C.intptr_t, out *C.QDataStream) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(out *QDataStream), out *QDataStream))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQDataStream(out)
gofunc((&QTableWidgetItem{h: self}).callVirtualBase_Write, slotval1)
}
// Delete this object from C++ memory.
func (this *QTableWidgetItem) Delete() {
C.QTableWidgetItem_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 *QTableWidgetItem) GoGC() {
runtime.SetFinalizer(this, func(this *QTableWidgetItem) {
this.Delete()
runtime.KeepAlive(this.h)
})
}
type QTableWidget struct {
h *C.QTableWidget
isSubclass bool
*QTableView
}
func (this *QTableWidget) cPointer() *C.QTableWidget {
if this == nil {
return nil
}
return this.h
}
func (this *QTableWidget) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQTableWidget constructs the type using only CGO pointers.
func newQTableWidget(h *C.QTableWidget) *QTableWidget {
if h == nil {
return nil
}
var outptr_QTableView *C.QTableView = nil
C.QTableWidget_virtbase(h, &outptr_QTableView)
return &QTableWidget{h: h,
QTableView: newQTableView(outptr_QTableView)}
}
// UnsafeNewQTableWidget constructs the type using only unsafe pointers.
func UnsafeNewQTableWidget(h unsafe.Pointer) *QTableWidget {
return newQTableWidget((*C.QTableWidget)(h))
}
// NewQTableWidget constructs a new QTableWidget object.
func NewQTableWidget(parent *QWidget) *QTableWidget {
ret := newQTableWidget(C.QTableWidget_new(parent.cPointer()))
ret.isSubclass = true
return ret
}
// NewQTableWidget2 constructs a new QTableWidget object.
func NewQTableWidget2() *QTableWidget {
ret := newQTableWidget(C.QTableWidget_new2())
ret.isSubclass = true
return ret
}
// NewQTableWidget3 constructs a new QTableWidget object.
func NewQTableWidget3(rows int, columns int) *QTableWidget {
ret := newQTableWidget(C.QTableWidget_new3((C.int)(rows), (C.int)(columns)))
ret.isSubclass = true
return ret
}
// NewQTableWidget4 constructs a new QTableWidget object.
func NewQTableWidget4(rows int, columns int, parent *QWidget) *QTableWidget {
ret := newQTableWidget(C.QTableWidget_new4((C.int)(rows), (C.int)(columns), parent.cPointer()))
ret.isSubclass = true
return ret
}
func (this *QTableWidget) MetaObject() *QMetaObject {
return newQMetaObject(C.QTableWidget_MetaObject(this.h))
}
func (this *QTableWidget) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QTableWidget_Metacast(this.h, param1_Cstring))
}
func QTableWidget_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QTableWidget_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QTableWidget_TrUtf8(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QTableWidget_TrUtf8(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTableWidget) SetRowCount(rows int) {
C.QTableWidget_SetRowCount(this.h, (C.int)(rows))
}
func (this *QTableWidget) RowCount() int {
return (int)(C.QTableWidget_RowCount(this.h))
}
func (this *QTableWidget) SetColumnCount(columns int) {
C.QTableWidget_SetColumnCount(this.h, (C.int)(columns))
}
func (this *QTableWidget) ColumnCount() int {
return (int)(C.QTableWidget_ColumnCount(this.h))
}
func (this *QTableWidget) Row(item *QTableWidgetItem) int {
return (int)(C.QTableWidget_Row(this.h, item.cPointer()))
}
func (this *QTableWidget) Column(item *QTableWidgetItem) int {
return (int)(C.QTableWidget_Column(this.h, item.cPointer()))
}
func (this *QTableWidget) Item(row int, column int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_Item(this.h, (C.int)(row), (C.int)(column)))
}
func (this *QTableWidget) SetItem(row int, column int, item *QTableWidgetItem) {
C.QTableWidget_SetItem(this.h, (C.int)(row), (C.int)(column), item.cPointer())
}
func (this *QTableWidget) TakeItem(row int, column int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_TakeItem(this.h, (C.int)(row), (C.int)(column)))
}
func (this *QTableWidget) VerticalHeaderItem(row int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_VerticalHeaderItem(this.h, (C.int)(row)))
}
func (this *QTableWidget) SetVerticalHeaderItem(row int, item *QTableWidgetItem) {
C.QTableWidget_SetVerticalHeaderItem(this.h, (C.int)(row), item.cPointer())
}
func (this *QTableWidget) TakeVerticalHeaderItem(row int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_TakeVerticalHeaderItem(this.h, (C.int)(row)))
}
func (this *QTableWidget) HorizontalHeaderItem(column int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_HorizontalHeaderItem(this.h, (C.int)(column)))
}
func (this *QTableWidget) SetHorizontalHeaderItem(column int, item *QTableWidgetItem) {
C.QTableWidget_SetHorizontalHeaderItem(this.h, (C.int)(column), item.cPointer())
}
func (this *QTableWidget) TakeHorizontalHeaderItem(column int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_TakeHorizontalHeaderItem(this.h, (C.int)(column)))
}
func (this *QTableWidget) SetVerticalHeaderLabels(labels []string) {
labels_CArray := (*[0xffff]C.struct_miqt_string)(C.malloc(C.size_t(int(unsafe.Sizeof(C.struct_miqt_string{})) * len(labels))))
defer C.free(unsafe.Pointer(labels_CArray))
for i := range labels {
labels_i_ms := C.struct_miqt_string{}
labels_i_ms.data = C.CString(labels[i])
labels_i_ms.len = C.size_t(len(labels[i]))
defer C.free(unsafe.Pointer(labels_i_ms.data))
labels_CArray[i] = labels_i_ms
}
labels_ma := C.struct_miqt_array{len: C.size_t(len(labels)), data: unsafe.Pointer(labels_CArray)}
C.QTableWidget_SetVerticalHeaderLabels(this.h, labels_ma)
}
func (this *QTableWidget) SetHorizontalHeaderLabels(labels []string) {
labels_CArray := (*[0xffff]C.struct_miqt_string)(C.malloc(C.size_t(int(unsafe.Sizeof(C.struct_miqt_string{})) * len(labels))))
defer C.free(unsafe.Pointer(labels_CArray))
for i := range labels {
labels_i_ms := C.struct_miqt_string{}
labels_i_ms.data = C.CString(labels[i])
labels_i_ms.len = C.size_t(len(labels[i]))
defer C.free(unsafe.Pointer(labels_i_ms.data))
labels_CArray[i] = labels_i_ms
}
labels_ma := C.struct_miqt_array{len: C.size_t(len(labels)), data: unsafe.Pointer(labels_CArray)}
C.QTableWidget_SetHorizontalHeaderLabels(this.h, labels_ma)
}
func (this *QTableWidget) CurrentRow() int {
return (int)(C.QTableWidget_CurrentRow(this.h))
}
func (this *QTableWidget) CurrentColumn() int {
return (int)(C.QTableWidget_CurrentColumn(this.h))
}
func (this *QTableWidget) CurrentItem() *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_CurrentItem(this.h))
}
func (this *QTableWidget) SetCurrentItem(item *QTableWidgetItem) {
C.QTableWidget_SetCurrentItem(this.h, item.cPointer())
}
func (this *QTableWidget) SetCurrentItem2(item *QTableWidgetItem, command QItemSelectionModel__SelectionFlag) {
C.QTableWidget_SetCurrentItem2(this.h, item.cPointer(), (C.int)(command))
}
func (this *QTableWidget) SetCurrentCell(row int, column int) {
C.QTableWidget_SetCurrentCell(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) SetCurrentCell2(row int, column int, command QItemSelectionModel__SelectionFlag) {
C.QTableWidget_SetCurrentCell2(this.h, (C.int)(row), (C.int)(column), (C.int)(command))
}
func (this *QTableWidget) SortItems(column int) {
C.QTableWidget_SortItems(this.h, (C.int)(column))
}
func (this *QTableWidget) SetSortingEnabled(enable bool) {
C.QTableWidget_SetSortingEnabled(this.h, (C.bool)(enable))
}
func (this *QTableWidget) IsSortingEnabled() bool {
return (bool)(C.QTableWidget_IsSortingEnabled(this.h))
}
func (this *QTableWidget) EditItem(item *QTableWidgetItem) {
C.QTableWidget_EditItem(this.h, item.cPointer())
}
func (this *QTableWidget) OpenPersistentEditor(item *QTableWidgetItem) {
C.QTableWidget_OpenPersistentEditor(this.h, item.cPointer())
}
func (this *QTableWidget) ClosePersistentEditor(item *QTableWidgetItem) {
C.QTableWidget_ClosePersistentEditor(this.h, item.cPointer())
}
func (this *QTableWidget) IsPersistentEditorOpen(item *QTableWidgetItem) bool {
return (bool)(C.QTableWidget_IsPersistentEditorOpen(this.h, item.cPointer()))
}
func (this *QTableWidget) CellWidget(row int, column int) *QWidget {
return newQWidget(C.QTableWidget_CellWidget(this.h, (C.int)(row), (C.int)(column)))
}
func (this *QTableWidget) SetCellWidget(row int, column int, widget *QWidget) {
C.QTableWidget_SetCellWidget(this.h, (C.int)(row), (C.int)(column), widget.cPointer())
}
func (this *QTableWidget) RemoveCellWidget(row int, column int) {
C.QTableWidget_RemoveCellWidget(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) IsItemSelected(item *QTableWidgetItem) bool {
return (bool)(C.QTableWidget_IsItemSelected(this.h, item.cPointer()))
}
func (this *QTableWidget) SetItemSelected(item *QTableWidgetItem, selectVal bool) {
C.QTableWidget_SetItemSelected(this.h, item.cPointer(), (C.bool)(selectVal))
}
func (this *QTableWidget) SetRangeSelected(rangeVal *QTableWidgetSelectionRange, selectVal bool) {
C.QTableWidget_SetRangeSelected(this.h, rangeVal.cPointer(), (C.bool)(selectVal))
}
func (this *QTableWidget) SelectedRanges() []QTableWidgetSelectionRange {
var _ma C.struct_miqt_array = C.QTableWidget_SelectedRanges(this.h)
_ret := make([]QTableWidgetSelectionRange, int(_ma.len))
_outCast := (*[0xffff]*C.QTableWidgetSelectionRange)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_lv_goptr := newQTableWidgetSelectionRange(_outCast[i])
_lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
_ret[i] = *_lv_goptr
}
return _ret
}
func (this *QTableWidget) SelectedItems() []*QTableWidgetItem {
var _ma C.struct_miqt_array = C.QTableWidget_SelectedItems(this.h)
_ret := make([]*QTableWidgetItem, int(_ma.len))
_outCast := (*[0xffff]*C.QTableWidgetItem)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_ret[i] = newQTableWidgetItem(_outCast[i])
}
return _ret
}
func (this *QTableWidget) FindItems(text string, flags MatchFlag) []*QTableWidgetItem {
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
var _ma C.struct_miqt_array = C.QTableWidget_FindItems(this.h, text_ms, (C.int)(flags))
_ret := make([]*QTableWidgetItem, int(_ma.len))
_outCast := (*[0xffff]*C.QTableWidgetItem)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_ret[i] = newQTableWidgetItem(_outCast[i])
}
return _ret
}
func (this *QTableWidget) VisualRow(logicalRow int) int {
return (int)(C.QTableWidget_VisualRow(this.h, (C.int)(logicalRow)))
}
func (this *QTableWidget) VisualColumn(logicalColumn int) int {
return (int)(C.QTableWidget_VisualColumn(this.h, (C.int)(logicalColumn)))
}
func (this *QTableWidget) ItemAt(p *QPoint) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_ItemAt(this.h, p.cPointer()))
}
func (this *QTableWidget) ItemAt2(x int, y int) *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_ItemAt2(this.h, (C.int)(x), (C.int)(y)))
}
func (this *QTableWidget) VisualItemRect(item *QTableWidgetItem) *QRect {
_goptr := newQRect(C.QTableWidget_VisualItemRect(this.h, item.cPointer()))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) ItemPrototype() *QTableWidgetItem {
return newQTableWidgetItem(C.QTableWidget_ItemPrototype(this.h))
}
func (this *QTableWidget) SetItemPrototype(item *QTableWidgetItem) {
C.QTableWidget_SetItemPrototype(this.h, item.cPointer())
}
func (this *QTableWidget) ScrollToItem(item *QTableWidgetItem) {
C.QTableWidget_ScrollToItem(this.h, item.cPointer())
}
func (this *QTableWidget) InsertRow(row int) {
C.QTableWidget_InsertRow(this.h, (C.int)(row))
}
func (this *QTableWidget) InsertColumn(column int) {
C.QTableWidget_InsertColumn(this.h, (C.int)(column))
}
func (this *QTableWidget) RemoveRow(row int) {
C.QTableWidget_RemoveRow(this.h, (C.int)(row))
}
func (this *QTableWidget) RemoveColumn(column int) {
C.QTableWidget_RemoveColumn(this.h, (C.int)(column))
}
func (this *QTableWidget) Clear() {
C.QTableWidget_Clear(this.h)
}
func (this *QTableWidget) ClearContents() {
C.QTableWidget_ClearContents(this.h)
}
func (this *QTableWidget) ItemPressed(item *QTableWidgetItem) {
C.QTableWidget_ItemPressed(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemPressed(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemPressed(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemPressed
func miqt_exec_callback_QTableWidget_ItemPressed(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) ItemClicked(item *QTableWidgetItem) {
C.QTableWidget_ItemClicked(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemClicked(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemClicked(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemClicked
func miqt_exec_callback_QTableWidget_ItemClicked(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) ItemDoubleClicked(item *QTableWidgetItem) {
C.QTableWidget_ItemDoubleClicked(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemDoubleClicked(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemDoubleClicked(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemDoubleClicked
func miqt_exec_callback_QTableWidget_ItemDoubleClicked(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) ItemActivated(item *QTableWidgetItem) {
C.QTableWidget_ItemActivated(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemActivated(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemActivated(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemActivated
func miqt_exec_callback_QTableWidget_ItemActivated(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) ItemEntered(item *QTableWidgetItem) {
C.QTableWidget_ItemEntered(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemEntered(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemEntered(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemEntered
func miqt_exec_callback_QTableWidget_ItemEntered(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) ItemChanged(item *QTableWidgetItem) {
C.QTableWidget_ItemChanged(this.h, item.cPointer())
}
func (this *QTableWidget) OnItemChanged(slot func(item *QTableWidgetItem)) {
C.QTableWidget_connect_ItemChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemChanged
func miqt_exec_callback_QTableWidget_ItemChanged(cb C.intptr_t, item *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(item *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(item)
gofunc(slotval1)
}
func (this *QTableWidget) CurrentItemChanged(current *QTableWidgetItem, previous *QTableWidgetItem) {
C.QTableWidget_CurrentItemChanged(this.h, current.cPointer(), previous.cPointer())
}
func (this *QTableWidget) OnCurrentItemChanged(slot func(current *QTableWidgetItem, previous *QTableWidgetItem)) {
C.QTableWidget_connect_CurrentItemChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CurrentItemChanged
func miqt_exec_callback_QTableWidget_CurrentItemChanged(cb C.intptr_t, current *C.QTableWidgetItem, previous *C.QTableWidgetItem) {
gofunc, ok := cgo.Handle(cb).Value().(func(current *QTableWidgetItem, previous *QTableWidgetItem))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTableWidgetItem(current)
slotval2 := newQTableWidgetItem(previous)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) ItemSelectionChanged() {
C.QTableWidget_ItemSelectionChanged(this.h)
}
func (this *QTableWidget) OnItemSelectionChanged(slot func()) {
C.QTableWidget_connect_ItemSelectionChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ItemSelectionChanged
func miqt_exec_callback_QTableWidget_ItemSelectionChanged(cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func())
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc()
}
func (this *QTableWidget) CellPressed(row int, column int) {
C.QTableWidget_CellPressed(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellPressed(slot func(row int, column int)) {
C.QTableWidget_connect_CellPressed(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellPressed
func miqt_exec_callback_QTableWidget_CellPressed(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CellClicked(row int, column int) {
C.QTableWidget_CellClicked(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellClicked(slot func(row int, column int)) {
C.QTableWidget_connect_CellClicked(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellClicked
func miqt_exec_callback_QTableWidget_CellClicked(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CellDoubleClicked(row int, column int) {
C.QTableWidget_CellDoubleClicked(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellDoubleClicked(slot func(row int, column int)) {
C.QTableWidget_connect_CellDoubleClicked(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellDoubleClicked
func miqt_exec_callback_QTableWidget_CellDoubleClicked(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CellActivated(row int, column int) {
C.QTableWidget_CellActivated(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellActivated(slot func(row int, column int)) {
C.QTableWidget_connect_CellActivated(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellActivated
func miqt_exec_callback_QTableWidget_CellActivated(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CellEntered(row int, column int) {
C.QTableWidget_CellEntered(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellEntered(slot func(row int, column int)) {
C.QTableWidget_connect_CellEntered(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellEntered
func miqt_exec_callback_QTableWidget_CellEntered(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CellChanged(row int, column int) {
C.QTableWidget_CellChanged(this.h, (C.int)(row), (C.int)(column))
}
func (this *QTableWidget) OnCellChanged(slot func(row int, column int)) {
C.QTableWidget_connect_CellChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CellChanged
func miqt_exec_callback_QTableWidget_CellChanged(cb C.intptr_t, row C.int, column C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(row int, column int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
gofunc(slotval1, slotval2)
}
func (this *QTableWidget) CurrentCellChanged(currentRow int, currentColumn int, previousRow int, previousColumn int) {
C.QTableWidget_CurrentCellChanged(this.h, (C.int)(currentRow), (C.int)(currentColumn), (C.int)(previousRow), (C.int)(previousColumn))
}
func (this *QTableWidget) OnCurrentCellChanged(slot func(currentRow int, currentColumn int, previousRow int, previousColumn int)) {
C.QTableWidget_connect_CurrentCellChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CurrentCellChanged
func miqt_exec_callback_QTableWidget_CurrentCellChanged(cb C.intptr_t, currentRow C.int, currentColumn C.int, previousRow C.int, previousColumn C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(currentRow int, currentColumn int, previousRow int, previousColumn int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(currentRow)
slotval2 := (int)(currentColumn)
slotval3 := (int)(previousRow)
slotval4 := (int)(previousColumn)
gofunc(slotval1, slotval2, slotval3, slotval4)
}
func QTableWidget_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.QTableWidget_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QTableWidget_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.QTableWidget_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 QTableWidget_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))
var _ms C.struct_miqt_string = C.QTableWidget_TrUtf82(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QTableWidget_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))
var _ms C.struct_miqt_string = C.QTableWidget_TrUtf83(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 *QTableWidget) SortItems2(column int, order SortOrder) {
C.QTableWidget_SortItems2(this.h, (C.int)(column), (C.int)(order))
}
func (this *QTableWidget) ScrollToItem2(item *QTableWidgetItem, hint QAbstractItemView__ScrollHint) {
C.QTableWidget_ScrollToItem2(this.h, item.cPointer(), (C.int)(hint))
}
func (this *QTableWidget) callVirtualBase_Event(e *QEvent) bool {
return (bool)(C.QTableWidget_virtualbase_Event(unsafe.Pointer(this.h), e.cPointer()))
}
func (this *QTableWidget) OnEvent(slot func(super func(e *QEvent) bool, e *QEvent) bool) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_Event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_Event
func miqt_exec_callback_QTableWidget_Event(self *C.QTableWidget, cb C.intptr_t, e *C.QEvent) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(e *QEvent) bool, e *QEvent) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQEvent(e)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_Event, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_MimeTypes() []string {
var _ma C.struct_miqt_array = C.QTableWidget_virtualbase_MimeTypes(unsafe.Pointer(this.h))
_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 *QTableWidget) OnMimeTypes(slot func(super func() []string) []string) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_MimeTypes(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_MimeTypes
func miqt_exec_callback_QTableWidget_MimeTypes(self *C.QTableWidget, cb C.intptr_t) C.struct_miqt_array {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() []string) []string)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_MimeTypes)
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 *QTableWidget) callVirtualBase_MimeData(items []*QTableWidgetItem) *QMimeData {
items_CArray := (*[0xffff]*C.QTableWidgetItem)(C.malloc(C.size_t(8 * len(items))))
defer C.free(unsafe.Pointer(items_CArray))
for i := range items {
items_CArray[i] = items[i].cPointer()
}
items_ma := C.struct_miqt_array{len: C.size_t(len(items)), data: unsafe.Pointer(items_CArray)}
return newQMimeData(C.QTableWidget_virtualbase_MimeData(unsafe.Pointer(this.h), items_ma))
}
func (this *QTableWidget) OnMimeData(slot func(super func(items []*QTableWidgetItem) *QMimeData, items []*QTableWidgetItem) *QMimeData) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_MimeData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_MimeData
func miqt_exec_callback_QTableWidget_MimeData(self *C.QTableWidget, cb C.intptr_t, items C.struct_miqt_array) *C.QMimeData {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(items []*QTableWidgetItem) *QMimeData, items []*QTableWidgetItem) *QMimeData)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
var items_ma C.struct_miqt_array = items
items_ret := make([]*QTableWidgetItem, int(items_ma.len))
items_outCast := (*[0xffff]*C.QTableWidgetItem)(unsafe.Pointer(items_ma.data)) // hey ya
for i := 0; i < int(items_ma.len); i++ {
items_ret[i] = newQTableWidgetItem(items_outCast[i])
}
slotval1 := items_ret
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_MimeData, slotval1)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_DropMimeData(row int, column int, data *QMimeData, action DropAction) bool {
return (bool)(C.QTableWidget_virtualbase_DropMimeData(unsafe.Pointer(this.h), (C.int)(row), (C.int)(column), data.cPointer(), (C.int)(action)))
}
func (this *QTableWidget) OnDropMimeData(slot func(super func(row int, column int, data *QMimeData, action DropAction) bool, row int, column int, data *QMimeData, action DropAction) bool) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_DropMimeData(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_DropMimeData
func miqt_exec_callback_QTableWidget_DropMimeData(self *C.QTableWidget, cb C.intptr_t, row C.int, column C.int, data *C.QMimeData, action C.int) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(row int, column int, data *QMimeData, action DropAction) bool, row int, column int, data *QMimeData, action DropAction) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
slotval2 := (int)(column)
slotval3 := newQMimeData(data)
slotval4 := (DropAction)(action)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_DropMimeData, slotval1, slotval2, slotval3, slotval4)
return (C.bool)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_SupportedDropActions() DropAction {
return (DropAction)(C.QTableWidget_virtualbase_SupportedDropActions(unsafe.Pointer(this.h)))
}
func (this *QTableWidget) OnSupportedDropActions(slot func(super func() DropAction) DropAction) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SupportedDropActions(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SupportedDropActions
func miqt_exec_callback_QTableWidget_SupportedDropActions(self *C.QTableWidget, cb C.intptr_t) C.int {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() DropAction) DropAction)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_SupportedDropActions)
return (C.int)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_DropEvent(event *QDropEvent) {
C.QTableWidget_virtualbase_DropEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QTableWidget) OnDropEvent(slot func(super func(event *QDropEvent), event *QDropEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_DropEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_DropEvent
func miqt_exec_callback_QTableWidget_DropEvent(self *C.QTableWidget, cb C.intptr_t, event *C.QDropEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QDropEvent), event *QDropEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQDropEvent(event)
gofunc((&QTableWidget{h: self}).callVirtualBase_DropEvent, slotval1)
}
func (this *QTableWidget) callVirtualBase_SetRootIndex(index *QModelIndex) {
C.QTableWidget_virtualbase_SetRootIndex(unsafe.Pointer(this.h), index.cPointer())
}
func (this *QTableWidget) OnSetRootIndex(slot func(super func(index *QModelIndex), index *QModelIndex)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SetRootIndex(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SetRootIndex
func miqt_exec_callback_QTableWidget_SetRootIndex(self *C.QTableWidget, cb C.intptr_t, index *C.QModelIndex) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(index *QModelIndex), index *QModelIndex))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQModelIndex(index)
gofunc((&QTableWidget{h: self}).callVirtualBase_SetRootIndex, slotval1)
}
func (this *QTableWidget) callVirtualBase_SetSelectionModel(selectionModel *QItemSelectionModel) {
C.QTableWidget_virtualbase_SetSelectionModel(unsafe.Pointer(this.h), selectionModel.cPointer())
}
func (this *QTableWidget) OnSetSelectionModel(slot func(super func(selectionModel *QItemSelectionModel), selectionModel *QItemSelectionModel)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SetSelectionModel(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SetSelectionModel
func miqt_exec_callback_QTableWidget_SetSelectionModel(self *C.QTableWidget, cb C.intptr_t, selectionModel *C.QItemSelectionModel) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(selectionModel *QItemSelectionModel), selectionModel *QItemSelectionModel))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQItemSelectionModel(selectionModel)
gofunc((&QTableWidget{h: self}).callVirtualBase_SetSelectionModel, slotval1)
}
func (this *QTableWidget) callVirtualBase_DoItemsLayout() {
C.QTableWidget_virtualbase_DoItemsLayout(unsafe.Pointer(this.h))
}
func (this *QTableWidget) OnDoItemsLayout(slot func(super func())) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_DoItemsLayout(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_DoItemsLayout
func miqt_exec_callback_QTableWidget_DoItemsLayout(self *C.QTableWidget, cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func()))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc((&QTableWidget{h: self}).callVirtualBase_DoItemsLayout)
}
func (this *QTableWidget) callVirtualBase_VisualRect(index *QModelIndex) *QRect {
_goptr := newQRect(C.QTableWidget_virtualbase_VisualRect(unsafe.Pointer(this.h), index.cPointer()))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnVisualRect(slot func(super func(index *QModelIndex) *QRect, index *QModelIndex) *QRect) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_VisualRect(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_VisualRect
func miqt_exec_callback_QTableWidget_VisualRect(self *C.QTableWidget, cb C.intptr_t, index *C.QModelIndex) *C.QRect {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(index *QModelIndex) *QRect, index *QModelIndex) *QRect)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQModelIndex(index)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_VisualRect, slotval1)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_ScrollTo(index *QModelIndex, hint QAbstractItemView__ScrollHint) {
C.QTableWidget_virtualbase_ScrollTo(unsafe.Pointer(this.h), index.cPointer(), (C.int)(hint))
}
func (this *QTableWidget) OnScrollTo(slot func(super func(index *QModelIndex, hint QAbstractItemView__ScrollHint), index *QModelIndex, hint QAbstractItemView__ScrollHint)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_ScrollTo(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ScrollTo
func miqt_exec_callback_QTableWidget_ScrollTo(self *C.QTableWidget, cb C.intptr_t, index *C.QModelIndex, hint C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(index *QModelIndex, hint QAbstractItemView__ScrollHint), index *QModelIndex, hint QAbstractItemView__ScrollHint))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQModelIndex(index)
slotval2 := (QAbstractItemView__ScrollHint)(hint)
gofunc((&QTableWidget{h: self}).callVirtualBase_ScrollTo, slotval1, slotval2)
}
func (this *QTableWidget) callVirtualBase_IndexAt(p *QPoint) *QModelIndex {
_goptr := newQModelIndex(C.QTableWidget_virtualbase_IndexAt(unsafe.Pointer(this.h), p.cPointer()))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnIndexAt(slot func(super func(p *QPoint) *QModelIndex, p *QPoint) *QModelIndex) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_IndexAt(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_IndexAt
func miqt_exec_callback_QTableWidget_IndexAt(self *C.QTableWidget, cb C.intptr_t, p *C.QPoint) *C.QModelIndex {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(p *QPoint) *QModelIndex, p *QPoint) *QModelIndex)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQPoint(p)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_IndexAt, slotval1)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_ScrollContentsBy(dx int, dy int) {
C.QTableWidget_virtualbase_ScrollContentsBy(unsafe.Pointer(this.h), (C.int)(dx), (C.int)(dy))
}
func (this *QTableWidget) OnScrollContentsBy(slot func(super func(dx int, dy int), dx int, dy int)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_ScrollContentsBy(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ScrollContentsBy
func miqt_exec_callback_QTableWidget_ScrollContentsBy(self *C.QTableWidget, cb C.intptr_t, dx C.int, dy C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(dx int, dy int), dx int, dy int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(dx)
slotval2 := (int)(dy)
gofunc((&QTableWidget{h: self}).callVirtualBase_ScrollContentsBy, slotval1, slotval2)
}
func (this *QTableWidget) callVirtualBase_ViewOptions() *QStyleOptionViewItem {
_goptr := newQStyleOptionViewItem(C.QTableWidget_virtualbase_ViewOptions(unsafe.Pointer(this.h)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnViewOptions(slot func(super func() *QStyleOptionViewItem) *QStyleOptionViewItem) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_ViewOptions(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ViewOptions
func miqt_exec_callback_QTableWidget_ViewOptions(self *C.QTableWidget, cb C.intptr_t) *C.QStyleOptionViewItem {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() *QStyleOptionViewItem) *QStyleOptionViewItem)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_ViewOptions)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_PaintEvent(e *QPaintEvent) {
C.QTableWidget_virtualbase_PaintEvent(unsafe.Pointer(this.h), e.cPointer())
}
func (this *QTableWidget) OnPaintEvent(slot func(super func(e *QPaintEvent), e *QPaintEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_PaintEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_PaintEvent
func miqt_exec_callback_QTableWidget_PaintEvent(self *C.QTableWidget, cb C.intptr_t, e *C.QPaintEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(e *QPaintEvent), e *QPaintEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQPaintEvent(e)
gofunc((&QTableWidget{h: self}).callVirtualBase_PaintEvent, slotval1)
}
func (this *QTableWidget) callVirtualBase_TimerEvent(event *QTimerEvent) {
C.QTableWidget_virtualbase_TimerEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QTableWidget) OnTimerEvent(slot func(super func(event *QTimerEvent), event *QTimerEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_TimerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_TimerEvent
func miqt_exec_callback_QTableWidget_TimerEvent(self *C.QTableWidget, cb C.intptr_t, event *C.QTimerEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QTimerEvent), event *QTimerEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQTimerEvent(event)
gofunc((&QTableWidget{h: self}).callVirtualBase_TimerEvent, slotval1)
}
func (this *QTableWidget) callVirtualBase_HorizontalOffset() int {
return (int)(C.QTableWidget_virtualbase_HorizontalOffset(unsafe.Pointer(this.h)))
}
func (this *QTableWidget) OnHorizontalOffset(slot func(super func() int) int) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_HorizontalOffset(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_HorizontalOffset
func miqt_exec_callback_QTableWidget_HorizontalOffset(self *C.QTableWidget, cb C.intptr_t) C.int {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_HorizontalOffset)
return (C.int)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_VerticalOffset() int {
return (int)(C.QTableWidget_virtualbase_VerticalOffset(unsafe.Pointer(this.h)))
}
func (this *QTableWidget) OnVerticalOffset(slot func(super func() int) int) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_VerticalOffset(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_VerticalOffset
func miqt_exec_callback_QTableWidget_VerticalOffset(self *C.QTableWidget, cb C.intptr_t) C.int {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_VerticalOffset)
return (C.int)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_MoveCursor(cursorAction QAbstractItemView__CursorAction, modifiers KeyboardModifier) *QModelIndex {
_goptr := newQModelIndex(C.QTableWidget_virtualbase_MoveCursor(unsafe.Pointer(this.h), (C.int)(cursorAction), (C.int)(modifiers)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnMoveCursor(slot func(super func(cursorAction QAbstractItemView__CursorAction, modifiers KeyboardModifier) *QModelIndex, cursorAction QAbstractItemView__CursorAction, modifiers KeyboardModifier) *QModelIndex) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_MoveCursor(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_MoveCursor
func miqt_exec_callback_QTableWidget_MoveCursor(self *C.QTableWidget, cb C.intptr_t, cursorAction C.int, modifiers C.int) *C.QModelIndex {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(cursorAction QAbstractItemView__CursorAction, modifiers KeyboardModifier) *QModelIndex, cursorAction QAbstractItemView__CursorAction, modifiers KeyboardModifier) *QModelIndex)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (QAbstractItemView__CursorAction)(cursorAction)
slotval2 := (KeyboardModifier)(modifiers)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_MoveCursor, slotval1, slotval2)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_SetSelection(rect *QRect, command QItemSelectionModel__SelectionFlag) {
C.QTableWidget_virtualbase_SetSelection(unsafe.Pointer(this.h), rect.cPointer(), (C.int)(command))
}
func (this *QTableWidget) OnSetSelection(slot func(super func(rect *QRect, command QItemSelectionModel__SelectionFlag), rect *QRect, command QItemSelectionModel__SelectionFlag)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SetSelection(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SetSelection
func miqt_exec_callback_QTableWidget_SetSelection(self *C.QTableWidget, cb C.intptr_t, rect *C.QRect, command C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(rect *QRect, command QItemSelectionModel__SelectionFlag), rect *QRect, command QItemSelectionModel__SelectionFlag))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQRect(rect)
slotval2 := (QItemSelectionModel__SelectionFlag)(command)
gofunc((&QTableWidget{h: self}).callVirtualBase_SetSelection, slotval1, slotval2)
}
func (this *QTableWidget) callVirtualBase_VisualRegionForSelection(selection *QItemSelection) *QRegion {
_goptr := newQRegion(C.QTableWidget_virtualbase_VisualRegionForSelection(unsafe.Pointer(this.h), selection.cPointer()))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnVisualRegionForSelection(slot func(super func(selection *QItemSelection) *QRegion, selection *QItemSelection) *QRegion) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_VisualRegionForSelection(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_VisualRegionForSelection
func miqt_exec_callback_QTableWidget_VisualRegionForSelection(self *C.QTableWidget, cb C.intptr_t, selection *C.QItemSelection) *C.QRegion {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(selection *QItemSelection) *QRegion, selection *QItemSelection) *QRegion)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQItemSelection(selection)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_VisualRegionForSelection, slotval1)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_SelectedIndexes() []QModelIndex {
var _ma C.struct_miqt_array = C.QTableWidget_virtualbase_SelectedIndexes(unsafe.Pointer(this.h))
_ret := make([]QModelIndex, int(_ma.len))
_outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_lv_goptr := newQModelIndex(_outCast[i])
_lv_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
_ret[i] = *_lv_goptr
}
return _ret
}
func (this *QTableWidget) OnSelectedIndexes(slot func(super func() []QModelIndex) []QModelIndex) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SelectedIndexes(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SelectedIndexes
func miqt_exec_callback_QTableWidget_SelectedIndexes(self *C.QTableWidget, cb C.intptr_t) C.struct_miqt_array {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() []QModelIndex) []QModelIndex)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_SelectedIndexes)
virtualReturn_CArray := (*[0xffff]*C.QModelIndex)(C.malloc(C.size_t(8 * len(virtualReturn))))
defer C.free(unsafe.Pointer(virtualReturn_CArray))
for i := range virtualReturn {
virtualReturn_CArray[i] = virtualReturn[i].cPointer()
}
virtualReturn_ma := C.struct_miqt_array{len: C.size_t(len(virtualReturn)), data: unsafe.Pointer(virtualReturn_CArray)}
return virtualReturn_ma
}
func (this *QTableWidget) callVirtualBase_UpdateGeometries() {
C.QTableWidget_virtualbase_UpdateGeometries(unsafe.Pointer(this.h))
}
func (this *QTableWidget) OnUpdateGeometries(slot func(super func())) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_UpdateGeometries(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_UpdateGeometries
func miqt_exec_callback_QTableWidget_UpdateGeometries(self *C.QTableWidget, cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func()))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc((&QTableWidget{h: self}).callVirtualBase_UpdateGeometries)
}
func (this *QTableWidget) callVirtualBase_ViewportSizeHint() *QSize {
_goptr := newQSize(C.QTableWidget_virtualbase_ViewportSizeHint(unsafe.Pointer(this.h)))
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTableWidget) OnViewportSizeHint(slot func(super func() *QSize) *QSize) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_ViewportSizeHint(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_ViewportSizeHint
func miqt_exec_callback_QTableWidget_ViewportSizeHint(self *C.QTableWidget, cb C.intptr_t) *C.QSize {
gofunc, ok := cgo.Handle(cb).Value().(func(super func() *QSize) *QSize)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_ViewportSizeHint)
return virtualReturn.cPointer()
}
func (this *QTableWidget) callVirtualBase_SizeHintForRow(row int) int {
return (int)(C.QTableWidget_virtualbase_SizeHintForRow(unsafe.Pointer(this.h), (C.int)(row)))
}
func (this *QTableWidget) OnSizeHintForRow(slot func(super func(row int) int, row int) int) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SizeHintForRow(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SizeHintForRow
func miqt_exec_callback_QTableWidget_SizeHintForRow(self *C.QTableWidget, cb C.intptr_t, row C.int) C.int {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(row int) int, row int) int)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(row)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_SizeHintForRow, slotval1)
return (C.int)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_SizeHintForColumn(column int) int {
return (int)(C.QTableWidget_virtualbase_SizeHintForColumn(unsafe.Pointer(this.h), (C.int)(column)))
}
func (this *QTableWidget) OnSizeHintForColumn(slot func(super func(column int) int, column int) int) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SizeHintForColumn(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SizeHintForColumn
func miqt_exec_callback_QTableWidget_SizeHintForColumn(self *C.QTableWidget, cb C.intptr_t, column C.int) C.int {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(column int) int, column int) int)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(column)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_SizeHintForColumn, slotval1)
return (C.int)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_VerticalScrollbarAction(action int) {
C.QTableWidget_virtualbase_VerticalScrollbarAction(unsafe.Pointer(this.h), (C.int)(action))
}
func (this *QTableWidget) OnVerticalScrollbarAction(slot func(super func(action int), action int)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_VerticalScrollbarAction(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_VerticalScrollbarAction
func miqt_exec_callback_QTableWidget_VerticalScrollbarAction(self *C.QTableWidget, cb C.intptr_t, action C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(action int), action int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(action)
gofunc((&QTableWidget{h: self}).callVirtualBase_VerticalScrollbarAction, slotval1)
}
func (this *QTableWidget) callVirtualBase_HorizontalScrollbarAction(action int) {
C.QTableWidget_virtualbase_HorizontalScrollbarAction(unsafe.Pointer(this.h), (C.int)(action))
}
func (this *QTableWidget) OnHorizontalScrollbarAction(slot func(super func(action int), action int)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_HorizontalScrollbarAction(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_HorizontalScrollbarAction
func miqt_exec_callback_QTableWidget_HorizontalScrollbarAction(self *C.QTableWidget, cb C.intptr_t, action C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(action int), action int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(action)
gofunc((&QTableWidget{h: self}).callVirtualBase_HorizontalScrollbarAction, slotval1)
}
func (this *QTableWidget) callVirtualBase_IsIndexHidden(index *QModelIndex) bool {
return (bool)(C.QTableWidget_virtualbase_IsIndexHidden(unsafe.Pointer(this.h), index.cPointer()))
}
func (this *QTableWidget) OnIsIndexHidden(slot func(super func(index *QModelIndex) bool, index *QModelIndex) bool) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_IsIndexHidden(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_IsIndexHidden
func miqt_exec_callback_QTableWidget_IsIndexHidden(self *C.QTableWidget, cb C.intptr_t, index *C.QModelIndex) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(index *QModelIndex) bool, index *QModelIndex) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQModelIndex(index)
virtualReturn := gofunc((&QTableWidget{h: self}).callVirtualBase_IsIndexHidden, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QTableWidget) callVirtualBase_SelectionChanged(selected *QItemSelection, deselected *QItemSelection) {
C.QTableWidget_virtualbase_SelectionChanged(unsafe.Pointer(this.h), selected.cPointer(), deselected.cPointer())
}
func (this *QTableWidget) OnSelectionChanged(slot func(super func(selected *QItemSelection, deselected *QItemSelection), selected *QItemSelection, deselected *QItemSelection)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_SelectionChanged(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_SelectionChanged
func miqt_exec_callback_QTableWidget_SelectionChanged(self *C.QTableWidget, cb C.intptr_t, selected *C.QItemSelection, deselected *C.QItemSelection) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(selected *QItemSelection, deselected *QItemSelection), selected *QItemSelection, deselected *QItemSelection))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQItemSelection(selected)
slotval2 := newQItemSelection(deselected)
gofunc((&QTableWidget{h: self}).callVirtualBase_SelectionChanged, slotval1, slotval2)
}
func (this *QTableWidget) callVirtualBase_CurrentChanged(current *QModelIndex, previous *QModelIndex) {
C.QTableWidget_virtualbase_CurrentChanged(unsafe.Pointer(this.h), current.cPointer(), previous.cPointer())
}
func (this *QTableWidget) OnCurrentChanged(slot func(super func(current *QModelIndex, previous *QModelIndex), current *QModelIndex, previous *QModelIndex)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
C.QTableWidget_override_virtual_CurrentChanged(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QTableWidget_CurrentChanged
func miqt_exec_callback_QTableWidget_CurrentChanged(self *C.QTableWidget, cb C.intptr_t, current *C.QModelIndex, previous *C.QModelIndex) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(current *QModelIndex, previous *QModelIndex), current *QModelIndex, previous *QModelIndex))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQModelIndex(current)
slotval2 := newQModelIndex(previous)
gofunc((&QTableWidget{h: self}).callVirtualBase_CurrentChanged, slotval1, slotval2)
}
// Delete this object from C++ memory.
func (this *QTableWidget) Delete() {
C.QTableWidget_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 *QTableWidget) GoGC() {
runtime.SetFinalizer(this, func(this *QTableWidget) {
this.Delete()
runtime.KeepAlive(this.h)
})
}