miqt/qt6/gen_qcoreapplication.go

749 lines
26 KiB
Go

package qt6
/*
#include "gen_qcoreapplication.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QCoreApplication__ int
const (
QCoreApplication__ApplicationFlags QCoreApplication__ = 394242
)
type QCoreApplication struct {
h *C.QCoreApplication
isSubclass bool
*QObject
}
func (this *QCoreApplication) cPointer() *C.QCoreApplication {
if this == nil {
return nil
}
return this.h
}
func (this *QCoreApplication) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQCoreApplication constructs the type using only CGO pointers.
func newQCoreApplication(h *C.QCoreApplication, h_QObject *C.QObject) *QCoreApplication {
if h == nil {
return nil
}
return &QCoreApplication{h: h,
QObject: newQObject(h_QObject)}
}
// UnsafeNewQCoreApplication constructs the type using only unsafe pointers.
func UnsafeNewQCoreApplication(h unsafe.Pointer, h_QObject unsafe.Pointer) *QCoreApplication {
if h == nil {
return nil
}
return &QCoreApplication{h: (*C.QCoreApplication)(h),
QObject: UnsafeNewQObject(h_QObject)}
}
// NewQCoreApplication constructs a new QCoreApplication object.
func NewQCoreApplication(args []string) *QCoreApplication {
// Convert []string to long-lived int& argc, char** argv, never call free()
argc := (*C.int)(C.malloc(8))
*argc = C.int(len(args))
argv := (*[0xffff]*C.char)(C.malloc(C.size_t(8 * len(args))))
for i := range args {
argv[i] = C.CString(args[i])
}
runtime.LockOSThread() // Prevent Go from migrating the main Qt thread
var outptr_QCoreApplication *C.QCoreApplication = nil
var outptr_QObject *C.QObject = nil
C.QCoreApplication_new(argc, &argv[0], &outptr_QCoreApplication, &outptr_QObject)
ret := newQCoreApplication(outptr_QCoreApplication, outptr_QObject)
ret.isSubclass = true
return ret
}
// NewQCoreApplication2 constructs a new QCoreApplication object.
func NewQCoreApplication2(args []string, param3 int) *QCoreApplication {
// Convert []string to long-lived int& argc, char** argv, never call free()
argc := (*C.int)(C.malloc(8))
*argc = C.int(len(args))
argv := (*[0xffff]*C.char)(C.malloc(C.size_t(8 * len(args))))
for i := range args {
argv[i] = C.CString(args[i])
}
runtime.LockOSThread() // Prevent Go from migrating the main Qt thread
var outptr_QCoreApplication *C.QCoreApplication = nil
var outptr_QObject *C.QObject = nil
C.QCoreApplication_new2(argc, &argv[0], (C.int)(param3), &outptr_QCoreApplication, &outptr_QObject)
ret := newQCoreApplication(outptr_QCoreApplication, outptr_QObject)
ret.isSubclass = true
return ret
}
func (this *QCoreApplication) MetaObject() *QMetaObject {
return UnsafeNewQMetaObject(unsafe.Pointer(C.QCoreApplication_MetaObject(this.h)))
}
func (this *QCoreApplication) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QCoreApplication_Metacast(this.h, param1_Cstring))
}
func QCoreApplication_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QCoreApplication_Tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_Arguments() []string {
var _ma C.struct_miqt_array = C.QCoreApplication_Arguments()
_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 QCoreApplication_SetAttribute(attribute ApplicationAttribute) {
C.QCoreApplication_SetAttribute((C.int)(attribute))
}
func QCoreApplication_TestAttribute(attribute ApplicationAttribute) bool {
return (bool)(C.QCoreApplication_TestAttribute((C.int)(attribute)))
}
func QCoreApplication_SetOrganizationDomain(orgDomain string) {
orgDomain_ms := C.struct_miqt_string{}
orgDomain_ms.data = C.CString(orgDomain)
orgDomain_ms.len = C.size_t(len(orgDomain))
defer C.free(unsafe.Pointer(orgDomain_ms.data))
C.QCoreApplication_SetOrganizationDomain(orgDomain_ms)
}
func QCoreApplication_OrganizationDomain() string {
var _ms C.struct_miqt_string = C.QCoreApplication_OrganizationDomain()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_SetOrganizationName(orgName string) {
orgName_ms := C.struct_miqt_string{}
orgName_ms.data = C.CString(orgName)
orgName_ms.len = C.size_t(len(orgName))
defer C.free(unsafe.Pointer(orgName_ms.data))
C.QCoreApplication_SetOrganizationName(orgName_ms)
}
func QCoreApplication_OrganizationName() string {
var _ms C.struct_miqt_string = C.QCoreApplication_OrganizationName()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_SetApplicationName(application string) {
application_ms := C.struct_miqt_string{}
application_ms.data = C.CString(application)
application_ms.len = C.size_t(len(application))
defer C.free(unsafe.Pointer(application_ms.data))
C.QCoreApplication_SetApplicationName(application_ms)
}
func QCoreApplication_ApplicationName() string {
var _ms C.struct_miqt_string = C.QCoreApplication_ApplicationName()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_SetApplicationVersion(version string) {
version_ms := C.struct_miqt_string{}
version_ms.data = C.CString(version)
version_ms.len = C.size_t(len(version))
defer C.free(unsafe.Pointer(version_ms.data))
C.QCoreApplication_SetApplicationVersion(version_ms)
}
func QCoreApplication_ApplicationVersion() string {
var _ms C.struct_miqt_string = C.QCoreApplication_ApplicationVersion()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_SetSetuidAllowed(allow bool) {
C.QCoreApplication_SetSetuidAllowed((C.bool)(allow))
}
func QCoreApplication_IsSetuidAllowed() bool {
return (bool)(C.QCoreApplication_IsSetuidAllowed())
}
func QCoreApplication_Instance() *QCoreApplication {
return UnsafeNewQCoreApplication(unsafe.Pointer(C.QCoreApplication_Instance()), nil)
}
func QCoreApplication_Exec() int {
return (int)(C.QCoreApplication_Exec())
}
func QCoreApplication_ProcessEvents() {
C.QCoreApplication_ProcessEvents()
}
func QCoreApplication_ProcessEvents2(flags QEventLoop__ProcessEventsFlag, maxtime int) {
C.QCoreApplication_ProcessEvents2((C.int)(flags), (C.int)(maxtime))
}
func QCoreApplication_SendEvent(receiver *QObject, event *QEvent) bool {
return (bool)(C.QCoreApplication_SendEvent(receiver.cPointer(), event.cPointer()))
}
func QCoreApplication_PostEvent(receiver *QObject, event *QEvent) {
C.QCoreApplication_PostEvent(receiver.cPointer(), event.cPointer())
}
func QCoreApplication_SendPostedEvents() {
C.QCoreApplication_SendPostedEvents()
}
func QCoreApplication_RemovePostedEvents(receiver *QObject) {
C.QCoreApplication_RemovePostedEvents(receiver.cPointer())
}
func QCoreApplication_EventDispatcher() *QAbstractEventDispatcher {
return UnsafeNewQAbstractEventDispatcher(unsafe.Pointer(C.QCoreApplication_EventDispatcher()), nil)
}
func QCoreApplication_SetEventDispatcher(eventDispatcher *QAbstractEventDispatcher) {
C.QCoreApplication_SetEventDispatcher(eventDispatcher.cPointer())
}
func (this *QCoreApplication) Notify(param1 *QObject, param2 *QEvent) bool {
return (bool)(C.QCoreApplication_Notify(this.h, param1.cPointer(), param2.cPointer()))
}
func QCoreApplication_StartingUp() bool {
return (bool)(C.QCoreApplication_StartingUp())
}
func QCoreApplication_ClosingDown() bool {
return (bool)(C.QCoreApplication_ClosingDown())
}
func QCoreApplication_ApplicationDirPath() string {
var _ms C.struct_miqt_string = C.QCoreApplication_ApplicationDirPath()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_ApplicationFilePath() string {
var _ms C.struct_miqt_string = C.QCoreApplication_ApplicationFilePath()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_ApplicationPid() int64 {
return (int64)(C.QCoreApplication_ApplicationPid())
}
func QCoreApplication_SetLibraryPaths(libraryPaths []string) {
libraryPaths_CArray := (*[0xffff]C.struct_miqt_string)(C.malloc(C.size_t(int(unsafe.Sizeof(C.struct_miqt_string{})) * len(libraryPaths))))
defer C.free(unsafe.Pointer(libraryPaths_CArray))
for i := range libraryPaths {
libraryPaths_i_ms := C.struct_miqt_string{}
libraryPaths_i_ms.data = C.CString(libraryPaths[i])
libraryPaths_i_ms.len = C.size_t(len(libraryPaths[i]))
defer C.free(unsafe.Pointer(libraryPaths_i_ms.data))
libraryPaths_CArray[i] = libraryPaths_i_ms
}
libraryPaths_ma := C.struct_miqt_array{len: C.size_t(len(libraryPaths)), data: unsafe.Pointer(libraryPaths_CArray)}
C.QCoreApplication_SetLibraryPaths(libraryPaths_ma)
}
func QCoreApplication_LibraryPaths() []string {
var _ma C.struct_miqt_array = C.QCoreApplication_LibraryPaths()
_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 QCoreApplication_AddLibraryPath(param1 string) {
param1_ms := C.struct_miqt_string{}
param1_ms.data = C.CString(param1)
param1_ms.len = C.size_t(len(param1))
defer C.free(unsafe.Pointer(param1_ms.data))
C.QCoreApplication_AddLibraryPath(param1_ms)
}
func QCoreApplication_RemoveLibraryPath(param1 string) {
param1_ms := C.struct_miqt_string{}
param1_ms.data = C.CString(param1)
param1_ms.len = C.size_t(len(param1))
defer C.free(unsafe.Pointer(param1_ms.data))
C.QCoreApplication_RemoveLibraryPath(param1_ms)
}
func QCoreApplication_InstallTranslator(messageFile *QTranslator) bool {
return (bool)(C.QCoreApplication_InstallTranslator(messageFile.cPointer()))
}
func QCoreApplication_RemoveTranslator(messageFile *QTranslator) bool {
return (bool)(C.QCoreApplication_RemoveTranslator(messageFile.cPointer()))
}
func QCoreApplication_Translate(context string, key string) string {
context_Cstring := C.CString(context)
defer C.free(unsafe.Pointer(context_Cstring))
key_Cstring := C.CString(key)
defer C.free(unsafe.Pointer(key_Cstring))
var _ms C.struct_miqt_string = C.QCoreApplication_Translate(context_Cstring, key_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QCoreApplication) InstallNativeEventFilter(filterObj *QAbstractNativeEventFilter) {
C.QCoreApplication_InstallNativeEventFilter(this.h, filterObj.cPointer())
}
func (this *QCoreApplication) OnInstallNativeEventFilter(slot func(filterObj *QAbstractNativeEventFilter)) {
C.QCoreApplication_connect_InstallNativeEventFilter(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_InstallNativeEventFilter
func miqt_exec_callback_QCoreApplication_InstallNativeEventFilter(cb C.intptr_t, filterObj *C.QAbstractNativeEventFilter) {
gofunc, ok := cgo.Handle(cb).Value().(func(filterObj *QAbstractNativeEventFilter))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := UnsafeNewQAbstractNativeEventFilter(unsafe.Pointer(filterObj))
gofunc(slotval1)
}
func (this *QCoreApplication) RemoveNativeEventFilter(filterObj *QAbstractNativeEventFilter) {
C.QCoreApplication_RemoveNativeEventFilter(this.h, filterObj.cPointer())
}
func (this *QCoreApplication) OnRemoveNativeEventFilter(slot func(filterObj *QAbstractNativeEventFilter)) {
C.QCoreApplication_connect_RemoveNativeEventFilter(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_RemoveNativeEventFilter
func miqt_exec_callback_QCoreApplication_RemoveNativeEventFilter(cb C.intptr_t, filterObj *C.QAbstractNativeEventFilter) {
gofunc, ok := cgo.Handle(cb).Value().(func(filterObj *QAbstractNativeEventFilter))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := UnsafeNewQAbstractNativeEventFilter(unsafe.Pointer(filterObj))
gofunc(slotval1)
}
func QCoreApplication_IsQuitLockEnabled() bool {
return (bool)(C.QCoreApplication_IsQuitLockEnabled())
}
func QCoreApplication_SetQuitLockEnabled(enabled bool) {
C.QCoreApplication_SetQuitLockEnabled((C.bool)(enabled))
}
func QCoreApplication_Quit() {
C.QCoreApplication_Quit()
}
func QCoreApplication_Exit() {
C.QCoreApplication_Exit()
}
func (this *QCoreApplication) OrganizationNameChanged() {
C.QCoreApplication_OrganizationNameChanged(this.h)
}
func (this *QCoreApplication) OnOrganizationNameChanged(slot func()) {
C.QCoreApplication_connect_OrganizationNameChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_OrganizationNameChanged
func miqt_exec_callback_QCoreApplication_OrganizationNameChanged(cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func())
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc()
}
func (this *QCoreApplication) OrganizationDomainChanged() {
C.QCoreApplication_OrganizationDomainChanged(this.h)
}
func (this *QCoreApplication) OnOrganizationDomainChanged(slot func()) {
C.QCoreApplication_connect_OrganizationDomainChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_OrganizationDomainChanged
func miqt_exec_callback_QCoreApplication_OrganizationDomainChanged(cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func())
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc()
}
func (this *QCoreApplication) ApplicationNameChanged() {
C.QCoreApplication_ApplicationNameChanged(this.h)
}
func (this *QCoreApplication) OnApplicationNameChanged(slot func()) {
C.QCoreApplication_connect_ApplicationNameChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_ApplicationNameChanged
func miqt_exec_callback_QCoreApplication_ApplicationNameChanged(cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func())
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc()
}
func (this *QCoreApplication) ApplicationVersionChanged() {
C.QCoreApplication_ApplicationVersionChanged(this.h)
}
func (this *QCoreApplication) OnApplicationVersionChanged(slot func()) {
C.QCoreApplication_connect_ApplicationVersionChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_ApplicationVersionChanged
func miqt_exec_callback_QCoreApplication_ApplicationVersionChanged(cb C.intptr_t) {
gofunc, ok := cgo.Handle(cb).Value().(func())
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
gofunc()
}
func QCoreApplication_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.QCoreApplication_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_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.QCoreApplication_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 QCoreApplication_SetAttribute2(attribute ApplicationAttribute, on bool) {
C.QCoreApplication_SetAttribute2((C.int)(attribute), (C.bool)(on))
}
func QCoreApplication_ProcessEvents1(flags QEventLoop__ProcessEventsFlag) {
C.QCoreApplication_ProcessEvents1((C.int)(flags))
}
func QCoreApplication_PostEvent3(receiver *QObject, event *QEvent, priority int) {
C.QCoreApplication_PostEvent3(receiver.cPointer(), event.cPointer(), (C.int)(priority))
}
func QCoreApplication_SendPostedEvents1(receiver *QObject) {
C.QCoreApplication_SendPostedEvents1(receiver.cPointer())
}
func QCoreApplication_SendPostedEvents2(receiver *QObject, event_type int) {
C.QCoreApplication_SendPostedEvents2(receiver.cPointer(), (C.int)(event_type))
}
func QCoreApplication_RemovePostedEvents2(receiver *QObject, eventType int) {
C.QCoreApplication_RemovePostedEvents2(receiver.cPointer(), (C.int)(eventType))
}
func QCoreApplication_Translate3(context string, key string, disambiguation string) string {
context_Cstring := C.CString(context)
defer C.free(unsafe.Pointer(context_Cstring))
key_Cstring := C.CString(key)
defer C.free(unsafe.Pointer(key_Cstring))
disambiguation_Cstring := C.CString(disambiguation)
defer C.free(unsafe.Pointer(disambiguation_Cstring))
var _ms C.struct_miqt_string = C.QCoreApplication_Translate3(context_Cstring, key_Cstring, disambiguation_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_Translate4(context string, key string, disambiguation string, n int) string {
context_Cstring := C.CString(context)
defer C.free(unsafe.Pointer(context_Cstring))
key_Cstring := C.CString(key)
defer C.free(unsafe.Pointer(key_Cstring))
disambiguation_Cstring := C.CString(disambiguation)
defer C.free(unsafe.Pointer(disambiguation_Cstring))
var _ms C.struct_miqt_string = C.QCoreApplication_Translate4(context_Cstring, key_Cstring, disambiguation_Cstring, (C.int)(n))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QCoreApplication_Exit1(retcode int) {
C.QCoreApplication_Exit1((C.int)(retcode))
}
func (this *QCoreApplication) callVirtualBase_Notify(param1 *QObject, param2 *QEvent) bool {
return (bool)(C.QCoreApplication_virtualbase_Notify(unsafe.Pointer(this.h), param1.cPointer(), param2.cPointer()))
}
func (this *QCoreApplication) OnNotify(slot func(super func(param1 *QObject, param2 *QEvent) bool, param1 *QObject, param2 *QEvent) bool) {
C.QCoreApplication_override_virtual_Notify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_Notify
func miqt_exec_callback_QCoreApplication_Notify(self *C.QCoreApplication, cb C.intptr_t, param1 *C.QObject, param2 *C.QEvent) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 *QObject, param2 *QEvent) bool, param1 *QObject, param2 *QEvent) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := UnsafeNewQObject(unsafe.Pointer(param1))
slotval2 := UnsafeNewQEvent(unsafe.Pointer(param2))
virtualReturn := gofunc((&QCoreApplication{h: self}).callVirtualBase_Notify, slotval1, slotval2)
return (C.bool)(virtualReturn)
}
func (this *QCoreApplication) callVirtualBase_Event(param1 *QEvent) bool {
return (bool)(C.QCoreApplication_virtualbase_Event(unsafe.Pointer(this.h), param1.cPointer()))
}
func (this *QCoreApplication) OnEvent(slot func(super func(param1 *QEvent) bool, param1 *QEvent) bool) {
C.QCoreApplication_override_virtual_Event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_Event
func miqt_exec_callback_QCoreApplication_Event(self *C.QCoreApplication, cb C.intptr_t, param1 *C.QEvent) C.bool {
gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 *QEvent) bool, param1 *QEvent) bool)
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := UnsafeNewQEvent(unsafe.Pointer(param1))
virtualReturn := gofunc((&QCoreApplication{h: self}).callVirtualBase_Event, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QCoreApplication) callVirtualBase_EventFilter(watched *QObject, event *QEvent) bool {
return (bool)(C.QCoreApplication_virtualbase_EventFilter(unsafe.Pointer(this.h), watched.cPointer(), event.cPointer()))
}
func (this *QCoreApplication) OnEventFilter(slot func(super func(watched *QObject, event *QEvent) bool, watched *QObject, event *QEvent) bool) {
C.QCoreApplication_override_virtual_EventFilter(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_EventFilter
func miqt_exec_callback_QCoreApplication_EventFilter(self *C.QCoreApplication, 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 := UnsafeNewQObject(unsafe.Pointer(watched))
slotval2 := UnsafeNewQEvent(unsafe.Pointer(event))
virtualReturn := gofunc((&QCoreApplication{h: self}).callVirtualBase_EventFilter, slotval1, slotval2)
return (C.bool)(virtualReturn)
}
func (this *QCoreApplication) callVirtualBase_TimerEvent(event *QTimerEvent) {
C.QCoreApplication_virtualbase_TimerEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QCoreApplication) OnTimerEvent(slot func(super func(event *QTimerEvent), event *QTimerEvent)) {
C.QCoreApplication_override_virtual_TimerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_TimerEvent
func miqt_exec_callback_QCoreApplication_TimerEvent(self *C.QCoreApplication, 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
slotval1 := UnsafeNewQTimerEvent(unsafe.Pointer(event), nil)
gofunc((&QCoreApplication{h: self}).callVirtualBase_TimerEvent, slotval1)
}
func (this *QCoreApplication) callVirtualBase_ChildEvent(event *QChildEvent) {
C.QCoreApplication_virtualbase_ChildEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QCoreApplication) OnChildEvent(slot func(super func(event *QChildEvent), event *QChildEvent)) {
C.QCoreApplication_override_virtual_ChildEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_ChildEvent
func miqt_exec_callback_QCoreApplication_ChildEvent(self *C.QCoreApplication, 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
slotval1 := UnsafeNewQChildEvent(unsafe.Pointer(event), nil)
gofunc((&QCoreApplication{h: self}).callVirtualBase_ChildEvent, slotval1)
}
func (this *QCoreApplication) callVirtualBase_CustomEvent(event *QEvent) {
C.QCoreApplication_virtualbase_CustomEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QCoreApplication) OnCustomEvent(slot func(super func(event *QEvent), event *QEvent)) {
C.QCoreApplication_override_virtual_CustomEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_CustomEvent
func miqt_exec_callback_QCoreApplication_CustomEvent(self *C.QCoreApplication, 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 := UnsafeNewQEvent(unsafe.Pointer(event))
gofunc((&QCoreApplication{h: self}).callVirtualBase_CustomEvent, slotval1)
}
func (this *QCoreApplication) callVirtualBase_ConnectNotify(signal *QMetaMethod) {
C.QCoreApplication_virtualbase_ConnectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QCoreApplication) OnConnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
C.QCoreApplication_override_virtual_ConnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_ConnectNotify
func miqt_exec_callback_QCoreApplication_ConnectNotify(self *C.QCoreApplication, 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 := UnsafeNewQMetaMethod(unsafe.Pointer(signal))
gofunc((&QCoreApplication{h: self}).callVirtualBase_ConnectNotify, slotval1)
}
func (this *QCoreApplication) callVirtualBase_DisconnectNotify(signal *QMetaMethod) {
C.QCoreApplication_virtualbase_DisconnectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QCoreApplication) OnDisconnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
C.QCoreApplication_override_virtual_DisconnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QCoreApplication_DisconnectNotify
func miqt_exec_callback_QCoreApplication_DisconnectNotify(self *C.QCoreApplication, 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 := UnsafeNewQMetaMethod(unsafe.Pointer(signal))
gofunc((&QCoreApplication{h: self}).callVirtualBase_DisconnectNotify, slotval1)
}
// Delete this object from C++ memory.
func (this *QCoreApplication) Delete() {
C.QCoreApplication_Delete(this.h, C.bool(this.isSubclass))
}
// 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 *QCoreApplication) GoGC() {
runtime.SetFinalizer(this, func(this *QCoreApplication) {
this.Delete()
runtime.KeepAlive(this.h)
})
}