miqt/qt/gen_qrefcount.go

90 lines
2.0 KiB
Go
Raw Permalink Normal View History

2024-08-29 07:01:51 +00:00
package qt
/*
#include "gen_qrefcount.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
2024-08-29 07:01:51 +00:00
"unsafe"
)
type QtPrivate__RefCount struct {
h *C.QtPrivate__RefCount
}
func (this *QtPrivate__RefCount) cPointer() *C.QtPrivate__RefCount {
if this == nil {
return nil
}
return this.h
}
func (this *QtPrivate__RefCount) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-08-29 07:01:51 +00:00
func newQtPrivate__RefCount(h *C.QtPrivate__RefCount) *QtPrivate__RefCount {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
2024-08-29 07:01:51 +00:00
return &QtPrivate__RefCount{h: h}
}
func UnsafeNewQtPrivate__RefCount(h unsafe.Pointer) *QtPrivate__RefCount {
2024-08-29 07:01:51 +00:00
return newQtPrivate__RefCount((*C.QtPrivate__RefCount)(h))
}
func (this *QtPrivate__RefCount) Ref() bool {
return (bool)(C.QtPrivate__RefCount_Ref(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) Deref() bool {
return (bool)(C.QtPrivate__RefCount_Deref(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) SetSharable(sharable bool) bool {
return (bool)(C.QtPrivate__RefCount_SetSharable(this.h, (C.bool)(sharable)))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) IsSharable() bool {
return (bool)(C.QtPrivate__RefCount_IsSharable(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) IsStatic() bool {
return (bool)(C.QtPrivate__RefCount_IsStatic(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) IsShared() bool {
return (bool)(C.QtPrivate__RefCount_IsShared(this.h))
2024-08-29 07:01:51 +00:00
}
func (this *QtPrivate__RefCount) InitializeOwned() {
C.QtPrivate__RefCount_InitializeOwned(this.h)
}
func (this *QtPrivate__RefCount) InitializeUnsharable() {
C.QtPrivate__RefCount_InitializeUnsharable(this.h)
}
// Delete this object from C++ memory.
2024-08-29 07:01:51 +00:00
func (this *QtPrivate__RefCount) Delete() {
C.QtPrivate__RefCount_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 *QtPrivate__RefCount) GoGC() {
runtime.SetFinalizer(this, func(this *QtPrivate__RefCount) {
this.Delete()
runtime.KeepAlive(this.h)
})
}