package qt /* #include "gen_qapplication.h" #include */ import "C" import ( "runtime" "runtime/cgo" "unsafe" ) type QApplication__ColorSpec int const ( QApplication__ColorSpec__NormalColor QApplication__ColorSpec = 0 QApplication__ColorSpec__CustomColor QApplication__ColorSpec = 1 QApplication__ColorSpec__ManyColor QApplication__ColorSpec = 2 ) type QApplication struct { h *C.QApplication *QGuiApplication } func (this *QApplication) cPointer() *C.QApplication { if this == nil { return nil } return this.h } func newQApplication(h *C.QApplication) *QApplication { if h == nil { return nil } return &QApplication{h: h, QGuiApplication: newQGuiApplication_U(unsafe.Pointer(h))} } func newQApplication_U(h unsafe.Pointer) *QApplication { return newQApplication((*C.QApplication)(h)) } // NewQApplication constructs a new QApplication object. func NewQApplication(args []string) *QApplication { // 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]) } ret := C.QApplication_new(argc, &argv[0]) return newQApplication(ret) } // NewQApplication2 constructs a new QApplication object. func NewQApplication2(args []string, param3 int) *QApplication { // 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]) } ret := C.QApplication_new2(argc, &argv[0], (C.int)(param3)) return newQApplication(ret) } func (this *QApplication) MetaObject() *QMetaObject { _ret := C.QApplication_MetaObject(this.h) return newQMetaObject_U(unsafe.Pointer(_ret)) } func QApplication_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QApplication_Tr(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_TrUtf8(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms *C.struct_miqt_string = C.QApplication_TrUtf8(s_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_Style() *QStyle { _ret := C.QApplication_Style() return newQStyle_U(unsafe.Pointer(_ret)) } func QApplication_SetStyle(style *QStyle) { C.QApplication_SetStyle(style.cPointer()) } func QApplication_SetStyleWithStyle(style string) *QStyle { style_ms := miqt_strdupg(style) defer C.free(style_ms) _ret := C.QApplication_SetStyleWithStyle((*C.struct_miqt_string)(style_ms)) return newQStyle_U(unsafe.Pointer(_ret)) } func QApplication_ColorSpec() int { _ret := C.QApplication_ColorSpec() return (int)(_ret) } func QApplication_SetColorSpec(colorSpec int) { C.QApplication_SetColorSpec((C.int)(colorSpec)) } func QApplication_Palette(param1 *QWidget) *QPalette { _ret := C.QApplication_Palette(param1.cPointer()) _goptr := newQPalette(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_PaletteWithClassName(className string) *QPalette { className_Cstring := C.CString(className) defer C.free(unsafe.Pointer(className_Cstring)) _ret := C.QApplication_PaletteWithClassName(className_Cstring) _goptr := newQPalette(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_SetPalette(param1 *QPalette) { C.QApplication_SetPalette(param1.cPointer()) } func QApplication_Font() *QFont { _ret := C.QApplication_Font() _goptr := newQFont(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_FontWithQWidget(param1 *QWidget) *QFont { _ret := C.QApplication_FontWithQWidget(param1.cPointer()) _goptr := newQFont(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_FontWithClassName(className string) *QFont { className_Cstring := C.CString(className) defer C.free(unsafe.Pointer(className_Cstring)) _ret := C.QApplication_FontWithClassName(className_Cstring) _goptr := newQFont(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_SetFont(param1 *QFont) { C.QApplication_SetFont(param1.cPointer()) } func QApplication_FontMetrics() *QFontMetrics { _ret := C.QApplication_FontMetrics() _goptr := newQFontMetrics(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_SetWindowIcon(icon *QIcon) { C.QApplication_SetWindowIcon(icon.cPointer()) } func QApplication_WindowIcon() *QIcon { _ret := C.QApplication_WindowIcon() _goptr := newQIcon(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_AllWidgets() []*QWidget { var _ma *C.struct_miqt_array = C.QApplication_AllWidgets() _ret := make([]*QWidget, int(_ma.len)) _outCast := (*[0xffff]*C.QWidget)(unsafe.Pointer(_ma.data)) // mrs jackson for i := 0; i < int(_ma.len); i++ { _ret[i] = newQWidget(_outCast[i]) } C.free(unsafe.Pointer(_ma)) return _ret } func QApplication_TopLevelWidgets() []*QWidget { var _ma *C.struct_miqt_array = C.QApplication_TopLevelWidgets() _ret := make([]*QWidget, int(_ma.len)) _outCast := (*[0xffff]*C.QWidget)(unsafe.Pointer(_ma.data)) // mrs jackson for i := 0; i < int(_ma.len); i++ { _ret[i] = newQWidget(_outCast[i]) } C.free(unsafe.Pointer(_ma)) return _ret } func QApplication_Desktop() *QDesktopWidget { _ret := C.QApplication_Desktop() return newQDesktopWidget_U(unsafe.Pointer(_ret)) } func QApplication_ActivePopupWidget() *QWidget { _ret := C.QApplication_ActivePopupWidget() return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_ActiveModalWidget() *QWidget { _ret := C.QApplication_ActiveModalWidget() return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_FocusWidget() *QWidget { _ret := C.QApplication_FocusWidget() return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_ActiveWindow() *QWidget { _ret := C.QApplication_ActiveWindow() return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_SetActiveWindow(act *QWidget) { C.QApplication_SetActiveWindow(act.cPointer()) } func QApplication_WidgetAt(p *QPoint) *QWidget { _ret := C.QApplication_WidgetAt(p.cPointer()) return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_WidgetAt2(x int, y int) *QWidget { _ret := C.QApplication_WidgetAt2((C.int)(x), (C.int)(y)) return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_TopLevelAt(p *QPoint) *QWidget { _ret := C.QApplication_TopLevelAt(p.cPointer()) return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_TopLevelAt2(x int, y int) *QWidget { _ret := C.QApplication_TopLevelAt2((C.int)(x), (C.int)(y)) return newQWidget_U(unsafe.Pointer(_ret)) } func QApplication_Beep() { C.QApplication_Beep() } func QApplication_Alert(widget *QWidget) { C.QApplication_Alert(widget.cPointer()) } func QApplication_SetCursorFlashTime(cursorFlashTime int) { C.QApplication_SetCursorFlashTime((C.int)(cursorFlashTime)) } func QApplication_CursorFlashTime() int { _ret := C.QApplication_CursorFlashTime() return (int)(_ret) } func QApplication_SetDoubleClickInterval(doubleClickInterval int) { C.QApplication_SetDoubleClickInterval((C.int)(doubleClickInterval)) } func QApplication_DoubleClickInterval() int { _ret := C.QApplication_DoubleClickInterval() return (int)(_ret) } func QApplication_SetKeyboardInputInterval(keyboardInputInterval int) { C.QApplication_SetKeyboardInputInterval((C.int)(keyboardInputInterval)) } func QApplication_KeyboardInputInterval() int { _ret := C.QApplication_KeyboardInputInterval() return (int)(_ret) } func QApplication_SetWheelScrollLines(wheelScrollLines int) { C.QApplication_SetWheelScrollLines((C.int)(wheelScrollLines)) } func QApplication_WheelScrollLines() int { _ret := C.QApplication_WheelScrollLines() return (int)(_ret) } func QApplication_SetGlobalStrut(globalStrut *QSize) { C.QApplication_SetGlobalStrut(globalStrut.cPointer()) } func QApplication_GlobalStrut() *QSize { _ret := C.QApplication_GlobalStrut() _goptr := newQSize(_ret) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func QApplication_SetStartDragTime(ms int) { C.QApplication_SetStartDragTime((C.int)(ms)) } func QApplication_StartDragTime() int { _ret := C.QApplication_StartDragTime() return (int)(_ret) } func QApplication_SetStartDragDistance(l int) { C.QApplication_SetStartDragDistance((C.int)(l)) } func QApplication_StartDragDistance() int { _ret := C.QApplication_StartDragDistance() return (int)(_ret) } func QApplication_IsEffectEnabled(param1 UIEffect) bool { _ret := C.QApplication_IsEffectEnabled((C.uintptr_t)(param1)) return (bool)(_ret) } func QApplication_SetEffectEnabled(param1 UIEffect) { C.QApplication_SetEffectEnabled((C.uintptr_t)(param1)) } func QApplication_Exec() int { _ret := C.QApplication_Exec() return (int)(_ret) } func (this *QApplication) Notify(param1 *QObject, param2 *QEvent) bool { _ret := C.QApplication_Notify(this.h, param1.cPointer(), param2.cPointer()) return (bool)(_ret) } func (this *QApplication) FocusChanged(old *QWidget, now *QWidget) { C.QApplication_FocusChanged(this.h, old.cPointer(), now.cPointer()) } func (this *QApplication) OnFocusChanged(slot func(old *QWidget, now *QWidget)) { C.QApplication_connect_FocusChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slot)))) } //export miqt_exec_callback_QApplication_FocusChanged func miqt_exec_callback_QApplication_FocusChanged(cb *C.void, old *C.QWidget, now *C.QWidget) { gofunc, ok := (cgo.Handle(uintptr(unsafe.Pointer(cb))).Value()).(func(old *QWidget, now *QWidget)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters old_ret := old slotval1 := newQWidget_U(unsafe.Pointer(old_ret)) now_ret := now slotval2 := newQWidget_U(unsafe.Pointer(now_ret)) gofunc(slotval1, slotval2) } func (this *QApplication) StyleSheet() string { var _ms *C.struct_miqt_string = C.QApplication_StyleSheet(this.h) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func (this *QApplication) SetStyleSheet(sheet string) { sheet_ms := miqt_strdupg(sheet) defer C.free(sheet_ms) C.QApplication_SetStyleSheet(this.h, (*C.struct_miqt_string)(sheet_ms)) } func (this *QApplication) SetAutoSipEnabled(enabled bool) { C.QApplication_SetAutoSipEnabled(this.h, (C.bool)(enabled)) } func (this *QApplication) AutoSipEnabled() bool { _ret := C.QApplication_AutoSipEnabled(this.h) return (bool)(_ret) } func QApplication_CloseAllWindows() { C.QApplication_CloseAllWindows() } func QApplication_AboutQt() { C.QApplication_AboutQt() } func QApplication_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.QApplication_Tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_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.QApplication_Tr3(s_Cstring, c_Cstring, (C.int)(n)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_TrUtf82(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.QApplication_TrUtf82(s_Cstring, c_Cstring) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_TrUtf83(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.QApplication_TrUtf83(s_Cstring, c_Cstring, (C.int)(n)) _ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms)) return _ret } func QApplication_SetPalette2(param1 *QPalette, className string) { className_Cstring := C.CString(className) defer C.free(unsafe.Pointer(className_Cstring)) C.QApplication_SetPalette2(param1.cPointer(), className_Cstring) } func QApplication_SetFont2(param1 *QFont, className string) { className_Cstring := C.CString(className) defer C.free(unsafe.Pointer(className_Cstring)) C.QApplication_SetFont2(param1.cPointer(), className_Cstring) } func QApplication_Alert2(widget *QWidget, duration int) { C.QApplication_Alert2(widget.cPointer(), (C.int)(duration)) } func QApplication_SetEffectEnabled2(param1 UIEffect, enable bool) { C.QApplication_SetEffectEnabled2((C.uintptr_t)(param1), (C.bool)(enable)) } // Delete this object from C++ memory. func (this *QApplication) Delete() { C.QApplication_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 *QApplication) GoGC() { runtime.SetFinalizer(this, func(this *QApplication) { this.Delete() runtime.KeepAlive(this.h) }) }