2024-10-20 05:21:03 +00:00
|
|
|
package qt6
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
#include "gen_qproperty.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime"
|
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
type QtPrivate__BindableWarnings__Reason int
|
|
|
|
|
|
|
|
const (
|
|
|
|
QtPrivate__BindableWarnings__InvalidInterface QtPrivate__BindableWarnings__Reason = 0
|
|
|
|
QtPrivate__BindableWarnings__NonBindableInterface QtPrivate__BindableWarnings__Reason = 1
|
|
|
|
QtPrivate__BindableWarnings__ReadOnlyInterface QtPrivate__BindableWarnings__Reason = 2
|
|
|
|
)
|
|
|
|
|
|
|
|
type QPropertyBindingError__Type int
|
|
|
|
|
|
|
|
const (
|
|
|
|
QPropertyBindingError__NoError QPropertyBindingError__Type = 0
|
|
|
|
QPropertyBindingError__BindingLoop QPropertyBindingError__Type = 1
|
|
|
|
QPropertyBindingError__EvaluationError QPropertyBindingError__Type = 2
|
|
|
|
QPropertyBindingError__UnknownError QPropertyBindingError__Type = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
type QPropertyObserverBase__ObserverTag int
|
|
|
|
|
|
|
|
const (
|
|
|
|
QPropertyObserverBase__ObserverNotifiesBinding QPropertyObserverBase__ObserverTag = 0
|
|
|
|
QPropertyObserverBase__ObserverNotifiesChangeHandler QPropertyObserverBase__ObserverTag = 1
|
|
|
|
QPropertyObserverBase__ObserverIsPlaceholder QPropertyObserverBase__ObserverTag = 2
|
|
|
|
QPropertyObserverBase__ObserverIsAlias QPropertyObserverBase__ObserverTag = 3
|
|
|
|
)
|
|
|
|
|
|
|
|
type QPropertyBindingSourceLocation struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QPropertyBindingSourceLocation
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingSourceLocation) cPointer() *C.QPropertyBindingSourceLocation {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingSourceLocation) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQPropertyBindingSourceLocation constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQPropertyBindingSourceLocation(h *C.QPropertyBindingSourceLocation) *QPropertyBindingSourceLocation {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QPropertyBindingSourceLocation{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQPropertyBindingSourceLocation constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQPropertyBindingSourceLocation(h unsafe.Pointer) *QPropertyBindingSourceLocation {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQPropertyBindingSourceLocation((*C.QPropertyBindingSourceLocation)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingSourceLocation constructs a new QPropertyBindingSourceLocation object.
|
|
|
|
func NewQPropertyBindingSourceLocation() *QPropertyBindingSourceLocation {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingSourceLocation(C.QPropertyBindingSourceLocation_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingSourceLocation2 constructs a new QPropertyBindingSourceLocation object.
|
|
|
|
func NewQPropertyBindingSourceLocation2(param1 *QPropertyBindingSourceLocation) *QPropertyBindingSourceLocation {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingSourceLocation(C.QPropertyBindingSourceLocation_new2(param1.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QPropertyBindingSourceLocation) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QPropertyBindingSourceLocation_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QPropertyBindingSourceLocation) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QPropertyBindingSourceLocation) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QPropertyBindingError struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QPropertyBindingError
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) cPointer() *C.QPropertyBindingError {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQPropertyBindingError constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQPropertyBindingError(h *C.QPropertyBindingError) *QPropertyBindingError {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QPropertyBindingError{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQPropertyBindingError constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQPropertyBindingError(h unsafe.Pointer) *QPropertyBindingError {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQPropertyBindingError((*C.QPropertyBindingError)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingError constructs a new QPropertyBindingError object.
|
|
|
|
func NewQPropertyBindingError() *QPropertyBindingError {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingError(C.QPropertyBindingError_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingError2 constructs a new QPropertyBindingError object.
|
|
|
|
func NewQPropertyBindingError2(typeVal QPropertyBindingError__Type) *QPropertyBindingError {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingError(C.QPropertyBindingError_new2((C.int)(typeVal)))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingError3 constructs a new QPropertyBindingError object.
|
|
|
|
func NewQPropertyBindingError3(other *QPropertyBindingError) *QPropertyBindingError {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingError(C.QPropertyBindingError_new3(other.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyBindingError4 constructs a new QPropertyBindingError object.
|
|
|
|
func NewQPropertyBindingError4(typeVal QPropertyBindingError__Type, description string) *QPropertyBindingError {
|
|
|
|
description_ms := C.struct_miqt_string{}
|
|
|
|
description_ms.data = C.CString(description)
|
|
|
|
description_ms.len = C.size_t(len(description))
|
|
|
|
defer C.free(unsafe.Pointer(description_ms.data))
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyBindingError(C.QPropertyBindingError_new4((C.int)(typeVal), description_ms))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) OperatorAssign(other *QPropertyBindingError) {
|
|
|
|
C.QPropertyBindingError_OperatorAssign(this.h, other.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) HasError() bool {
|
|
|
|
return (bool)(C.QPropertyBindingError_HasError(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) Type() QPropertyBindingError__Type {
|
|
|
|
return (QPropertyBindingError__Type)(C.QPropertyBindingError_Type(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyBindingError) Description() string {
|
|
|
|
var _ms C.struct_miqt_string = C.QPropertyBindingError_Description(this.h)
|
|
|
|
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
|
|
|
|
C.free(unsafe.Pointer(_ms.data))
|
|
|
|
return _ret
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QPropertyBindingError) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QPropertyBindingError_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QPropertyBindingError) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QPropertyBindingError) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QUntypedPropertyBinding struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QUntypedPropertyBinding
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) cPointer() *C.QUntypedPropertyBinding {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQUntypedPropertyBinding constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQUntypedPropertyBinding(h *C.QUntypedPropertyBinding) *QUntypedPropertyBinding {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QUntypedPropertyBinding{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQUntypedPropertyBinding constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQUntypedPropertyBinding(h unsafe.Pointer) *QUntypedPropertyBinding {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQUntypedPropertyBinding((*C.QUntypedPropertyBinding)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQUntypedPropertyBinding constructs a new QUntypedPropertyBinding object.
|
|
|
|
func NewQUntypedPropertyBinding() *QUntypedPropertyBinding {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQUntypedPropertyBinding(C.QUntypedPropertyBinding_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQUntypedPropertyBinding2 constructs a new QUntypedPropertyBinding object.
|
|
|
|
func NewQUntypedPropertyBinding2(other *QUntypedPropertyBinding) *QUntypedPropertyBinding {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQUntypedPropertyBinding(C.QUntypedPropertyBinding_new2(other.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) OperatorAssign(other *QUntypedPropertyBinding) {
|
|
|
|
C.QUntypedPropertyBinding_OperatorAssign(this.h, other.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) IsNull() bool {
|
|
|
|
return (bool)(C.QUntypedPropertyBinding_IsNull(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) Error() *QPropertyBindingError {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQPropertyBindingError(C.QUntypedPropertyBinding_Error(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedPropertyBinding) ValueMetaType() *QMetaType {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQMetaType(C.QUntypedPropertyBinding_ValueMetaType(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QUntypedPropertyBinding) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QUntypedPropertyBinding_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QUntypedPropertyBinding) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QUntypedPropertyBinding) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QPropertyObserverBase struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QPropertyObserverBase
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyObserverBase) cPointer() *C.QPropertyObserverBase {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyObserverBase) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQPropertyObserverBase constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQPropertyObserverBase(h *C.QPropertyObserverBase) *QPropertyObserverBase {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QPropertyObserverBase{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQPropertyObserverBase constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQPropertyObserverBase(h unsafe.Pointer) *QPropertyObserverBase {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQPropertyObserverBase((*C.QPropertyObserverBase)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyObserverBase constructs a new QPropertyObserverBase object.
|
|
|
|
func NewQPropertyObserverBase() *QPropertyObserverBase {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyObserverBase(C.QPropertyObserverBase_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyObserverBase2 constructs a new QPropertyObserverBase object.
|
|
|
|
func NewQPropertyObserverBase2(param1 *QPropertyObserverBase) *QPropertyObserverBase {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyObserverBase(C.QPropertyObserverBase_new2(param1.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QPropertyObserverBase) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QPropertyObserverBase_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QPropertyObserverBase) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QPropertyObserverBase) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QPropertyObserver struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QPropertyObserver
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
*QPropertyObserverBase
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyObserver) cPointer() *C.QPropertyObserver {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyObserver) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQPropertyObserver constructs the type using only CGO pointers.
|
2024-12-07 04:15:57 +00:00
|
|
|
func newQPropertyObserver(h *C.QPropertyObserver) *QPropertyObserver {
|
2024-10-20 05:21:03 +00:00
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
var outptr_QPropertyObserverBase *C.QPropertyObserverBase = nil
|
|
|
|
C.QPropertyObserver_virtbase(h, &outptr_QPropertyObserverBase)
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
return &QPropertyObserver{h: h,
|
2024-12-07 04:15:57 +00:00
|
|
|
QPropertyObserverBase: newQPropertyObserverBase(outptr_QPropertyObserverBase)}
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQPropertyObserver constructs the type using only unsafe pointers.
|
2024-12-07 04:15:57 +00:00
|
|
|
func UnsafeNewQPropertyObserver(h unsafe.Pointer) *QPropertyObserver {
|
|
|
|
return newQPropertyObserver((*C.QPropertyObserver)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyObserver constructs a new QPropertyObserver object.
|
|
|
|
func NewQPropertyObserver() *QPropertyObserver {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyObserver(C.QPropertyObserver_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QPropertyObserver) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QPropertyObserver_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QPropertyObserver) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QPropertyObserver) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QPropertyNotifier struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QPropertyNotifier
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
*QPropertyObserver
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyNotifier) cPointer() *C.QPropertyNotifier {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QPropertyNotifier) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQPropertyNotifier constructs the type using only CGO pointers.
|
2024-12-07 04:15:57 +00:00
|
|
|
func newQPropertyNotifier(h *C.QPropertyNotifier) *QPropertyNotifier {
|
2024-10-20 05:21:03 +00:00
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
var outptr_QPropertyObserver *C.QPropertyObserver = nil
|
|
|
|
C.QPropertyNotifier_virtbase(h, &outptr_QPropertyObserver)
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
return &QPropertyNotifier{h: h,
|
2024-12-07 04:15:57 +00:00
|
|
|
QPropertyObserver: newQPropertyObserver(outptr_QPropertyObserver)}
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQPropertyNotifier constructs the type using only unsafe pointers.
|
2024-12-07 04:15:57 +00:00
|
|
|
func UnsafeNewQPropertyNotifier(h unsafe.Pointer) *QPropertyNotifier {
|
|
|
|
return newQPropertyNotifier((*C.QPropertyNotifier)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQPropertyNotifier constructs a new QPropertyNotifier object.
|
|
|
|
func NewQPropertyNotifier() *QPropertyNotifier {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQPropertyNotifier(C.QPropertyNotifier_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QPropertyNotifier) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QPropertyNotifier_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QPropertyNotifier) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QPropertyNotifier) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type QUntypedBindable struct {
|
2024-11-19 06:29:06 +00:00
|
|
|
h *C.QUntypedBindable
|
|
|
|
isSubclass bool
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) cPointer() *C.QUntypedBindable {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return this.h
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) UnsafePointer() unsafe.Pointer {
|
|
|
|
if this == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return unsafe.Pointer(this.h)
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// newQUntypedBindable constructs the type using only CGO pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func newQUntypedBindable(h *C.QUntypedBindable) *QUntypedBindable {
|
|
|
|
if h == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2024-12-07 04:15:57 +00:00
|
|
|
|
2024-10-20 05:21:03 +00:00
|
|
|
return &QUntypedBindable{h: h}
|
|
|
|
}
|
|
|
|
|
2024-11-19 06:29:06 +00:00
|
|
|
// UnsafeNewQUntypedBindable constructs the type using only unsafe pointers.
|
2024-10-20 05:21:03 +00:00
|
|
|
func UnsafeNewQUntypedBindable(h unsafe.Pointer) *QUntypedBindable {
|
2024-12-07 04:15:57 +00:00
|
|
|
return newQUntypedBindable((*C.QUntypedBindable)(h))
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQUntypedBindable constructs a new QUntypedBindable object.
|
|
|
|
func NewQUntypedBindable() *QUntypedBindable {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQUntypedBindable(C.QUntypedBindable_new())
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewQUntypedBindable2 constructs a new QUntypedBindable object.
|
|
|
|
func NewQUntypedBindable2(param1 *QUntypedBindable) *QUntypedBindable {
|
2024-11-19 06:29:06 +00:00
|
|
|
|
2024-12-07 04:15:57 +00:00
|
|
|
ret := newQUntypedBindable(C.QUntypedBindable_new2(param1.cPointer()))
|
2024-11-19 06:29:06 +00:00
|
|
|
ret.isSubclass = true
|
|
|
|
return ret
|
2024-10-20 05:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) IsValid() bool {
|
|
|
|
return (bool)(C.QUntypedBindable_IsValid(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) IsBindable() bool {
|
|
|
|
return (bool)(C.QUntypedBindable_IsBindable(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) IsReadOnly() bool {
|
|
|
|
return (bool)(C.QUntypedBindable_IsReadOnly(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) MakeBinding() *QUntypedPropertyBinding {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQUntypedPropertyBinding(C.QUntypedBindable_MakeBinding(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) TakeBinding() *QUntypedPropertyBinding {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQUntypedPropertyBinding(C.QUntypedBindable_TakeBinding(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) Observe(observer *QPropertyObserver) {
|
|
|
|
C.QUntypedBindable_Observe(this.h, observer.cPointer())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) Binding() *QUntypedPropertyBinding {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQUntypedPropertyBinding(C.QUntypedBindable_Binding(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) SetBinding(binding *QUntypedPropertyBinding) bool {
|
|
|
|
return (bool)(C.QUntypedBindable_SetBinding(this.h, binding.cPointer()))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) HasBinding() bool {
|
|
|
|
return (bool)(C.QUntypedBindable_HasBinding(this.h))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) MetaType() *QMetaType {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQMetaType(C.QUntypedBindable_MetaType(this.h))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
func (this *QUntypedBindable) MakeBinding1(location *QPropertyBindingSourceLocation) *QUntypedPropertyBinding {
|
2024-12-07 02:02:06 +00:00
|
|
|
_goptr := newQUntypedPropertyBinding(C.QUntypedBindable_MakeBinding1(this.h, location.cPointer()))
|
2024-10-20 05:21:03 +00:00
|
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
|
|
return _goptr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete this object from C++ memory.
|
|
|
|
func (this *QUntypedBindable) Delete() {
|
2024-11-19 06:29:06 +00:00
|
|
|
C.QUntypedBindable_Delete(this.h, C.bool(this.isSubclass))
|
2024-10-20 05:21:03 +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 *QUntypedBindable) GoGC() {
|
|
|
|
runtime.SetFinalizer(this, func(this *QUntypedBindable) {
|
|
|
|
this.Delete()
|
|
|
|
runtime.KeepAlive(this.h)
|
|
|
|
})
|
|
|
|
}
|