miqt/qt6/gen_qguiapplication.go
2025-02-01 13:45:22 +13:00

869 lines
29 KiB
Go

package qt6
/*
#include "gen_qguiapplication.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
type QGuiApplication struct {
h *C.QGuiApplication
*QCoreApplication
}
func (this *QGuiApplication) cPointer() *C.QGuiApplication {
if this == nil {
return nil
}
return this.h
}
func (this *QGuiApplication) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQGuiApplication constructs the type using only CGO pointers.
func newQGuiApplication(h *C.QGuiApplication) *QGuiApplication {
if h == nil {
return nil
}
var outptr_QCoreApplication *C.QCoreApplication = nil
C.QGuiApplication_virtbase(h, &outptr_QCoreApplication)
return &QGuiApplication{h: h,
QCoreApplication: newQCoreApplication(outptr_QCoreApplication)}
}
// UnsafeNewQGuiApplication constructs the type using only unsafe pointers.
func UnsafeNewQGuiApplication(h unsafe.Pointer) *QGuiApplication {
return newQGuiApplication((*C.QGuiApplication)(h))
}
// NewQGuiApplication constructs a new QGuiApplication object.
func NewQGuiApplication(args []string) *QGuiApplication {
// 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
return newQGuiApplication(C.QGuiApplication_new(argc, &argv[0]))
}
// NewQGuiApplication2 constructs a new QGuiApplication object.
func NewQGuiApplication2(args []string, param3 int) *QGuiApplication {
// 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
return newQGuiApplication(C.QGuiApplication_new2(argc, &argv[0], (C.int)(param3)))
}
func (this *QGuiApplication) MetaObject() *QMetaObject {
return newQMetaObject(C.QGuiApplication_metaObject(this.h))
}
func (this *QGuiApplication) Metacast(param1 string) unsafe.Pointer {
param1_Cstring := C.CString(param1)
defer C.free(unsafe.Pointer(param1_Cstring))
return (unsafe.Pointer)(C.QGuiApplication_metacast(this.h, param1_Cstring))
}
func QGuiApplication_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms C.struct_miqt_string = C.QGuiApplication_tr(s_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QGuiApplication_SetApplicationDisplayName(name string) {
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))
C.QGuiApplication_setApplicationDisplayName(name_ms)
}
func QGuiApplication_ApplicationDisplayName() string {
var _ms C.struct_miqt_string = C.QGuiApplication_applicationDisplayName()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QGuiApplication_SetDesktopFileName(name string) {
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))
C.QGuiApplication_setDesktopFileName(name_ms)
}
func QGuiApplication_DesktopFileName() string {
var _ms C.struct_miqt_string = C.QGuiApplication_desktopFileName()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QGuiApplication_AllWindows() []*QWindow {
var _ma C.struct_miqt_array = C.QGuiApplication_allWindows()
_ret := make([]*QWindow, int(_ma.len))
_outCast := (*[0xffff]*C.QWindow)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_ret[i] = newQWindow(_outCast[i])
}
return _ret
}
func QGuiApplication_TopLevelWindows() []*QWindow {
var _ma C.struct_miqt_array = C.QGuiApplication_topLevelWindows()
_ret := make([]*QWindow, int(_ma.len))
_outCast := (*[0xffff]*C.QWindow)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_ret[i] = newQWindow(_outCast[i])
}
return _ret
}
func QGuiApplication_TopLevelAt(pos *QPoint) *QWindow {
return newQWindow(C.QGuiApplication_topLevelAt(pos.cPointer()))
}
func QGuiApplication_SetWindowIcon(icon *QIcon) {
C.QGuiApplication_setWindowIcon(icon.cPointer())
}
func QGuiApplication_WindowIcon() *QIcon {
_goptr := newQIcon(C.QGuiApplication_windowIcon())
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func QGuiApplication_PlatformName() string {
var _ms C.struct_miqt_string = C.QGuiApplication_platformName()
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QGuiApplication_ModalWindow() *QWindow {
return newQWindow(C.QGuiApplication_modalWindow())
}
func QGuiApplication_FocusWindow() *QWindow {
return newQWindow(C.QGuiApplication_focusWindow())
}
func QGuiApplication_FocusObject() *QObject {
return newQObject(C.QGuiApplication_focusObject())
}
func QGuiApplication_PrimaryScreen() *QScreen {
return newQScreen(C.QGuiApplication_primaryScreen())
}
func QGuiApplication_Screens() []*QScreen {
var _ma C.struct_miqt_array = C.QGuiApplication_screens()
_ret := make([]*QScreen, int(_ma.len))
_outCast := (*[0xffff]*C.QScreen)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
_ret[i] = newQScreen(_outCast[i])
}
return _ret
}
func QGuiApplication_ScreenAt(point *QPoint) *QScreen {
return newQScreen(C.QGuiApplication_screenAt(point.cPointer()))
}
func (this *QGuiApplication) DevicePixelRatio() float64 {
return (float64)(C.QGuiApplication_devicePixelRatio(this.h))
}
func QGuiApplication_OverrideCursor() *QCursor {
return newQCursor(C.QGuiApplication_overrideCursor())
}
func QGuiApplication_SetOverrideCursor(overrideCursor *QCursor) {
C.QGuiApplication_setOverrideCursor(overrideCursor.cPointer())
}
func QGuiApplication_ChangeOverrideCursor(param1 *QCursor) {
C.QGuiApplication_changeOverrideCursor(param1.cPointer())
}
func QGuiApplication_RestoreOverrideCursor() {
C.QGuiApplication_restoreOverrideCursor()
}
func QGuiApplication_Font() *QFont {
_goptr := newQFont(C.QGuiApplication_font())
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func QGuiApplication_SetFont(font *QFont) {
C.QGuiApplication_setFont(font.cPointer())
}
func QGuiApplication_Clipboard() *QClipboard {
return newQClipboard(C.QGuiApplication_clipboard())
}
func QGuiApplication_Palette() *QPalette {
_goptr := newQPalette(C.QGuiApplication_palette())
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func QGuiApplication_SetPalette(pal *QPalette) {
C.QGuiApplication_setPalette(pal.cPointer())
}
func QGuiApplication_KeyboardModifiers() KeyboardModifier {
return (KeyboardModifier)(C.QGuiApplication_keyboardModifiers())
}
func QGuiApplication_QueryKeyboardModifiers() KeyboardModifier {
return (KeyboardModifier)(C.QGuiApplication_queryKeyboardModifiers())
}
func QGuiApplication_MouseButtons() MouseButton {
return (MouseButton)(C.QGuiApplication_mouseButtons())
}
func QGuiApplication_SetLayoutDirection(direction LayoutDirection) {
C.QGuiApplication_setLayoutDirection((C.int)(direction))
}
func QGuiApplication_LayoutDirection() LayoutDirection {
return (LayoutDirection)(C.QGuiApplication_layoutDirection())
}
func QGuiApplication_IsRightToLeft() bool {
return (bool)(C.QGuiApplication_isRightToLeft())
}
func QGuiApplication_IsLeftToRight() bool {
return (bool)(C.QGuiApplication_isLeftToRight())
}
func QGuiApplication_StyleHints() *QStyleHints {
return newQStyleHints(C.QGuiApplication_styleHints())
}
func QGuiApplication_SetDesktopSettingsAware(on bool) {
C.QGuiApplication_setDesktopSettingsAware((C.bool)(on))
}
func QGuiApplication_DesktopSettingsAware() bool {
return (bool)(C.QGuiApplication_desktopSettingsAware())
}
func QGuiApplication_InputMethod() *QInputMethod {
return newQInputMethod(C.QGuiApplication_inputMethod())
}
func QGuiApplication_SetQuitOnLastWindowClosed(quit bool) {
C.QGuiApplication_setQuitOnLastWindowClosed((C.bool)(quit))
}
func QGuiApplication_QuitOnLastWindowClosed() bool {
return (bool)(C.QGuiApplication_quitOnLastWindowClosed())
}
func QGuiApplication_ApplicationState() ApplicationState {
return (ApplicationState)(C.QGuiApplication_applicationState())
}
func QGuiApplication_SetHighDpiScaleFactorRoundingPolicy(policy HighDpiScaleFactorRoundingPolicy) {
C.QGuiApplication_setHighDpiScaleFactorRoundingPolicy((C.int)(policy))
}
func QGuiApplication_HighDpiScaleFactorRoundingPolicy() HighDpiScaleFactorRoundingPolicy {
return (HighDpiScaleFactorRoundingPolicy)(C.QGuiApplication_highDpiScaleFactorRoundingPolicy())
}
func QGuiApplication_Exec() int {
return (int)(C.QGuiApplication_exec())
}
func (this *QGuiApplication) Notify(param1 *QObject, param2 *QEvent) bool {
return (bool)(C.QGuiApplication_notify(this.h, param1.cPointer(), param2.cPointer()))
}
func (this *QGuiApplication) IsSessionRestored() bool {
return (bool)(C.QGuiApplication_isSessionRestored(this.h))
}
func (this *QGuiApplication) SessionId() string {
var _ms C.struct_miqt_string = C.QGuiApplication_sessionId(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QGuiApplication) SessionKey() string {
var _ms C.struct_miqt_string = C.QGuiApplication_sessionKey(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QGuiApplication) IsSavingSession() bool {
return (bool)(C.QGuiApplication_isSavingSession(this.h))
}
func QGuiApplication_Sync() {
C.QGuiApplication_sync()
}
func (this *QGuiApplication) FontDatabaseChanged() {
C.QGuiApplication_fontDatabaseChanged(this.h)
}
func (this *QGuiApplication) OnFontDatabaseChanged(slot func()) {
C.QGuiApplication_connect_fontDatabaseChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_fontDatabaseChanged
func miqt_exec_callback_QGuiApplication_fontDatabaseChanged(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 *QGuiApplication) ScreenAdded(screen *QScreen) {
C.QGuiApplication_screenAdded(this.h, screen.cPointer())
}
func (this *QGuiApplication) OnScreenAdded(slot func(screen *QScreen)) {
C.QGuiApplication_connect_screenAdded(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_screenAdded
func miqt_exec_callback_QGuiApplication_screenAdded(cb C.intptr_t, screen *C.QScreen) {
gofunc, ok := cgo.Handle(cb).Value().(func(screen *QScreen))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQScreen(screen)
gofunc(slotval1)
}
func (this *QGuiApplication) ScreenRemoved(screen *QScreen) {
C.QGuiApplication_screenRemoved(this.h, screen.cPointer())
}
func (this *QGuiApplication) OnScreenRemoved(slot func(screen *QScreen)) {
C.QGuiApplication_connect_screenRemoved(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_screenRemoved
func miqt_exec_callback_QGuiApplication_screenRemoved(cb C.intptr_t, screen *C.QScreen) {
gofunc, ok := cgo.Handle(cb).Value().(func(screen *QScreen))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQScreen(screen)
gofunc(slotval1)
}
func (this *QGuiApplication) PrimaryScreenChanged(screen *QScreen) {
C.QGuiApplication_primaryScreenChanged(this.h, screen.cPointer())
}
func (this *QGuiApplication) OnPrimaryScreenChanged(slot func(screen *QScreen)) {
C.QGuiApplication_connect_primaryScreenChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_primaryScreenChanged
func miqt_exec_callback_QGuiApplication_primaryScreenChanged(cb C.intptr_t, screen *C.QScreen) {
gofunc, ok := cgo.Handle(cb).Value().(func(screen *QScreen))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQScreen(screen)
gofunc(slotval1)
}
func (this *QGuiApplication) LastWindowClosed() {
C.QGuiApplication_lastWindowClosed(this.h)
}
func (this *QGuiApplication) OnLastWindowClosed(slot func()) {
C.QGuiApplication_connect_lastWindowClosed(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_lastWindowClosed
func miqt_exec_callback_QGuiApplication_lastWindowClosed(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 *QGuiApplication) FocusObjectChanged(focusObject *QObject) {
C.QGuiApplication_focusObjectChanged(this.h, focusObject.cPointer())
}
func (this *QGuiApplication) OnFocusObjectChanged(slot func(focusObject *QObject)) {
C.QGuiApplication_connect_focusObjectChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_focusObjectChanged
func miqt_exec_callback_QGuiApplication_focusObjectChanged(cb C.intptr_t, focusObject *C.QObject) {
gofunc, ok := cgo.Handle(cb).Value().(func(focusObject *QObject))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQObject(focusObject)
gofunc(slotval1)
}
func (this *QGuiApplication) FocusWindowChanged(focusWindow *QWindow) {
C.QGuiApplication_focusWindowChanged(this.h, focusWindow.cPointer())
}
func (this *QGuiApplication) OnFocusWindowChanged(slot func(focusWindow *QWindow)) {
C.QGuiApplication_connect_focusWindowChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_focusWindowChanged
func miqt_exec_callback_QGuiApplication_focusWindowChanged(cb C.intptr_t, focusWindow *C.QWindow) {
gofunc, ok := cgo.Handle(cb).Value().(func(focusWindow *QWindow))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQWindow(focusWindow)
gofunc(slotval1)
}
func (this *QGuiApplication) ApplicationStateChanged(state ApplicationState) {
C.QGuiApplication_applicationStateChanged(this.h, (C.int)(state))
}
func (this *QGuiApplication) OnApplicationStateChanged(slot func(state ApplicationState)) {
C.QGuiApplication_connect_applicationStateChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_applicationStateChanged
func miqt_exec_callback_QGuiApplication_applicationStateChanged(cb C.intptr_t, state C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(state ApplicationState))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (ApplicationState)(state)
gofunc(slotval1)
}
func (this *QGuiApplication) LayoutDirectionChanged(direction LayoutDirection) {
C.QGuiApplication_layoutDirectionChanged(this.h, (C.int)(direction))
}
func (this *QGuiApplication) OnLayoutDirectionChanged(slot func(direction LayoutDirection)) {
C.QGuiApplication_connect_layoutDirectionChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_layoutDirectionChanged
func miqt_exec_callback_QGuiApplication_layoutDirectionChanged(cb C.intptr_t, direction C.int) {
gofunc, ok := cgo.Handle(cb).Value().(func(direction LayoutDirection))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := (LayoutDirection)(direction)
gofunc(slotval1)
}
func (this *QGuiApplication) CommitDataRequest(sessionManager *QSessionManager) {
C.QGuiApplication_commitDataRequest(this.h, sessionManager.cPointer())
}
func (this *QGuiApplication) OnCommitDataRequest(slot func(sessionManager *QSessionManager)) {
C.QGuiApplication_connect_commitDataRequest(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_commitDataRequest
func miqt_exec_callback_QGuiApplication_commitDataRequest(cb C.intptr_t, sessionManager *C.QSessionManager) {
gofunc, ok := cgo.Handle(cb).Value().(func(sessionManager *QSessionManager))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQSessionManager(sessionManager)
gofunc(slotval1)
}
func (this *QGuiApplication) SaveStateRequest(sessionManager *QSessionManager) {
C.QGuiApplication_saveStateRequest(this.h, sessionManager.cPointer())
}
func (this *QGuiApplication) OnSaveStateRequest(slot func(sessionManager *QSessionManager)) {
C.QGuiApplication_connect_saveStateRequest(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_saveStateRequest
func miqt_exec_callback_QGuiApplication_saveStateRequest(cb C.intptr_t, sessionManager *C.QSessionManager) {
gofunc, ok := cgo.Handle(cb).Value().(func(sessionManager *QSessionManager))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQSessionManager(sessionManager)
gofunc(slotval1)
}
func (this *QGuiApplication) ApplicationDisplayNameChanged() {
C.QGuiApplication_applicationDisplayNameChanged(this.h)
}
func (this *QGuiApplication) OnApplicationDisplayNameChanged(slot func()) {
C.QGuiApplication_connect_applicationDisplayNameChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_applicationDisplayNameChanged
func miqt_exec_callback_QGuiApplication_applicationDisplayNameChanged(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 *QGuiApplication) PaletteChanged(pal *QPalette) {
C.QGuiApplication_paletteChanged(this.h, pal.cPointer())
}
func (this *QGuiApplication) OnPaletteChanged(slot func(pal *QPalette)) {
C.QGuiApplication_connect_paletteChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_paletteChanged
func miqt_exec_callback_QGuiApplication_paletteChanged(cb C.intptr_t, pal *C.QPalette) {
gofunc, ok := cgo.Handle(cb).Value().(func(pal *QPalette))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQPalette(pal)
gofunc(slotval1)
}
func (this *QGuiApplication) FontChanged(font *QFont) {
C.QGuiApplication_fontChanged(this.h, font.cPointer())
}
func (this *QGuiApplication) OnFontChanged(slot func(font *QFont)) {
C.QGuiApplication_connect_fontChanged(this.h, C.intptr_t(cgo.NewHandle(slot)))
}
//export miqt_exec_callback_QGuiApplication_fontChanged
func miqt_exec_callback_QGuiApplication_fontChanged(cb C.intptr_t, font *C.QFont) {
gofunc, ok := cgo.Handle(cb).Value().(func(font *QFont))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
slotval1 := newQFont(font)
gofunc(slotval1)
}
func QGuiApplication_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.QGuiApplication_tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QGuiApplication_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.QGuiApplication_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 (this *QGuiApplication) callVirtualBase_Notify(param1 *QObject, param2 *QEvent) bool {
return (bool)(C.QGuiApplication_virtualbase_notify(unsafe.Pointer(this.h), param1.cPointer(), param2.cPointer()))
}
func (this *QGuiApplication) Onnotify(slot func(super func(param1 *QObject, param2 *QEvent) bool, param1 *QObject, param2 *QEvent) bool) {
ok := C.QGuiApplication_override_virtual_notify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_notify
func miqt_exec_callback_QGuiApplication_notify(self *C.QGuiApplication, 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 := newQObject(param1)
slotval2 := newQEvent(param2)
virtualReturn := gofunc((&QGuiApplication{h: self}).callVirtualBase_Notify, slotval1, slotval2)
return (C.bool)(virtualReturn)
}
func (this *QGuiApplication) callVirtualBase_Event(param1 *QEvent) bool {
return (bool)(C.QGuiApplication_virtualbase_event(unsafe.Pointer(this.h), param1.cPointer()))
}
func (this *QGuiApplication) Onevent(slot func(super func(param1 *QEvent) bool, param1 *QEvent) bool) {
ok := C.QGuiApplication_override_virtual_event(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_event
func miqt_exec_callback_QGuiApplication_event(self *C.QGuiApplication, 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 := newQEvent(param1)
virtualReturn := gofunc((&QGuiApplication{h: self}).callVirtualBase_Event, slotval1)
return (C.bool)(virtualReturn)
}
func (this *QGuiApplication) callVirtualBase_EventFilter(watched *QObject, event *QEvent) bool {
return (bool)(C.QGuiApplication_virtualbase_eventFilter(unsafe.Pointer(this.h), watched.cPointer(), event.cPointer()))
}
func (this *QGuiApplication) OneventFilter(slot func(super func(watched *QObject, event *QEvent) bool, watched *QObject, event *QEvent) bool) {
ok := C.QGuiApplication_override_virtual_eventFilter(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_eventFilter
func miqt_exec_callback_QGuiApplication_eventFilter(self *C.QGuiApplication, 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)
virtualReturn := gofunc((&QGuiApplication{h: self}).callVirtualBase_EventFilter, slotval1, slotval2)
return (C.bool)(virtualReturn)
}
func (this *QGuiApplication) callVirtualBase_TimerEvent(event *QTimerEvent) {
C.QGuiApplication_virtualbase_timerEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QGuiApplication) OntimerEvent(slot func(super func(event *QTimerEvent), event *QTimerEvent)) {
ok := C.QGuiApplication_override_virtual_timerEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_timerEvent
func miqt_exec_callback_QGuiApplication_timerEvent(self *C.QGuiApplication, 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 := newQTimerEvent(event)
gofunc((&QGuiApplication{h: self}).callVirtualBase_TimerEvent, slotval1)
}
func (this *QGuiApplication) callVirtualBase_ChildEvent(event *QChildEvent) {
C.QGuiApplication_virtualbase_childEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QGuiApplication) OnchildEvent(slot func(super func(event *QChildEvent), event *QChildEvent)) {
ok := C.QGuiApplication_override_virtual_childEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_childEvent
func miqt_exec_callback_QGuiApplication_childEvent(self *C.QGuiApplication, 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 := newQChildEvent(event)
gofunc((&QGuiApplication{h: self}).callVirtualBase_ChildEvent, slotval1)
}
func (this *QGuiApplication) callVirtualBase_CustomEvent(event *QEvent) {
C.QGuiApplication_virtualbase_customEvent(unsafe.Pointer(this.h), event.cPointer())
}
func (this *QGuiApplication) OncustomEvent(slot func(super func(event *QEvent), event *QEvent)) {
ok := C.QGuiApplication_override_virtual_customEvent(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_customEvent
func miqt_exec_callback_QGuiApplication_customEvent(self *C.QGuiApplication, 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)
gofunc((&QGuiApplication{h: self}).callVirtualBase_CustomEvent, slotval1)
}
func (this *QGuiApplication) callVirtualBase_ConnectNotify(signal *QMetaMethod) {
C.QGuiApplication_virtualbase_connectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QGuiApplication) OnconnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
ok := C.QGuiApplication_override_virtual_connectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_connectNotify
func miqt_exec_callback_QGuiApplication_connectNotify(self *C.QGuiApplication, 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)
gofunc((&QGuiApplication{h: self}).callVirtualBase_ConnectNotify, slotval1)
}
func (this *QGuiApplication) callVirtualBase_DisconnectNotify(signal *QMetaMethod) {
C.QGuiApplication_virtualbase_disconnectNotify(unsafe.Pointer(this.h), signal.cPointer())
}
func (this *QGuiApplication) OndisconnectNotify(slot func(super func(signal *QMetaMethod), signal *QMetaMethod)) {
ok := C.QGuiApplication_override_virtual_disconnectNotify(unsafe.Pointer(this.h), C.intptr_t(cgo.NewHandle(slot)))
if !ok {
panic("miqt: can only override virtual methods for directly constructed types")
}
}
//export miqt_exec_callback_QGuiApplication_disconnectNotify
func miqt_exec_callback_QGuiApplication_disconnectNotify(self *C.QGuiApplication, 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)
gofunc((&QGuiApplication{h: self}).callVirtualBase_DisconnectNotify, slotval1)
}
// Delete this object from C++ memory.
func (this *QGuiApplication) Delete() {
C.QGuiApplication_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 *QGuiApplication) GoGC() {
runtime.SetFinalizer(this, func(this *QGuiApplication) {
this.Delete()
runtime.KeepAlive(this.h)
})
}