miqt/qt6/gen_qinputdevice.go

488 lines
17 KiB
Go
Raw Permalink Normal View History

2024-10-20 05:21:03 +00:00
package qt6
/*
#include "gen_qinputdevice.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QInputDevice__DeviceType int
const (
QInputDevice__Unknown QInputDevice__DeviceType = 0
QInputDevice__Mouse QInputDevice__DeviceType = 1
QInputDevice__TouchScreen QInputDevice__DeviceType = 2
QInputDevice__TouchPad QInputDevice__DeviceType = 4
QInputDevice__Puck QInputDevice__DeviceType = 8
QInputDevice__Stylus QInputDevice__DeviceType = 16
QInputDevice__Airbrush QInputDevice__DeviceType = 32
QInputDevice__Keyboard QInputDevice__DeviceType = 4096
QInputDevice__AllDevices QInputDevice__DeviceType = 2147483647
)
type QInputDevice__Capability int
const (
QInputDevice__None QInputDevice__Capability = 0
QInputDevice__Position QInputDevice__Capability = 1
QInputDevice__Area QInputDevice__Capability = 2
QInputDevice__Pressure QInputDevice__Capability = 4
QInputDevice__Velocity QInputDevice__Capability = 8
QInputDevice__NormalizedPosition QInputDevice__Capability = 32
QInputDevice__MouseEmulation QInputDevice__Capability = 64
QInputDevice__PixelScroll QInputDevice__Capability = 128
QInputDevice__Scroll QInputDevice__Capability = 256
QInputDevice__Hover QInputDevice__Capability = 512
QInputDevice__Rotation QInputDevice__Capability = 1024
QInputDevice__XTilt QInputDevice__Capability = 2048
QInputDevice__YTilt QInputDevice__Capability = 4096
QInputDevice__TangentialPressure QInputDevice__Capability = 8192
QInputDevice__ZPosition QInputDevice__Capability = 16384
QInputDevice__All QInputDevice__Capability = 2147483647
)
type QInputDevice struct {
2024-11-19 06:29:06 +00:00
h *C.QInputDevice
isSubclass bool
2024-10-20 05:21:03 +00:00
*QObject
}
func (this *QInputDevice) cPointer() *C.QInputDevice {
if this == nil {
return nil
}
return this.h
}
func (this *QInputDevice) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
2024-11-19 06:29:06 +00:00
// newQInputDevice constructs the type using only CGO pointers.
2024-12-07 04:15:57 +00:00
func newQInputDevice(h *C.QInputDevice) *QInputDevice {
2024-10-20 05:21:03 +00:00
if h == nil {
return nil
}
2024-12-07 04:15:57 +00:00
var outptr_QObject *C.QObject = nil
C.QInputDevice_virtbase(h, &outptr_QObject)
2024-11-19 06:29:06 +00:00
return &QInputDevice{h: h,
2024-12-07 04:15:57 +00:00
QObject: newQObject(outptr_QObject)}
2024-10-20 05:21:03 +00:00
}
2024-11-19 06:29:06 +00:00
// UnsafeNewQInputDevice constructs the type using only unsafe pointers.
2024-12-07 04:15:57 +00:00
func UnsafeNewQInputDevice(h unsafe.Pointer) *QInputDevice {
return newQInputDevice((*C.QInputDevice)(h))
2024-10-20 05:21:03 +00:00
}
// NewQInputDevice constructs a new QInputDevice object.
func NewQInputDevice() *QInputDevice {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQInputDevice(C.QInputDevice_new())
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQInputDevice2 constructs a new QInputDevice object.
func NewQInputDevice2(name string, systemId int64, typeVal QInputDevice__DeviceType) *QInputDevice {
name_ms := C.struct_miqt_string{}
name_ms.data = C.CString(name)
name_ms.len = C.size_t(len(name))
defer C.free(unsafe.Pointer(name_ms.data))
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQInputDevice(C.QInputDevice_new2(name_ms, (C.longlong)(systemId), (C.int)(typeVal)))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQInputDevice3 constructs a new QInputDevice object.
func NewQInputDevice3(parent *QObject) *QInputDevice {
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQInputDevice(C.QInputDevice_new3(parent.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQInputDevice4 constructs a new QInputDevice object.
func NewQInputDevice4(name string, systemId int64, typeVal QInputDevice__DeviceType, seatName string) *QInputDevice {
name_ms := C.struct_miqt_string{}
name_ms.data = C.CString(name)
name_ms.len = C.size_t(len(name))
defer C.free(unsafe.Pointer(name_ms.data))
seatName_ms := C.struct_miqt_string{}
seatName_ms.data = C.CString(seatName)
seatName_ms.len = C.size_t(len(seatName))
defer C.free(unsafe.Pointer(seatName_ms.data))
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQInputDevice(C.QInputDevice_new4(name_ms, (C.longlong)(systemId), (C.int)(typeVal), seatName_ms))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
// NewQInputDevice5 constructs a new QInputDevice object.
func NewQInputDevice5(name string, systemId int64, typeVal QInputDevice__DeviceType, seatName string, parent *QObject) *QInputDevice {
name_ms := C.struct_miqt_string{}
name_ms.data = C.CString(name)
name_ms.len = C.size_t(len(name))
defer C.free(unsafe.Pointer(name_ms.data))
seatName_ms := C.struct_miqt_string{}
seatName_ms.data = C.CString(seatName)
seatName_ms.len = C.size_t(len(seatName))
defer C.free(unsafe.Pointer(seatName_ms.data))
2024-11-19 06:29:06 +00:00
2024-12-07 04:15:57 +00:00
ret := newQInputDevice(C.QInputDevice_new5(name_ms, (C.longlong)(systemId), (C.int)(typeVal), seatName_ms, parent.cPointer()))
2024-11-19 06:29:06 +00:00
ret.isSubclass = true
return ret
2024-10-20 05:21:03 +00:00
}
func (this *QInputDevice) MetaObject() *QMetaObject {
return newQMetaObject(C.QInputDevice_MetaObject(this.h))
2024-10-20 05:21:03 +00:00
}
func (this *QInputDevice) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QInputDevice_Metacast(this.h, param1_Cstring))
}
func QInputDevice_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QInputDevice_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QInputDevice) Name() string {
var _ms C.struct_miqt_string = C.QInputDevice_Name(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QInputDevice) Type() QInputDevice__DeviceType {
return (QInputDevice__DeviceType)(C.QInputDevice_Type(this.h))
}
func (this *QInputDevice) Capabilities() QInputDevice__Capability {
return (QInputDevice__Capability)(C.QInputDevice_Capabilities(this.h))
}
func (this *QInputDevice) HasCapability(cap QInputDevice__Capability) bool {
return (bool)(C.QInputDevice_HasCapability(this.h, (C.int)(cap)))
}
func (this *QInputDevice) SystemId() int64 {
return (int64)(C.QInputDevice_SystemId(this.h))
}
func (this *QInputDevice) SeatName() string {
var _ms C.struct_miqt_string = C.QInputDevice_SeatName(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QInputDevice) AvailableVirtualGeometry() *QRect {
_goptr := newQRect(C.QInputDevice_AvailableVirtualGeometry(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 QInputDevice_SeatNames() []string {
var _ma C.struct_miqt_array = C.QInputDevice_SeatNames()
2024-10-20 05:21:03 +00:00
_ret := make([]string, int(_ma.len))
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
var _lv_ms C.struct_miqt_string = _outCast[i]
_lv_ret := C.GoStringN(_lv_ms.data, C.int(int64(_lv_ms.len)))
C.free(unsafe.Pointer(_lv_ms.data))
_ret[i] = _lv_ret
}
return _ret
}
func QInputDevice_Devices() []*QInputDevice {
var _ma C.struct_miqt_array = C.QInputDevice_Devices()
2024-10-20 05:21:03 +00:00
_ret := make([]*QInputDevice, int(_ma.len))
_outCast := (*[0xffff]*C.QInputDevice)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
2024-12-07 04:15:57 +00:00
_ret[i] = newQInputDevice(_outCast[i])
2024-10-20 05:21:03 +00:00
}
return _ret
}
func QInputDevice_PrimaryKeyboard() *QInputDevice {
2024-12-07 04:15:57 +00:00
return newQInputDevice(C.QInputDevice_PrimaryKeyboard())
2024-10-20 05:21:03 +00:00
}
func (this *QInputDevice) OperatorEqual(other *QInputDevice) bool {
return (bool)(C.QInputDevice_OperatorEqual(this.h, other.cPointer()))
}
func (this *QInputDevice) AvailableVirtualGeometryChanged(area QRect) {
C.QInputDevice_AvailableVirtualGeometryChanged(this.h, area.cPointer())
}
func (this *QInputDevice) OnAvailableVirtualGeometryChanged(slot func(area QRect)) {
C.QInputDevice_connect_AvailableVirtualGeometryChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_AvailableVirtualGeometryChanged
func miqt_exec_callback_QInputDevice_AvailableVirtualGeometryChanged(cb C.intptr_t, area *C.QRect) {
gofunc, ok := cgo.Handle(cb).Value().(func(area QRect))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
area_goptr := newQRect(area)
2024-10-20 05:21:03 +00:00
area_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
slotval1 := *area_goptr
gofunc(slotval1)
}
func QInputDevice_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.QInputDevice_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QInputDevice_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.QInputDevice_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 QInputDevice_PrimaryKeyboard1(seatName string) *QInputDevice {
seatName_ms := C.struct_miqt_string{}
seatName_ms.data = C.CString(seatName)
seatName_ms.len = C.size_t(len(seatName))
defer C.free(unsafe.Pointer(seatName_ms.data))
2024-12-07 04:15:57 +00:00
return newQInputDevice(C.QInputDevice_PrimaryKeyboard1(seatName_ms))
2024-11-19 06:29:06 +00:00
}
func (this *QInputDevice) callVirtualBase_Event(event *QEvent) bool {
return (bool)(C.QInputDevice_virtualbase_Event(unsafe.Pointer(this.h), event.cPointer()))
}
func (this *QInputDevice) OnEvent(slot func(super func(event *QEvent) bool, event *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.QInputDevice_override_virtual_Event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_Event
func miqt_exec_callback_QInputDevice_Event(self *C.QInputDevice, cb C.intptr_t, event *C.QEvent) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QEvent) bool, event *QEvent) bool)
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
virtualReturn := gofunc((&QInputDevice{h: self}).callVirtualBase_Event, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QInputDevice) callVirtualBase_EventFilter(watched *QObject, event *QEvent) bool {
return (bool)(C.QInputDevice_virtualbase_EventFilter(unsafe.Pointer(this.h), watched.cPointer(), event.cPointer()))
}
func (this *QInputDevice) OnEventFilter(slot func(super func(watched *QObject, event *QEvent) bool, watched *QObject, event *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.QInputDevice_override_virtual_EventFilter(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_EventFilter
func miqt_exec_callback_QInputDevice_EventFilter(self *C.QInputDevice, cb C.intptr_t, watched *C.QObject, event *C.QEvent) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(watched *QObject, event *QEvent) bool, watched *QObject, event *QEvent) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQObject(watched)
slotval2 := newQEvent(event)
2024-11-19 06:29:06 +00:00
virtualReturn := gofunc((&QInputDevice{h: self}).callVirtualBase_EventFilter, slotval1, slotval2)
return (C.bool)(virtualReturn)
}
func (this *QInputDevice) callVirtualBase_TimerEvent(event *QTimerEvent) {
C.QInputDevice_virtualbase_TimerEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QInputDevice) OnTimerEvent(slot func(super func(event *QTimerEvent), event *QTimerEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QInputDevice_override_virtual_TimerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_TimerEvent
func miqt_exec_callback_QInputDevice_TimerEvent(self *C.QInputDevice, cb C.intptr_t, event *C.QTimerEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QTimerEvent), event *QTimerEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
2024-12-07 04:15:57 +00:00
slotval1 := newQTimerEvent(event)
2024-11-19 06:29:06 +00:00
gofunc((&QInputDevice{h: self}).callVirtualBase_TimerEvent, slotval1)
}
func (this *QInputDevice) callVirtualBase_ChildEvent(event *QChildEvent) {
C.QInputDevice_virtualbase_ChildEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QInputDevice) OnChildEvent(slot func(super func(event *QChildEvent), event *QChildEvent)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QInputDevice_override_virtual_ChildEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_ChildEvent
func miqt_exec_callback_QInputDevice_ChildEvent(self *C.QInputDevice, cb C.intptr_t, event *C.QChildEvent) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *QChildEvent), event *QChildEvent))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
2024-12-07 04:15:57 +00:00
slotval1 := newQChildEvent(event)
2024-11-19 06:29:06 +00:00
gofunc((&QInputDevice{h: self}).callVirtualBase_ChildEvent, slotval1)
}
func (this *QInputDevice) callVirtualBase_CustomEvent(event *QEvent) {
C.QInputDevice_virtualbase_CustomEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QInputDevice) OnCustomEvent(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.QInputDevice_override_virtual_CustomEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_CustomEvent
func miqt_exec_callback_QInputDevice_CustomEvent(self *C.QInputDevice, 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((&QInputDevice{h: self}).callVirtualBase_CustomEvent, slotval1)
}
func (this *QInputDevice) callVirtualBase_ConnectNotify(signal *QMetaMethod) {
C.QInputDevice_virtualbase_ConnectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QInputDevice) OnConnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QInputDevice_override_virtual_ConnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_ConnectNotify
func miqt_exec_callback_QInputDevice_ConnectNotify(self *C.QInputDevice, cb C.intptr_t, signal *C.QMetaMethod) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *QMetaMethod), signal *QMetaMethod))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQMetaMethod(signal)
2024-11-19 06:29:06 +00:00
gofunc((&QInputDevice{h: self}).callVirtualBase_ConnectNotify, slotval1)
}
func (this *QInputDevice) callVirtualBase_DisconnectNotify(signal *QMetaMethod) {
C.QInputDevice_virtualbase_DisconnectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QInputDevice) OnDisconnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
if !this.isSubclass {
panic("miqt: can only override virtual methods for directly constructed types")
}
2024-11-19 06:29:06 +00:00
C.QInputDevice_override_virtual_DisconnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QInputDevice_DisconnectNotify
func miqt_exec_callback_QInputDevice_DisconnectNotify(self *C.QInputDevice, cb C.intptr_t, signal *C.QMetaMethod) {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *QMetaMethod), signal *QMetaMethod))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQMetaMethod(signal)
2024-11-19 06:29:06 +00:00
gofunc((&QInputDevice{h: self}).callVirtualBase_DisconnectNotify, slotval1)
2024-10-20 05:21:03 +00:00
}
// Delete this object from C++ memory.
func (this *QInputDevice) Delete() {
2024-11-19 06:29:06 +00:00
C.QInputDevice_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 *QInputDevice) GoGC() {
runtime.SetFinalizer(this, func(this *QInputDevice) {
this.Delete()
runtime.KeepAlive(this.h)
})
}