miqt/qt6/gen_qrgba64.go

182 lines
4.3 KiB
Go
Raw Normal View History

2024-10-20 05:21:03 +00:00
package qt6
/*
#include "gen_qrgba64.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QRgba64 struct {
2024-11-19 06:29:06 +00:00
h *C.QRgba64
isSubclass bool
2024-10-20 05:21:03 +00:00
}
func (this *QRgba64) cPointer() *C.QRgba64 {
if this == nil {
return nil
}
return this.h
}
func (this *QRgba64) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQRgba64 constructs the type using only CGO pointers.
2024-10-20 05:21:03 +00:00
func newQRgba64(h *C.QRgba64) *QRgba64 {
if h == nil {
return nil
}
2024-12-07 04:15:57 +00:00
2024-10-20 05:21:03 +00:00
return &QRgba64{h: h}
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQRgba64 constructs the type using only unsafe pointers.
2024-10-20 05:21:03 +00:00
func UnsafeNewQRgba64(h unsafe.Pointer) *QRgba64 {
2024-12-07 04:15:57 +00:00
return newQRgba64((*C.QRgba64)(h))
2024-10-20 05:21:03 +00:00
}
// NewQRgba64 constructs a new QRgba64 object.
func NewQRgba64() *QRgba64 {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQRgba64(C.QRgba64_new())
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQRgba642 constructs a new QRgba64 object.
func NewQRgba642(param1 *QRgba64) *QRgba64 {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQRgba64(C.QRgba64_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 QRgba64_FromRgba64(c uint64) *QRgba64 {
_goptr := newQRgba64(C.QRgba64_FromRgba64((C.ulonglong)(c)))
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 QRgba64_FromRgba642(red uint16, green uint16, blue uint16, alpha uint16) *QRgba64 {
_goptr := newQRgba64(C.QRgba64_FromRgba642((C.uint16_t)(red), (C.uint16_t)(green), (C.uint16_t)(blue), (C.uint16_t)(alpha)))
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 QRgba64_FromRgba(red byte, green byte, blue byte, alpha byte) *QRgba64 {
_goptr := newQRgba64(C.QRgba64_FromRgba((C.uchar)(red), (C.uchar)(green), (C.uchar)(blue), (C.uchar)(alpha)))
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 QRgba64_FromArgb32(rgb uint) *QRgba64 {
_goptr := newQRgba64(C.QRgba64_FromArgb32((C.uint)(rgb)))
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 *QRgba64) IsOpaque() bool {
return (bool)(C.QRgba64_IsOpaque(this.h))
}
func (this *QRgba64) IsTransparent() bool {
return (bool)(C.QRgba64_IsTransparent(this.h))
}
func (this *QRgba64) Red() uint16 {
return (uint16)(C.QRgba64_Red(this.h))
}
func (this *QRgba64) Green() uint16 {
return (uint16)(C.QRgba64_Green(this.h))
}
func (this *QRgba64) Blue() uint16 {
return (uint16)(C.QRgba64_Blue(this.h))
}
func (this *QRgba64) Alpha() uint16 {
return (uint16)(C.QRgba64_Alpha(this.h))
}
func (this *QRgba64) SetRed(_red uint16) {
C.QRgba64_SetRed(this.h, (C.uint16_t)(_red))
}
func (this *QRgba64) SetGreen(_green uint16) {
C.QRgba64_SetGreen(this.h, (C.uint16_t)(_green))
}
func (this *QRgba64) SetBlue(_blue uint16) {
C.QRgba64_SetBlue(this.h, (C.uint16_t)(_blue))
}
func (this *QRgba64) SetAlpha(_alpha uint16) {
C.QRgba64_SetAlpha(this.h, (C.uint16_t)(_alpha))
}
func (this *QRgba64) Red8() byte {
return (byte)(C.QRgba64_Red8(this.h))
}
func (this *QRgba64) Green8() byte {
return (byte)(C.QRgba64_Green8(this.h))
}
func (this *QRgba64) Blue8() byte {
return (byte)(C.QRgba64_Blue8(this.h))
}
func (this *QRgba64) Alpha8() byte {
return (byte)(C.QRgba64_Alpha8(this.h))
}
func (this *QRgba64) ToArgb32() uint {
return (uint)(C.QRgba64_ToArgb32(this.h))
}
func (this *QRgba64) ToRgb16() uint16 {
return (uint16)(C.QRgba64_ToRgb16(this.h))
}
func (this *QRgba64) Premultiplied() *QRgba64 {
_goptr := newQRgba64(C.QRgba64_Premultiplied(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 *QRgba64) Unpremultiplied() *QRgba64 {
_goptr := newQRgba64(C.QRgba64_Unpremultiplied(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 *QRgba64) OperatorAssign(_rgba uint64) {
C.QRgba64_OperatorAssign(this.h, (C.ulonglong)(_rgba))
}
// Delete this object from C++ memory.
func (this *QRgba64) Delete() {
2024-11-19 06:29:06 +00:00
C.QRgba64_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 *QRgba64) GoGC() {
runtime.SetFinalizer(this, func(this *QRgba64) {
this.Delete()
runtime.KeepAlive(this.h)
})
}