2024-08-25 04:08:24 +00:00
|
|
|
package qt
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qgraphicsitemanimation.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QGraphicsItemAnimation struct {
|
|
|
|
h *C.QGraphicsItemAnimation
|
|
|
|
*QObject
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) cPointer() *C.QGraphicsItemAnimation {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
func (this *QGraphicsItemAnimation) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func newQGraphicsItemAnimation(h *C.QGraphicsItemAnimation) *QGraphicsItemAnimation {
|
2024-09-01 02:23:55 +00:00
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-10-16 05:07:56 +00:00
|
|
|
return &QGraphicsItemAnimation{h: h, QObject: UnsafeNewQObject(unsafe.Pointer(h))}
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-10-16 05:07:56 +00:00
|
|
|
func UnsafeNewQGraphicsItemAnimation(h unsafe.Pointer) *QGraphicsItemAnimation {
|
2024-08-25 04:08:24 +00:00
|
|
|
return newQGraphicsItemAnimation((*C.QGraphicsItemAnimation)(h))
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewQGraphicsItemAnimation constructs a new QGraphicsItemAnimation object.
|
|
|
|
func NewQGraphicsItemAnimation() *QGraphicsItemAnimation {
|
|
|
|
ret := C.QGraphicsItemAnimation_new()
|
|
|
|
return newQGraphicsItemAnimation(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewQGraphicsItemAnimation2 constructs a new QGraphicsItemAnimation object.
|
|
|
|
func NewQGraphicsItemAnimation2(parent *QObject) *QGraphicsItemAnimation {
|
|
|
|
ret := C.QGraphicsItemAnimation_new2(parent.cPointer())
|
|
|
|
return newQGraphicsItemAnimation(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) MetaObject() *QMetaObject {
|
2024-10-16 05:07:56 +00:00
|
|
|
return UnsafeNewQMetaObject(unsafe.Pointer(C.QGraphicsItemAnimation_MetaObject(this.h)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-20 22:32:57 +00:00
|
|
|
func (this *QGraphicsItemAnimation) Metacast(param1 string) unsafe.Pointer {
|
|
|
|
param1_Cstring := C.CString(param1)
|
|
|
|
defer C.free(unsafe.Pointer(param1_Cstring))
|
2024-10-18 23:53:33 +00:00
|
|
|
return (unsafe.Pointer)(C.QGraphicsItemAnimation_Metacast(this.h, param1_Cstring))
|
2024-09-20 22:32:57 +00:00
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func QGraphicsItemAnimation_Tr(s string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_Tr(s_Cstring)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func QGraphicsItemAnimation_TrUtf8(s string) string {
|
|
|
|
s_Cstring := C.CString(s)
|
|
|
|
defer C.free(unsafe.Pointer(s_Cstring))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_TrUtf8(s_Cstring)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) Item() *QGraphicsItem {
|
2024-10-16 05:07:56 +00:00
|
|
|
return UnsafeNewQGraphicsItem(unsafe.Pointer(C.QGraphicsItemAnimation_Item(this.h)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) SetItem(item *QGraphicsItem) {
|
|
|
|
C.QGraphicsItemAnimation_SetItem(this.h, item.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) TimeLine() *QTimeLine {
|
2024-10-16 05:07:56 +00:00
|
|
|
return UnsafeNewQTimeLine(unsafe.Pointer(C.QGraphicsItemAnimation_TimeLine(this.h)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) SetTimeLine(timeLine *QTimeLine) {
|
|
|
|
C.QGraphicsItemAnimation_SetTimeLine(this.h, timeLine.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) PosAt(step float64) *QPointF {
|
2024-09-14 22:29:05 +00:00
|
|
|
_ret := C.QGraphicsItemAnimation_PosAt(this.h, (C.double)(step))
|
|
|
|
_goptr := newQPointF(_ret)
|
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
func (this *QGraphicsItemAnimation) PosList() []struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
} {
|
|
|
|
var _ma C.struct_miqt_array = C.QGraphicsItemAnimation_PosList(this.h)
|
|
|
|
_ret := make([]struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_map)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_mm C.struct_miqt_map = _outCast[i]
|
|
|
|
_lv_First_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.keys))
|
|
|
|
_lv_Second_CArray := (*[0xffff]*C.QPointF)(unsafe.Pointer(_lv_mm.values))
|
|
|
|
_lv_entry_First := (float64)(_lv_First_CArray[0])
|
|
|
|
|
|
|
|
_lv_second_ret := _lv_Second_CArray[0]
|
|
|
|
_lv_second_goptr := newQPointF(_lv_second_ret)
|
|
|
|
_lv_second_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
_lv_entry_Second := *_lv_second_goptr
|
|
|
|
|
|
|
|
_ret[i] = struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}{First: _lv_entry_First, Second: _lv_entry_Second}
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) SetPosAt(step float64, pos *QPointF) {
|
|
|
|
C.QGraphicsItemAnimation_SetPosAt(this.h, (C.double)(step), pos.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) MatrixAt(step float64) *QMatrix {
|
2024-09-14 22:29:05 +00:00
|
|
|
_ret := C.QGraphicsItemAnimation_MatrixAt(this.h, (C.double)(step))
|
|
|
|
_goptr := newQMatrix(_ret)
|
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) TransformAt(step float64) *QTransform {
|
2024-09-14 22:29:05 +00:00
|
|
|
_ret := C.QGraphicsItemAnimation_TransformAt(this.h, (C.double)(step))
|
|
|
|
_goptr := newQTransform(_ret)
|
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) RotationAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_RotationAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
func (this *QGraphicsItemAnimation) RotationList() []struct {
|
|
|
|
First float64
|
|
|
|
Second float64
|
|
|
|
} {
|
|
|
|
var _ma C.struct_miqt_array = C.QGraphicsItemAnimation_RotationList(this.h)
|
|
|
|
_ret := make([]struct {
|
|
|
|
First float64
|
|
|
|
Second float64
|
|
|
|
}, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_map)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_mm C.struct_miqt_map = _outCast[i]
|
|
|
|
_lv_First_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.keys))
|
|
|
|
_lv_Second_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.values))
|
|
|
|
_lv_entry_First := (float64)(_lv_First_CArray[0])
|
|
|
|
|
|
|
|
_lv_entry_Second := (float64)(_lv_Second_CArray[0])
|
|
|
|
|
|
|
|
_ret[i] = struct {
|
|
|
|
First float64
|
|
|
|
Second float64
|
|
|
|
}{First: _lv_entry_First, Second: _lv_entry_Second}
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) SetRotationAt(step float64, angle float64) {
|
|
|
|
C.QGraphicsItemAnimation_SetRotationAt(this.h, (C.double)(step), (C.double)(angle))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) XTranslationAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_XTranslationAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) YTranslationAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_YTranslationAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
func (this *QGraphicsItemAnimation) TranslationList() []struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
} {
|
|
|
|
var _ma C.struct_miqt_array = C.QGraphicsItemAnimation_TranslationList(this.h)
|
|
|
|
_ret := make([]struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_map)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_mm C.struct_miqt_map = _outCast[i]
|
|
|
|
_lv_First_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.keys))
|
|
|
|
_lv_Second_CArray := (*[0xffff]*C.QPointF)(unsafe.Pointer(_lv_mm.values))
|
|
|
|
_lv_entry_First := (float64)(_lv_First_CArray[0])
|
|
|
|
|
|
|
|
_lv_second_ret := _lv_Second_CArray[0]
|
|
|
|
_lv_second_goptr := newQPointF(_lv_second_ret)
|
|
|
|
_lv_second_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
_lv_entry_Second := *_lv_second_goptr
|
|
|
|
|
|
|
|
_ret[i] = struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}{First: _lv_entry_First, Second: _lv_entry_Second}
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) SetTranslationAt(step float64, dx float64, dy float64) {
|
|
|
|
C.QGraphicsItemAnimation_SetTranslationAt(this.h, (C.double)(step), (C.double)(dx), (C.double)(dy))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) VerticalScaleAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_VerticalScaleAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) HorizontalScaleAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_HorizontalScaleAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
func (this *QGraphicsItemAnimation) ScaleList() []struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
} {
|
|
|
|
var _ma C.struct_miqt_array = C.QGraphicsItemAnimation_ScaleList(this.h)
|
|
|
|
_ret := make([]struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_map)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_mm C.struct_miqt_map = _outCast[i]
|
|
|
|
_lv_First_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.keys))
|
|
|
|
_lv_Second_CArray := (*[0xffff]*C.QPointF)(unsafe.Pointer(_lv_mm.values))
|
|
|
|
_lv_entry_First := (float64)(_lv_First_CArray[0])
|
|
|
|
|
|
|
|
_lv_second_ret := _lv_Second_CArray[0]
|
|
|
|
_lv_second_goptr := newQPointF(_lv_second_ret)
|
|
|
|
_lv_second_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
_lv_entry_Second := *_lv_second_goptr
|
|
|
|
|
|
|
|
_ret[i] = struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}{First: _lv_entry_First, Second: _lv_entry_Second}
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) SetScaleAt(step float64, sx float64, sy float64) {
|
|
|
|
C.QGraphicsItemAnimation_SetScaleAt(this.h, (C.double)(step), (C.double)(sx), (C.double)(sy))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) VerticalShearAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_VerticalShearAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) HorizontalShearAt(step float64) float64 {
|
2024-09-17 07:30:27 +00:00
|
|
|
return (float64)(C.QGraphicsItemAnimation_HorizontalShearAt(this.h, (C.double)(step)))
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-11-17 06:21:37 +00:00
|
|
|
func (this *QGraphicsItemAnimation) ShearList() []struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
} {
|
|
|
|
var _ma C.struct_miqt_array = C.QGraphicsItemAnimation_ShearList(this.h)
|
|
|
|
_ret := make([]struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}, int(_ma.len))
|
|
|
|
_outCast := (*[0xffff]C.struct_miqt_map)(unsafe.Pointer(_ma.data)) // hey ya
|
|
|
|
for i := 0; i < int(_ma.len); i++ {
|
|
|
|
var _lv_mm C.struct_miqt_map = _outCast[i]
|
|
|
|
_lv_First_CArray := (*[0xffff]C.double)(unsafe.Pointer(_lv_mm.keys))
|
|
|
|
_lv_Second_CArray := (*[0xffff]*C.QPointF)(unsafe.Pointer(_lv_mm.values))
|
|
|
|
_lv_entry_First := (float64)(_lv_First_CArray[0])
|
|
|
|
|
|
|
|
_lv_second_ret := _lv_Second_CArray[0]
|
|
|
|
_lv_second_goptr := newQPointF(_lv_second_ret)
|
|
|
|
_lv_second_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
_lv_entry_Second := *_lv_second_goptr
|
|
|
|
|
|
|
|
_ret[i] = struct {
|
|
|
|
First float64
|
|
|
|
Second QPointF
|
|
|
|
}{First: _lv_entry_First, Second: _lv_entry_Second}
|
|
|
|
}
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) SetShearAt(step float64, sh float64, sv float64) {
|
|
|
|
C.QGraphicsItemAnimation_SetShearAt(this.h, (C.double)(step), (C.double)(sh), (C.double)(sv))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) Clear() {
|
|
|
|
C.QGraphicsItemAnimation_Clear(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) SetStep(x float64) {
|
|
|
|
C.QGraphicsItemAnimation_SetStep(this.h, (C.double)(x))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QGraphicsItemAnimation) Reset() {
|
|
|
|
C.QGraphicsItemAnimation_Reset(this.h)
|
|
|
|
}
|
|
|
|
|
|
|
|
func QGraphicsItemAnimation_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))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_Tr2(s_Cstring, c_Cstring)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func QGraphicsItemAnimation_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))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_Tr3(s_Cstring, c_Cstring, (C.int)(n))
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func QGraphicsItemAnimation_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))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_TrUtf82(s_Cstring, c_Cstring)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func QGraphicsItemAnimation_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))
|
2024-10-18 23:53:33 +00:00
|
|
|
var _ms C.struct_miqt_string = C.QGraphicsItemAnimation_TrUtf83(s_Cstring, c_Cstring, (C.int)(n))
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
2024-09-14 22:29:05 +00:00
|
|
|
return _ret
|
2024-08-25 04:08:24 +00:00
|
|
|
}
|
|
|
|
|
2024-09-14 22:29:05 +00:00
|
|
|
// Delete this object from C++ memory.
|
2024-08-25 04:08:24 +00:00
|
|
|
func (this *QGraphicsItemAnimation) Delete() {
|
|
|
|
C.QGraphicsItemAnimation_Delete(this.h)
|
|
|
|
}
|
2024-09-14 22:29:05 +00:00
|
|
|
|
|
|
|
// 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 *QGraphicsItemAnimation) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QGraphicsItemAnimation) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|