miqt/qt/gen_qhistorystate.go

282 lines
8.4 KiB
Go
Raw Normal View History

package qt
/*
#include "gen_qhistorystate.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
2024-11-19 06:29:06 +00:00
"runtime/cgo"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QHistoryState__HistoryType int
const (
2024-09-20 07:13:26 +00:00
QHistoryState__ShallowHistory QHistoryState__HistoryType = 0
QHistoryState__DeepHistory QHistoryState__HistoryType = 1
2024-09-04 06:54:22 +00:00
)
type QHistoryState struct {
2024-11-19 06:29:06 +00:00
h *C.QHistoryState
isSubclass bool
*QAbstractState
}
func (this *QHistoryState) cPointer() *C.QHistoryState {
if this == nil {
return nil
}
return this.h
}
func (this *QHistoryState) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQHistoryState constructs the type using only CGO pointers.
2024-12-07 04:15:57 +00:00
func newQHistoryState(h *C.QHistoryState) *QHistoryState {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
2024-12-07 04:15:57 +00:00
var outptr_QAbstractState *C.QAbstractState = nil
C.QHistoryState_virtbase(h, &outptr_QAbstractState)
2024-11-19 06:29:06 +00:00
return &QHistoryState{h: h,
2024-12-07 04:15:57 +00:00
QAbstractState: newQAbstractState(outptr_QAbstractState)}
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQHistoryState constructs the type using only unsafe pointers.
2024-12-07 04:15:57 +00:00
func UnsafeNewQHistoryState(h unsafe.Pointer) *QHistoryState {
return newQHistoryState((*C.QHistoryState)(h))
}
// NewQHistoryState constructs a new QHistoryState object.
func NewQHistoryState() *QHistoryState {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQHistoryState(C.QHistoryState_new())
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
}
// NewQHistoryState2 constructs a new QHistoryState object.
2024-09-04 06:54:22 +00:00
func NewQHistoryState2(typeVal QHistoryState__HistoryType) *QHistoryState {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQHistoryState(C.QHistoryState_new2((C.int)(typeVal)))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-08-29 07:01:51 +00:00
}
// NewQHistoryState3 constructs a new QHistoryState object.
func NewQHistoryState3(parent *QState) *QHistoryState {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQHistoryState(C.QHistoryState_new3(parent.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-08-29 07:01:51 +00:00
}
// NewQHistoryState4 constructs a new QHistoryState object.
2024-09-04 06:54:22 +00:00
func NewQHistoryState4(typeVal QHistoryState__HistoryType, parent *QState) *QHistoryState {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQHistoryState(C.QHistoryState_new4((C.int)(typeVal), parent.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
}
func (this *QHistoryState) MetaObject() *QMetaObject {
return newQMetaObject(C.QHistoryState_MetaObject(this.h))
}
func (this *QHistoryState) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QHistoryState_Metacast(this.h, param1_Cstring))
}
func QHistoryState_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QHistoryState_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QHistoryState_TrUtf8(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QHistoryState_TrUtf8(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QHistoryState) DefaultTransition() *QAbstractTransition {
2024-12-07 04:15:57 +00:00
return newQAbstractTransition(C.QHistoryState_DefaultTransition(this.h))
}
func (this *QHistoryState) SetDefaultTransition(transition *QAbstractTransition) {
C.QHistoryState_SetDefaultTransition(this.h, transition.cPointer())
}
func (this *QHistoryState) DefaultState() *QAbstractState {
2024-12-07 04:15:57 +00:00
return newQAbstractState(C.QHistoryState_DefaultState(this.h))
}
func (this *QHistoryState) SetDefaultState(state *QAbstractState) {
C.QHistoryState_SetDefaultState(this.h, state.cPointer())
}
2024-09-04 06:54:22 +00:00
func (this *QHistoryState) HistoryType() QHistoryState__HistoryType {
return (QHistoryState__HistoryType)(C.QHistoryState_HistoryType(this.h))
2024-08-29 07:01:51 +00:00
}
2024-09-04 06:54:22 +00:00
func (this *QHistoryState) SetHistoryType(typeVal QHistoryState__HistoryType) {
C.QHistoryState_SetHistoryType(this.h, (C.int)(typeVal))
2024-08-29 07:01:51 +00:00
}
func QHistoryState_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.QHistoryState_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QHistoryState_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.QHistoryState_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 QHistoryState_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.QHistoryState_TrUtf82(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QHistoryState_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.QHistoryState_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
}
2024-11-19 06:29:06 +00:00
func (this *QHistoryState) callVirtualBase_OnEntry(event *QEvent) {
C.QHistoryState_virtualbase_OnEntry(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QHistoryState) OnOnEntry(slot func(super func(event *QEvent), event *QEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QHistoryState_override_virtual_OnEntry(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QHistoryState_OnEntry
func miqt_exec_callback_QHistoryState_OnEntry(self *C.QHistoryState, cb C.intptr_t, event *C.QEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QEvent), event *QEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQEvent(event)
2024-11-19 06:29:06 +00:00
gofunc((&QHistoryState{h: self}).callVirtualBase_OnEntry, slotval1)
}
func (this *QHistoryState) callVirtualBase_OnExit(event *QEvent) {
C.QHistoryState_virtualbase_OnExit(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QHistoryState) OnOnExit(slot func(super func(event *QEvent), event *QEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QHistoryState_override_virtual_OnExit(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QHistoryState_OnExit
func miqt_exec_callback_QHistoryState_OnExit(self *C.QHistoryState, cb C.intptr_t, event *C.QEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QEvent), event *QEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQEvent(event)
2024-11-19 06:29:06 +00:00
gofunc((&QHistoryState{h: self}).callVirtualBase_OnExit, slotval1)
}
func (this *QHistoryState) callVirtualBase_Event(e *QEvent) bool {
return (bool)(C.QHistoryState_virtualbase_Event(unsafe.Pointer(this.h), e.cPointer()))
}
func (this *QHistoryState) 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")
}
2024-11-19 06:29:06 +00:00
C.QHistoryState_override_virtual_Event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QHistoryState_Event
func miqt_exec_callback_QHistoryState_Event(self *C.QHistoryState, 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)
2024-11-19 06:29:06 +00:00
virtualReturn := gofunc((&QHistoryState{h: self}).callVirtualBase_Event, slotval1)
return (C.bool)(virtualReturn)
}
// Delete this object from C++ memory.
func (this *QHistoryState) Delete() {
2024-11-19 06:29:06 +00:00
C.QHistoryState_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 *QHistoryState) GoGC() {
runtime.SetFinalizer(this, func(this *QHistoryState) {
this.Delete()
runtime.KeepAlive(this.h)
})
}