package qt /* #include "gen_qtoolbox.h" #include */ import "C" import ( "github.com/mappu/miqt/libmiqt" "runtime" "runtime/cgo" "unsafe" ) type QToolBox struct { h *C.QToolBox *QFrame } func (this *QToolBox) cPointer() *C.QToolBox { if this == nil { return nil } return this.h } func (this *QToolBox) UnsafePointer() unsafe.Pointer { if this == nil { return nil } return unsafe.Pointer(this.h) } func newQToolBox(h *C.QToolBox) *QToolBox { if h == nil { return nil } return &QToolBox{h: h, QFrame: UnsafeNewQFrame(unsafe.Pointer(h))} } func UnsafeNewQToolBox(h unsafe.Pointer) *QToolBox { return newQToolBox((*C.QToolBox)(h)) } // NewQToolBox constructs a new QToolBox object. func NewQToolBox() *QToolBox { ret := C.QToolBox_new() return newQToolBox(ret) } // NewQToolBox2 constructs a new QToolBox object. func NewQToolBox2(parent *QWidget) *QToolBox { ret := C.QToolBox_new2(parent.cPointer()) return newQToolBox(ret) } // NewQToolBox3 constructs a new QToolBox object. func NewQToolBox3(parent *QWidget, f WindowType) *QToolBox { ret := C.QToolBox_new3(parent.cPointer(), (C.int)(f)) return newQToolBox(ret) } func (this *QToolBox) MetaObject() *QMetaObject { return UnsafeNewQMetaObject(unsafe.Pointer(C.QToolBox_MetaObject(this.h))) } func (this *QToolBox) Metacast(param1 string) unsafe.Pointer { param1_Cstring := C.CString(param1) defer C.free(unsafe.Pointer(param1_Cstring)) return C.QToolBox_Metacast(this.h, param1_Cstring) } func QToolBox_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QToolBox_Tr(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QToolBox_TrUtf8(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QToolBox_TrUtf8(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func (this *QToolBox) AddItem(widget *QWidget, text string) int { text_ms := libmiqt.Strdupg(text) defer C.free(text_ms) return (int)(C.QToolBox_AddItem(this.h, widget.cPointer(), (*C.struct_miqt_string)(text_ms))) } func (this *QToolBox) AddItem2(widget *QWidget, icon *QIcon, text string) int { text_ms := libmiqt.Strdupg(text) defer C.free(text_ms) return (int)(C.QToolBox_AddItem2(this.h, widget.cPointer(), icon.cPointer(), (*C.struct_miqt_string)(text_ms))) } func (this *QToolBox) InsertItem(index int, widget *QWidget, text string) int { text_ms := libmiqt.Strdupg(text) defer C.free(text_ms) return (int)(C.QToolBox_InsertItem(this.h, (C.int)(index), widget.cPointer(), (*C.struct_miqt_string)(text_ms))) } func (this *QToolBox) InsertItem2(index int, widget *QWidget, icon *QIcon, text string) int { text_ms := libmiqt.Strdupg(text) defer C.free(text_ms) return (int)(C.QToolBox_InsertItem2(this.h, (C.int)(index), widget.cPointer(), icon.cPointer(), (*C.struct_miqt_string)(text_ms))) } func (this *QToolBox) RemoveItem(index int) { C.QToolBox_RemoveItem(this.h, (C.int)(index)) } func (this *QToolBox) SetItemEnabled(index int, enabled bool) { C.QToolBox_SetItemEnabled(this.h, (C.int)(index), (C.bool)(enabled)) } func (this *QToolBox) IsItemEnabled(index int) bool { return (bool)(C.QToolBox_IsItemEnabled(this.h, (C.int)(index))) } func (this *QToolBox) SetItemText(index int, text string) { text_ms := libmiqt.Strdupg(text) defer C.free(text_ms) C.QToolBox_SetItemText(this.h, (C.int)(index), (*C.struct_miqt_string)(text_ms)) } func (this *QToolBox) ItemText(index int) string { var _ms *C.struct_miqt_string = C.QToolBox_ItemText(this.h, (C.int)(index)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func (this *QToolBox) SetItemIcon(index int, icon *QIcon) { C.QToolBox_SetItemIcon(this.h, (C.int)(index), icon.cPointer()) } func (this *QToolBox) ItemIcon(index int) *QIcon { _ret := C.QToolBox_ItemIcon(this.h, (C.int)(index)) _goptr := newQIcon(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QToolBox) SetItemToolTip(index int, toolTip string) { toolTip_ms := libmiqt.Strdupg(toolTip) defer C.free(toolTip_ms) C.QToolBox_SetItemToolTip(this.h, (C.int)(index), (*C.struct_miqt_string)(toolTip_ms)) } func (this *QToolBox) ItemToolTip(index int) string { var _ms *C.struct_miqt_string = C.QToolBox_ItemToolTip(this.h, (C.int)(index)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func (this *QToolBox) CurrentIndex() int { return (int)(C.QToolBox_CurrentIndex(this.h)) } func (this *QToolBox) CurrentWidget() *QWidget { return UnsafeNewQWidget(unsafe.Pointer(C.QToolBox_CurrentWidget(this.h))) } func (this *QToolBox) Widget(index int) *QWidget { return UnsafeNewQWidget(unsafe.Pointer(C.QToolBox_Widget(this.h, (C.int)(index)))) } func (this *QToolBox) IndexOf(widget *QWidget) int { return (int)(C.QToolBox_IndexOf(this.h, widget.cPointer())) } func (this *QToolBox) Count() int { return (int)(C.QToolBox_Count(this.h)) } func (this *QToolBox) SetCurrentIndex(index int) { C.QToolBox_SetCurrentIndex(this.h, (C.int)(index)) } func (this *QToolBox) SetCurrentWidget(widget *QWidget) { C.QToolBox_SetCurrentWidget(this.h, widget.cPointer()) } func (this *QToolBox) CurrentChanged(index int) { C.QToolBox_CurrentChanged(this.h, (C.int)(index)) } func (this *QToolBox) OnCurrentChanged(slot func(index int)) { C.QToolBox_connect_CurrentChanged(this.h, C.intptr_t(cgo.NewHandle(slot))) } //export miqt_exec_callback_QToolBox_CurrentChanged func miqt_exec_callback_QToolBox_CurrentChanged(cb C.intptr_t, index C.int) { gofunc, ok := cgo.Handle(cb).Value().(func(index int)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(index) gofunc(slotval1) } func QToolBox_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.QToolBox_Tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QToolBox_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.QToolBox_Tr3(s_Cstring, c_Cstring, (C.int)(n)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QToolBox_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.QToolBox_TrUtf82(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QToolBox_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.QToolBox_TrUtf83(s_Cstring, c_Cstring, (C.int)(n)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } // Delete this object from C++ memory. func (this *QToolBox) Delete() { C.QToolBox_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 *QToolBox) GoGC() { runtime.SetFinalizer(this, func(this *QToolBox) { this.Delete() runtime.KeepAlive(this.h) }) }