package qt /* #include "gen_qactiongroup.h" #include */ import "C" import ( "runtime" "runtime/cgo" "unsafe" ) type QActionGroup__ExclusionPolicy int const ( QActionGroup__ExclusionPolicy__None QActionGroup__ExclusionPolicy = 0 QActionGroup__ExclusionPolicy__Exclusive QActionGroup__ExclusionPolicy = 1 QActionGroup__ExclusionPolicy__ExclusiveOptional QActionGroup__ExclusionPolicy = 2 ) type QActionGroup struct { h *C.QActionGroup *QObject } func (this *QActionGroup) cPointer() *C.QActionGroup { if this == nil { return nil } return this.h } func newQActionGroup(h *C.QActionGroup) *QActionGroup { if h == nil { return nil } return &QActionGroup{h: h, QObject: newQObject_U(unsafe.Pointer(h))} } func newQActionGroup_U(h unsafe.Pointer) *QActionGroup { return newQActionGroup((*C.QActionGroup)(h)) } // NewQActionGroup constructs a new QActionGroup object. func NewQActionGroup(parent *QObject) *QActionGroup { ret := C.QActionGroup_new(parent.cPointer()) return newQActionGroup(ret) } func (this *QActionGroup) MetaObject() *QMetaObject { _ret := C.QActionGroup_MetaObject(this.h) return newQMetaObject_U(unsafe.Pointer(_ret)) } func QActionGroup_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QActionGroup_Tr(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QActionGroup_TrUtf8(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QActionGroup_TrUtf8(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func (this *QActionGroup) AddAction(a *QAction) *QAction { _ret := C.QActionGroup_AddAction(this.h, a.cPointer()) return newQAction_U(unsafe.Pointer(_ret)) } func (this *QActionGroup) AddActionWithText(text string) *QAction { text_ms := miqt_strdupg(text) defer C.free(text_ms) _ret := C.QActionGroup_AddActionWithText(this.h, (*C.struct_miqt_string)(text_ms)) return newQAction_U(unsafe.Pointer(_ret)) } func (this *QActionGroup) AddAction2(icon *QIcon, text string) *QAction { text_ms := miqt_strdupg(text) defer C.free(text_ms) _ret := C.QActionGroup_AddAction2(this.h, icon.cPointer(), (*C.struct_miqt_string)(text_ms)) return newQAction_U(unsafe.Pointer(_ret)) } func (this *QActionGroup) RemoveAction(a *QAction) { C.QActionGroup_RemoveAction(this.h, a.cPointer()) } func (this *QActionGroup) Actions() []*QAction { var _ma *C.struct_miqt_array = C.QActionGroup_Actions(this.h) _ret := make([]*QAction, int(_ma.len)) _outCast := (*[0xffff]*C.QAction)(unsafe.Pointer(_ma.data)) // mrs jackson for i := 0; i < int(_ma.len); i++ { _ret[i] = newQAction(_outCast[i]) } C.free(unsafe.Pointer(_ma)) return _ret } func (this *QActionGroup) CheckedAction() *QAction { _ret := C.QActionGroup_CheckedAction(this.h) return newQAction_U(unsafe.Pointer(_ret)) } func (this *QActionGroup) IsExclusive() bool { _ret := C.QActionGroup_IsExclusive(this.h) return (bool)(_ret) } func (this *QActionGroup) IsEnabled() bool { _ret := C.QActionGroup_IsEnabled(this.h) return (bool)(_ret) } func (this *QActionGroup) IsVisible() bool { _ret := C.QActionGroup_IsVisible(this.h) return (bool)(_ret) } func (this *QActionGroup) ExclusionPolicy() QActionGroup__ExclusionPolicy { _ret := C.QActionGroup_ExclusionPolicy(this.h) return (QActionGroup__ExclusionPolicy)(_ret) } func (this *QActionGroup) SetEnabled(enabled bool) { C.QActionGroup_SetEnabled(this.h, (C.bool)(enabled)) } func (this *QActionGroup) SetDisabled(b bool) { C.QActionGroup_SetDisabled(this.h, (C.bool)(b)) } func (this *QActionGroup) SetVisible(visible bool) { C.QActionGroup_SetVisible(this.h, (C.bool)(visible)) } func (this *QActionGroup) SetExclusive(exclusive bool) { C.QActionGroup_SetExclusive(this.h, (C.bool)(exclusive)) } func (this *QActionGroup) SetExclusionPolicy(policy QActionGroup__ExclusionPolicy) { C.QActionGroup_SetExclusionPolicy(this.h, (C.uintptr_t)(policy)) } func (this *QActionGroup) Triggered(param1 *QAction) { C.QActionGroup_Triggered(this.h, param1.cPointer()) } func (this *QActionGroup) OnTriggered(slot func(param1 *QAction)) { C.QActionGroup_connect_Triggered(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slot)))) } //export miqt_exec_callback_QActionGroup_Triggered func miqt_exec_callback_QActionGroup_Triggered(cb *C.void, param1 *C.QAction) { gofunc, ok := (cgo.Handle(uintptr(unsafe.Pointer(cb))).Value()).(func(param1 *QAction)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters param1_ret := param1 slotval1 := newQAction_U(unsafe.Pointer(param1_ret)) gofunc(slotval1) } func (this *QActionGroup) Hovered(param1 *QAction) { C.QActionGroup_Hovered(this.h, param1.cPointer()) } func (this *QActionGroup) OnHovered(slot func(param1 *QAction)) { C.QActionGroup_connect_Hovered(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slot)))) } //export miqt_exec_callback_QActionGroup_Hovered func miqt_exec_callback_QActionGroup_Hovered(cb *C.void, param1 *C.QAction) { gofunc, ok := (cgo.Handle(uintptr(unsafe.Pointer(cb))).Value()).(func(param1 *QAction)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters param1_ret := param1 slotval1 := newQAction_U(unsafe.Pointer(param1_ret)) gofunc(slotval1) } func QActionGroup_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.QActionGroup_Tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QActionGroup_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.QActionGroup_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 QActionGroup_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.QActionGroup_TrUtf82(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QActionGroup_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.QActionGroup_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 *QActionGroup) Delete() { C.QActionGroup_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 *QActionGroup) GoGC() { runtime.SetFinalizer(this, func(this *QActionGroup) { this.Delete() runtime.KeepAlive(this.h) }) }