miqt/qt6/gen_qcheckbox.go

187 lines
4.8 KiB
Go

package qt6
/*
#include "gen_qcheckbox.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QCheckBox struct {
h *C.QCheckBox
*QAbstractButton
}
func (this *QCheckBox) cPointer() *C.QCheckBox {
if this == nil {
return nil
}
return this.h
}
func (this *QCheckBox) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
func newQCheckBox(h *C.QCheckBox) *QCheckBox {
if h == nil {
return nil
}
return &QCheckBox{h: h, QAbstractButton: UnsafeNewQAbstractButton(unsafe.Pointer(h))}
}
func UnsafeNewQCheckBox(h unsafe.Pointer) *QCheckBox {
return newQCheckBox((*C.QCheckBox)(h))
}
// NewQCheckBox constructs a new QCheckBox object.
func NewQCheckBox(parent *QWidget) *QCheckBox {
ret := C.QCheckBox_new(parent.cPointer())
return newQCheckBox(ret)
}
// NewQCheckBox2 constructs a new QCheckBox object.
func NewQCheckBox2() *QCheckBox {
ret := C.QCheckBox_new2()
return newQCheckBox(ret)
}
// NewQCheckBox3 constructs a new QCheckBox object.
func NewQCheckBox3(text string) *QCheckBox {
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 := C.QCheckBox_new3(text_ms)
return newQCheckBox(ret)
}
// NewQCheckBox4 constructs a new QCheckBox object.
func NewQCheckBox4(text string, parent *QWidget) *QCheckBox {
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 := C.QCheckBox_new4(text_ms, parent.cPointer())
return newQCheckBox(ret)
}
func (this *QCheckBox) MetaObject() *QMetaObject {
return UnsafeNewQMetaObject(unsafe.Pointer(C.QCheckBox_MetaObject(this.h)))
}
func (this *QCheckBox) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QCheckBox_Metacast(this.h, param1_Cstring))
}
func QCheckBox_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QCheckBox_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QCheckBox) SizeHint() *QSize {
_ret := C.QCheckBox_SizeHint(this.h)
_goptr := newQSize(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QCheckBox) MinimumSizeHint() *QSize {
_ret := C.QCheckBox_MinimumSizeHint(this.h)
_goptr := newQSize(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QCheckBox) SetTristate() {
C.QCheckBox_SetTristate(this.h)
}
func (this *QCheckBox) IsTristate() bool {
return (bool)(C.QCheckBox_IsTristate(this.h))
}
func (this *QCheckBox) CheckState() CheckState {
return (CheckState)(C.QCheckBox_CheckState(this.h))
}
func (this *QCheckBox) SetCheckState(state CheckState) {
C.QCheckBox_SetCheckState(this.h, (C.int)(state))
}
func (this *QCheckBox) StateChanged(param1 int) {
C.QCheckBox_StateChanged(this.h, (C.int)(param1))
}
func (this *QCheckBox) OnStateChanged(slot func(param1 int)) {
C.QCheckBox_connect_StateChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCheckBox_StateChanged
func miqt_exec_callback_QCheckBox_StateChanged(cb C.intptr_t, param1 C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(param1 int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (int)(param1)
gofunc(slotval1)
}
func QCheckBox_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.QCheckBox_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCheckBox_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.QCheckBox_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QCheckBox) SetTristate1(y bool) {
C.QCheckBox_SetTristate1(this.h, (C.bool)(y))
}
// Delete this object from C++ memory.
func (this *QCheckBox) Delete() {
C.QCheckBox_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 *QCheckBox) GoGC() {
runtime.SetFinalizer(this, func(this *QCheckBox) {
this.Delete()
runtime.KeepAlive(this.h)
})
}