package charts6 /* #include "gen_qchartview.h" #include */ import "C" import ( "github.com/mappu/miqt/qt6" "runtime" "runtime/cgo" "unsafe" ) type QChartView__RubberBand int const ( QChartView__NoRubberBand QChartView__RubberBand = 0 QChartView__VerticalRubberBand QChartView__RubberBand = 1 QChartView__HorizontalRubberBand QChartView__RubberBand = 2 QChartView__RectangleRubberBand QChartView__RubberBand = 3 QChartView__ClickThroughRubberBand QChartView__RubberBand = 128 ) type QChartView struct { h *C.QChartView *qt6.QGraphicsView } func (this *QChartView) cPointer() *C.QChartView { if this == nil { return nil } return this.h } func (this *QChartView) UnsafePointer() unsafe.Pointer { if this == nil { return nil } return unsafe.Pointer(this.h) } // newQChartView constructs the type using only CGO pointers. func newQChartView(h *C.QChartView) *QChartView { if h == nil { return nil } var outptr_QGraphicsView *C.QGraphicsView = nil C.QChartView_virtbase(h, &outptr_QGraphicsView) return &QChartView{h: h, QGraphicsView: qt6.UnsafeNewQGraphicsView(unsafe.Pointer(outptr_QGraphicsView))} } // UnsafeNewQChartView constructs the type using only unsafe pointers. func UnsafeNewQChartView(h unsafe.Pointer) *QChartView { return newQChartView((*C.QChartView)(h)) } // NewQChartView constructs a new QChartView object. func NewQChartView(parent *qt6.QWidget) *QChartView { return newQChartView(C.QChartView_new((*C.QWidget)(parent.UnsafePointer()))) } // NewQChartView2 constructs a new QChartView object. func NewQChartView2() *QChartView { return newQChartView(C.QChartView_new2()) } // NewQChartView3 constructs a new QChartView object. func NewQChartView3(chart *QChart) *QChartView { return newQChartView(C.QChartView_new3(chart.cPointer())) } // NewQChartView4 constructs a new QChartView object. func NewQChartView4(chart *QChart, parent *qt6.QWidget) *QChartView { return newQChartView(C.QChartView_new4(chart.cPointer(), (*C.QWidget)(parent.UnsafePointer()))) } func (this *QChartView) MetaObject() *qt6.QMetaObject { return qt6.UnsafeNewQMetaObject(unsafe.Pointer(C.QChartView_metaObject(this.h))) } func (this *QChartView) Metacast(param1 string) unsafe.Pointer { param1_Cstring := C.CString(param1) defer C.free(unsafe.Pointer(param1_Cstring)) return (unsafe.Pointer)(C.QChartView_metacast(this.h, param1_Cstring)) } func QChartView_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms C.struct_miqt_string = C.QChartView_tr(s_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QChartView) SetRubberBand(rubberBands *QChartView__RubberBand) { C.QChartView_setRubberBand(this.h, (*C.int)(unsafe.Pointer(rubberBands))) } func (this *QChartView) RubberBand() QChartView__RubberBand { return (QChartView__RubberBand)(C.QChartView_rubberBand(this.h)) } func (this *QChartView) Chart() *QChart { return newQChart(C.QChartView_chart(this.h)) } func (this *QChartView) SetChart(chart *QChart) { C.QChartView_setChart(this.h, chart.cPointer()) } func QChartView_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.QChartView_tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QChartView_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.QChartView_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 } // SetViewportMargins can only be called from a QChartView that was directly constructed. func (this *QChartView) SetViewportMargins(left int, top int, right int, bottom int) { var _dynamic_cast_ok C.bool = false C.QChartView_protectedbase_setViewportMargins(&_dynamic_cast_ok, unsafe.Pointer(this.h), (C.int)(left), (C.int)(top), (C.int)(right), (C.int)(bottom)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // ViewportMargins can only be called from a QChartView that was directly constructed. func (this *QChartView) ViewportMargins() qt6.QMargins { var _dynamic_cast_ok C.bool = false _goptr := qt6.UnsafeNewQMargins(unsafe.Pointer(C.QChartView_protectedbase_viewportMargins(&_dynamic_cast_ok, unsafe.Pointer(this.h)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer _method_ret := *_goptr if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // DrawFrame can only be called from a QChartView that was directly constructed. func (this *QChartView) DrawFrame(param1 *qt6.QPainter) { var _dynamic_cast_ok C.bool = false C.QChartView_protectedbase_drawFrame(&_dynamic_cast_ok, unsafe.Pointer(this.h), (*C.QPainter)(param1.UnsafePointer())) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // UpdateMicroFocus can only be called from a QChartView that was directly constructed. func (this *QChartView) UpdateMicroFocus() { var _dynamic_cast_ok C.bool = false C.QChartView_protectedbase_updateMicroFocus(&_dynamic_cast_ok, unsafe.Pointer(this.h)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // Create can only be called from a QChartView that was directly constructed. func (this *QChartView) Create() { var _dynamic_cast_ok C.bool = false C.QChartView_protectedbase_create(&_dynamic_cast_ok, unsafe.Pointer(this.h)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // Destroy can only be called from a QChartView that was directly constructed. func (this *QChartView) Destroy() { var _dynamic_cast_ok C.bool = false C.QChartView_protectedbase_destroy(&_dynamic_cast_ok, unsafe.Pointer(this.h)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } } // FocusNextChild can only be called from a QChartView that was directly constructed. func (this *QChartView) FocusNextChild() bool { var _dynamic_cast_ok C.bool = false _method_ret := (bool)(C.QChartView_protectedbase_focusNextChild(&_dynamic_cast_ok, unsafe.Pointer(this.h))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // FocusPreviousChild can only be called from a QChartView that was directly constructed. func (this *QChartView) FocusPreviousChild() bool { var _dynamic_cast_ok C.bool = false _method_ret := (bool)(C.QChartView_protectedbase_focusPreviousChild(&_dynamic_cast_ok, unsafe.Pointer(this.h))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // Sender can only be called from a QChartView that was directly constructed. func (this *QChartView) Sender() *qt6.QObject { var _dynamic_cast_ok C.bool = false _method_ret := qt6.UnsafeNewQObject(unsafe.Pointer(C.QChartView_protectedbase_sender(&_dynamic_cast_ok, unsafe.Pointer(this.h)))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // SenderSignalIndex can only be called from a QChartView that was directly constructed. func (this *QChartView) SenderSignalIndex() int { var _dynamic_cast_ok C.bool = false _method_ret := (int)(C.QChartView_protectedbase_senderSignalIndex(&_dynamic_cast_ok, unsafe.Pointer(this.h))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // Receivers can only be called from a QChartView that was directly constructed. func (this *QChartView) Receivers(signal string) int { signal_Cstring := C.CString(signal) defer C.free(unsafe.Pointer(signal_Cstring)) var _dynamic_cast_ok C.bool = false _method_ret := (int)(C.QChartView_protectedbase_receivers(&_dynamic_cast_ok, unsafe.Pointer(this.h), signal_Cstring)) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } // IsSignalConnected can only be called from a QChartView that was directly constructed. func (this *QChartView) IsSignalConnected(signal *qt6.QMetaMethod) bool { var _dynamic_cast_ok C.bool = false _method_ret := (bool)(C.QChartView_protectedbase_isSignalConnected(&_dynamic_cast_ok, unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer()))) if !_dynamic_cast_ok { panic("miqt: can only call protected methods for directly constructed types") } return _method_ret } func (this *QChartView) callVirtualBase_ResizeEvent(event *qt6.QResizeEvent) { C.QChartView_virtualbase_resizeEvent(unsafe.Pointer(this.h), (*C.QResizeEvent)(event.UnsafePointer())) } func (this *QChartView) OnResizeEvent(slot func(super func(event *qt6.QResizeEvent), event *qt6.QResizeEvent)) { ok := C.QChartView_override_virtual_resizeEvent(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_QChartView_resizeEvent func miqt_exec_callback_QChartView_resizeEvent(self *C.QChartView, cb C.intptr_t, event *C.QResizeEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QResizeEvent), event *qt6.QResizeEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQResizeEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_ResizeEvent, slotval1) } func (this *QChartView) callVirtualBase_MousePressEvent(event *qt6.QMouseEvent) { C.QChartView_virtualbase_mousePressEvent(unsafe.Pointer(this.h), (*C.QMouseEvent)(event.UnsafePointer())) } func (this *QChartView) OnMousePressEvent(slot func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) { ok := C.QChartView_override_virtual_mousePressEvent(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_QChartView_mousePressEvent func miqt_exec_callback_QChartView_mousePressEvent(self *C.QChartView, cb C.intptr_t, event *C.QMouseEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMouseEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_MousePressEvent, slotval1) } func (this *QChartView) callVirtualBase_MouseMoveEvent(event *qt6.QMouseEvent) { C.QChartView_virtualbase_mouseMoveEvent(unsafe.Pointer(this.h), (*C.QMouseEvent)(event.UnsafePointer())) } func (this *QChartView) OnMouseMoveEvent(slot func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) { ok := C.QChartView_override_virtual_mouseMoveEvent(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_QChartView_mouseMoveEvent func miqt_exec_callback_QChartView_mouseMoveEvent(self *C.QChartView, cb C.intptr_t, event *C.QMouseEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMouseEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_MouseMoveEvent, slotval1) } func (this *QChartView) callVirtualBase_MouseReleaseEvent(event *qt6.QMouseEvent) { C.QChartView_virtualbase_mouseReleaseEvent(unsafe.Pointer(this.h), (*C.QMouseEvent)(event.UnsafePointer())) } func (this *QChartView) OnMouseReleaseEvent(slot func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) { ok := C.QChartView_override_virtual_mouseReleaseEvent(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_QChartView_mouseReleaseEvent func miqt_exec_callback_QChartView_mouseReleaseEvent(self *C.QChartView, cb C.intptr_t, event *C.QMouseEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMouseEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_MouseReleaseEvent, slotval1) } func (this *QChartView) callVirtualBase_SizeHint() *qt6.QSize { _goptr := qt6.UnsafeNewQSize(unsafe.Pointer(C.QChartView_virtualbase_sizeHint(unsafe.Pointer(this.h)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QChartView) OnSizeHint(slot func(super func() *qt6.QSize) *qt6.QSize) { ok := C.QChartView_override_virtual_sizeHint(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_QChartView_sizeHint func miqt_exec_callback_QChartView_sizeHint(self *C.QChartView, cb C.intptr_t) *C.QSize { gofunc, ok := cgo.Handle(cb).Value().(func(super func() *qt6.QSize) *qt6.QSize) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_SizeHint) return (*C.QSize)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_InputMethodQuery(query qt6.InputMethodQuery) *qt6.QVariant { _goptr := qt6.UnsafeNewQVariant(unsafe.Pointer(C.QChartView_virtualbase_inputMethodQuery(unsafe.Pointer(this.h), (C.int)(query)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QChartView) OnInputMethodQuery(slot func(super func(query qt6.InputMethodQuery) *qt6.QVariant, query qt6.InputMethodQuery) *qt6.QVariant) { ok := C.QChartView_override_virtual_inputMethodQuery(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_QChartView_inputMethodQuery func miqt_exec_callback_QChartView_inputMethodQuery(self *C.QChartView, cb C.intptr_t, query C.int) *C.QVariant { gofunc, ok := cgo.Handle(cb).Value().(func(super func(query qt6.InputMethodQuery) *qt6.QVariant, query qt6.InputMethodQuery) *qt6.QVariant) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (qt6.InputMethodQuery)(query) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_InputMethodQuery, slotval1) return (*C.QVariant)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_SetupViewport(widget *qt6.QWidget) { C.QChartView_virtualbase_setupViewport(unsafe.Pointer(this.h), (*C.QWidget)(widget.UnsafePointer())) } func (this *QChartView) OnSetupViewport(slot func(super func(widget *qt6.QWidget), widget *qt6.QWidget)) { ok := C.QChartView_override_virtual_setupViewport(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_QChartView_setupViewport func miqt_exec_callback_QChartView_setupViewport(self *C.QChartView, cb C.intptr_t, widget *C.QWidget) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(widget *qt6.QWidget), widget *qt6.QWidget)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQWidget(unsafe.Pointer(widget)) gofunc((&QChartView{h: self}).callVirtualBase_SetupViewport, slotval1) } func (this *QChartView) callVirtualBase_Event(event *qt6.QEvent) bool { return (bool)(C.QChartView_virtualbase_event(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer()))) } func (this *QChartView) OnEvent(slot func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) { ok := C.QChartView_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_QChartView_event func miqt_exec_callback_QChartView_event(self *C.QChartView, cb C.intptr_t, event *C.QEvent) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_Event, slotval1) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_ViewportEvent(event *qt6.QEvent) bool { return (bool)(C.QChartView_virtualbase_viewportEvent(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer()))) } func (this *QChartView) OnViewportEvent(slot func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) { ok := C.QChartView_override_virtual_viewportEvent(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_QChartView_viewportEvent func miqt_exec_callback_QChartView_viewportEvent(self *C.QChartView, cb C.intptr_t, event *C.QEvent) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent) bool, event *qt6.QEvent) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_ViewportEvent, slotval1) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_ContextMenuEvent(event *qt6.QContextMenuEvent) { C.QChartView_virtualbase_contextMenuEvent(unsafe.Pointer(this.h), (*C.QContextMenuEvent)(event.UnsafePointer())) } func (this *QChartView) OnContextMenuEvent(slot func(super func(event *qt6.QContextMenuEvent), event *qt6.QContextMenuEvent)) { ok := C.QChartView_override_virtual_contextMenuEvent(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_QChartView_contextMenuEvent func miqt_exec_callback_QChartView_contextMenuEvent(self *C.QChartView, cb C.intptr_t, event *C.QContextMenuEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QContextMenuEvent), event *qt6.QContextMenuEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQContextMenuEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_ContextMenuEvent, slotval1) } func (this *QChartView) callVirtualBase_DragEnterEvent(event *qt6.QDragEnterEvent) { C.QChartView_virtualbase_dragEnterEvent(unsafe.Pointer(this.h), (*C.QDragEnterEvent)(event.UnsafePointer())) } func (this *QChartView) OnDragEnterEvent(slot func(super func(event *qt6.QDragEnterEvent), event *qt6.QDragEnterEvent)) { ok := C.QChartView_override_virtual_dragEnterEvent(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_QChartView_dragEnterEvent func miqt_exec_callback_QChartView_dragEnterEvent(self *C.QChartView, cb C.intptr_t, event *C.QDragEnterEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QDragEnterEvent), event *qt6.QDragEnterEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQDragEnterEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_DragEnterEvent, slotval1) } func (this *QChartView) callVirtualBase_DragLeaveEvent(event *qt6.QDragLeaveEvent) { C.QChartView_virtualbase_dragLeaveEvent(unsafe.Pointer(this.h), (*C.QDragLeaveEvent)(event.UnsafePointer())) } func (this *QChartView) OnDragLeaveEvent(slot func(super func(event *qt6.QDragLeaveEvent), event *qt6.QDragLeaveEvent)) { ok := C.QChartView_override_virtual_dragLeaveEvent(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_QChartView_dragLeaveEvent func miqt_exec_callback_QChartView_dragLeaveEvent(self *C.QChartView, cb C.intptr_t, event *C.QDragLeaveEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QDragLeaveEvent), event *qt6.QDragLeaveEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQDragLeaveEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_DragLeaveEvent, slotval1) } func (this *QChartView) callVirtualBase_DragMoveEvent(event *qt6.QDragMoveEvent) { C.QChartView_virtualbase_dragMoveEvent(unsafe.Pointer(this.h), (*C.QDragMoveEvent)(event.UnsafePointer())) } func (this *QChartView) OnDragMoveEvent(slot func(super func(event *qt6.QDragMoveEvent), event *qt6.QDragMoveEvent)) { ok := C.QChartView_override_virtual_dragMoveEvent(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_QChartView_dragMoveEvent func miqt_exec_callback_QChartView_dragMoveEvent(self *C.QChartView, cb C.intptr_t, event *C.QDragMoveEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QDragMoveEvent), event *qt6.QDragMoveEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQDragMoveEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_DragMoveEvent, slotval1) } func (this *QChartView) callVirtualBase_DropEvent(event *qt6.QDropEvent) { C.QChartView_virtualbase_dropEvent(unsafe.Pointer(this.h), (*C.QDropEvent)(event.UnsafePointer())) } func (this *QChartView) OnDropEvent(slot func(super func(event *qt6.QDropEvent), event *qt6.QDropEvent)) { ok := C.QChartView_override_virtual_dropEvent(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_QChartView_dropEvent func miqt_exec_callback_QChartView_dropEvent(self *C.QChartView, cb C.intptr_t, event *C.QDropEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QDropEvent), event *qt6.QDropEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQDropEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_DropEvent, slotval1) } func (this *QChartView) callVirtualBase_FocusInEvent(event *qt6.QFocusEvent) { C.QChartView_virtualbase_focusInEvent(unsafe.Pointer(this.h), (*C.QFocusEvent)(event.UnsafePointer())) } func (this *QChartView) OnFocusInEvent(slot func(super func(event *qt6.QFocusEvent), event *qt6.QFocusEvent)) { ok := C.QChartView_override_virtual_focusInEvent(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_QChartView_focusInEvent func miqt_exec_callback_QChartView_focusInEvent(self *C.QChartView, cb C.intptr_t, event *C.QFocusEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QFocusEvent), event *qt6.QFocusEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQFocusEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_FocusInEvent, slotval1) } func (this *QChartView) callVirtualBase_FocusNextPrevChild(next bool) bool { return (bool)(C.QChartView_virtualbase_focusNextPrevChild(unsafe.Pointer(this.h), (C.bool)(next))) } func (this *QChartView) OnFocusNextPrevChild(slot func(super func(next bool) bool, next bool) bool) { ok := C.QChartView_override_virtual_focusNextPrevChild(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_QChartView_focusNextPrevChild func miqt_exec_callback_QChartView_focusNextPrevChild(self *C.QChartView, cb C.intptr_t, next C.bool) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(next bool) bool, next bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (bool)(next) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_FocusNextPrevChild, slotval1) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_FocusOutEvent(event *qt6.QFocusEvent) { C.QChartView_virtualbase_focusOutEvent(unsafe.Pointer(this.h), (*C.QFocusEvent)(event.UnsafePointer())) } func (this *QChartView) OnFocusOutEvent(slot func(super func(event *qt6.QFocusEvent), event *qt6.QFocusEvent)) { ok := C.QChartView_override_virtual_focusOutEvent(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_QChartView_focusOutEvent func miqt_exec_callback_QChartView_focusOutEvent(self *C.QChartView, cb C.intptr_t, event *C.QFocusEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QFocusEvent), event *qt6.QFocusEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQFocusEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_FocusOutEvent, slotval1) } func (this *QChartView) callVirtualBase_KeyPressEvent(event *qt6.QKeyEvent) { C.QChartView_virtualbase_keyPressEvent(unsafe.Pointer(this.h), (*C.QKeyEvent)(event.UnsafePointer())) } func (this *QChartView) OnKeyPressEvent(slot func(super func(event *qt6.QKeyEvent), event *qt6.QKeyEvent)) { ok := C.QChartView_override_virtual_keyPressEvent(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_QChartView_keyPressEvent func miqt_exec_callback_QChartView_keyPressEvent(self *C.QChartView, cb C.intptr_t, event *C.QKeyEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QKeyEvent), event *qt6.QKeyEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQKeyEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_KeyPressEvent, slotval1) } func (this *QChartView) callVirtualBase_KeyReleaseEvent(event *qt6.QKeyEvent) { C.QChartView_virtualbase_keyReleaseEvent(unsafe.Pointer(this.h), (*C.QKeyEvent)(event.UnsafePointer())) } func (this *QChartView) OnKeyReleaseEvent(slot func(super func(event *qt6.QKeyEvent), event *qt6.QKeyEvent)) { ok := C.QChartView_override_virtual_keyReleaseEvent(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_QChartView_keyReleaseEvent func miqt_exec_callback_QChartView_keyReleaseEvent(self *C.QChartView, cb C.intptr_t, event *C.QKeyEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QKeyEvent), event *qt6.QKeyEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQKeyEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_KeyReleaseEvent, slotval1) } func (this *QChartView) callVirtualBase_MouseDoubleClickEvent(event *qt6.QMouseEvent) { C.QChartView_virtualbase_mouseDoubleClickEvent(unsafe.Pointer(this.h), (*C.QMouseEvent)(event.UnsafePointer())) } func (this *QChartView) OnMouseDoubleClickEvent(slot func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) { ok := C.QChartView_override_virtual_mouseDoubleClickEvent(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_QChartView_mouseDoubleClickEvent func miqt_exec_callback_QChartView_mouseDoubleClickEvent(self *C.QChartView, cb C.intptr_t, event *C.QMouseEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QMouseEvent), event *qt6.QMouseEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMouseEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_MouseDoubleClickEvent, slotval1) } func (this *QChartView) callVirtualBase_WheelEvent(event *qt6.QWheelEvent) { C.QChartView_virtualbase_wheelEvent(unsafe.Pointer(this.h), (*C.QWheelEvent)(event.UnsafePointer())) } func (this *QChartView) OnWheelEvent(slot func(super func(event *qt6.QWheelEvent), event *qt6.QWheelEvent)) { ok := C.QChartView_override_virtual_wheelEvent(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_QChartView_wheelEvent func miqt_exec_callback_QChartView_wheelEvent(self *C.QChartView, cb C.intptr_t, event *C.QWheelEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QWheelEvent), event *qt6.QWheelEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQWheelEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_WheelEvent, slotval1) } func (this *QChartView) callVirtualBase_PaintEvent(event *qt6.QPaintEvent) { C.QChartView_virtualbase_paintEvent(unsafe.Pointer(this.h), (*C.QPaintEvent)(event.UnsafePointer())) } func (this *QChartView) OnPaintEvent(slot func(super func(event *qt6.QPaintEvent), event *qt6.QPaintEvent)) { ok := C.QChartView_override_virtual_paintEvent(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_QChartView_paintEvent func miqt_exec_callback_QChartView_paintEvent(self *C.QChartView, cb C.intptr_t, event *C.QPaintEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QPaintEvent), event *qt6.QPaintEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQPaintEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_PaintEvent, slotval1) } func (this *QChartView) callVirtualBase_ScrollContentsBy(dx int, dy int) { C.QChartView_virtualbase_scrollContentsBy(unsafe.Pointer(this.h), (C.int)(dx), (C.int)(dy)) } func (this *QChartView) OnScrollContentsBy(slot func(super func(dx int, dy int), dx int, dy int)) { ok := C.QChartView_override_virtual_scrollContentsBy(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_QChartView_scrollContentsBy func miqt_exec_callback_QChartView_scrollContentsBy(self *C.QChartView, cb C.intptr_t, dx C.int, dy C.int) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(dx int, dy int), dx int, dy int)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(dx) slotval2 := (int)(dy) gofunc((&QChartView{h: self}).callVirtualBase_ScrollContentsBy, slotval1, slotval2) } func (this *QChartView) callVirtualBase_ShowEvent(event *qt6.QShowEvent) { C.QChartView_virtualbase_showEvent(unsafe.Pointer(this.h), (*C.QShowEvent)(event.UnsafePointer())) } func (this *QChartView) OnShowEvent(slot func(super func(event *qt6.QShowEvent), event *qt6.QShowEvent)) { ok := C.QChartView_override_virtual_showEvent(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_QChartView_showEvent func miqt_exec_callback_QChartView_showEvent(self *C.QChartView, cb C.intptr_t, event *C.QShowEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QShowEvent), event *qt6.QShowEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQShowEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_ShowEvent, slotval1) } func (this *QChartView) callVirtualBase_InputMethodEvent(event *qt6.QInputMethodEvent) { C.QChartView_virtualbase_inputMethodEvent(unsafe.Pointer(this.h), (*C.QInputMethodEvent)(event.UnsafePointer())) } func (this *QChartView) OnInputMethodEvent(slot func(super func(event *qt6.QInputMethodEvent), event *qt6.QInputMethodEvent)) { ok := C.QChartView_override_virtual_inputMethodEvent(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_QChartView_inputMethodEvent func miqt_exec_callback_QChartView_inputMethodEvent(self *C.QChartView, cb C.intptr_t, event *C.QInputMethodEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QInputMethodEvent), event *qt6.QInputMethodEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQInputMethodEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_InputMethodEvent, slotval1) } func (this *QChartView) callVirtualBase_DrawBackground(painter *qt6.QPainter, rect *qt6.QRectF) { C.QChartView_virtualbase_drawBackground(unsafe.Pointer(this.h), (*C.QPainter)(painter.UnsafePointer()), (*C.QRectF)(rect.UnsafePointer())) } func (this *QChartView) OnDrawBackground(slot func(super func(painter *qt6.QPainter, rect *qt6.QRectF), painter *qt6.QPainter, rect *qt6.QRectF)) { ok := C.QChartView_override_virtual_drawBackground(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_QChartView_drawBackground func miqt_exec_callback_QChartView_drawBackground(self *C.QChartView, cb C.intptr_t, painter *C.QPainter, rect *C.QRectF) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(painter *qt6.QPainter, rect *qt6.QRectF), painter *qt6.QPainter, rect *qt6.QRectF)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQPainter(unsafe.Pointer(painter)) slotval2 := qt6.UnsafeNewQRectF(unsafe.Pointer(rect)) gofunc((&QChartView{h: self}).callVirtualBase_DrawBackground, slotval1, slotval2) } func (this *QChartView) callVirtualBase_DrawForeground(painter *qt6.QPainter, rect *qt6.QRectF) { C.QChartView_virtualbase_drawForeground(unsafe.Pointer(this.h), (*C.QPainter)(painter.UnsafePointer()), (*C.QRectF)(rect.UnsafePointer())) } func (this *QChartView) OnDrawForeground(slot func(super func(painter *qt6.QPainter, rect *qt6.QRectF), painter *qt6.QPainter, rect *qt6.QRectF)) { ok := C.QChartView_override_virtual_drawForeground(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_QChartView_drawForeground func miqt_exec_callback_QChartView_drawForeground(self *C.QChartView, cb C.intptr_t, painter *C.QPainter, rect *C.QRectF) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(painter *qt6.QPainter, rect *qt6.QRectF), painter *qt6.QPainter, rect *qt6.QRectF)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQPainter(unsafe.Pointer(painter)) slotval2 := qt6.UnsafeNewQRectF(unsafe.Pointer(rect)) gofunc((&QChartView{h: self}).callVirtualBase_DrawForeground, slotval1, slotval2) } func (this *QChartView) callVirtualBase_MinimumSizeHint() *qt6.QSize { _goptr := qt6.UnsafeNewQSize(unsafe.Pointer(C.QChartView_virtualbase_minimumSizeHint(unsafe.Pointer(this.h)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QChartView) OnMinimumSizeHint(slot func(super func() *qt6.QSize) *qt6.QSize) { ok := C.QChartView_override_virtual_minimumSizeHint(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_QChartView_minimumSizeHint func miqt_exec_callback_QChartView_minimumSizeHint(self *C.QChartView, cb C.intptr_t) *C.QSize { gofunc, ok := cgo.Handle(cb).Value().(func(super func() *qt6.QSize) *qt6.QSize) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_MinimumSizeHint) return (*C.QSize)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_EventFilter(param1 *qt6.QObject, param2 *qt6.QEvent) bool { return (bool)(C.QChartView_virtualbase_eventFilter(unsafe.Pointer(this.h), (*C.QObject)(param1.UnsafePointer()), (*C.QEvent)(param2.UnsafePointer()))) } func (this *QChartView) OnEventFilter(slot func(super func(param1 *qt6.QObject, param2 *qt6.QEvent) bool, param1 *qt6.QObject, param2 *qt6.QEvent) bool) { ok := C.QChartView_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_QChartView_eventFilter func miqt_exec_callback_QChartView_eventFilter(self *C.QChartView, cb C.intptr_t, param1 *C.QObject, param2 *C.QEvent) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 *qt6.QObject, param2 *qt6.QEvent) bool, param1 *qt6.QObject, param2 *qt6.QEvent) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQObject(unsafe.Pointer(param1)) slotval2 := qt6.UnsafeNewQEvent(unsafe.Pointer(param2)) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_EventFilter, slotval1, slotval2) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_ViewportSizeHint() *qt6.QSize { _goptr := qt6.UnsafeNewQSize(unsafe.Pointer(C.QChartView_virtualbase_viewportSizeHint(unsafe.Pointer(this.h)))) _goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer return _goptr } func (this *QChartView) OnViewportSizeHint(slot func(super func() *qt6.QSize) *qt6.QSize) { ok := C.QChartView_override_virtual_viewportSizeHint(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_QChartView_viewportSizeHint func miqt_exec_callback_QChartView_viewportSizeHint(self *C.QChartView, cb C.intptr_t) *C.QSize { gofunc, ok := cgo.Handle(cb).Value().(func(super func() *qt6.QSize) *qt6.QSize) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_ViewportSizeHint) return (*C.QSize)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_ChangeEvent(param1 *qt6.QEvent) { C.QChartView_virtualbase_changeEvent(unsafe.Pointer(this.h), (*C.QEvent)(param1.UnsafePointer())) } func (this *QChartView) OnChangeEvent(slot func(super func(param1 *qt6.QEvent), param1 *qt6.QEvent)) { ok := C.QChartView_override_virtual_changeEvent(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_QChartView_changeEvent func miqt_exec_callback_QChartView_changeEvent(self *C.QChartView, cb C.intptr_t, param1 *C.QEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 *qt6.QEvent), param1 *qt6.QEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(param1)) gofunc((&QChartView{h: self}).callVirtualBase_ChangeEvent, slotval1) } func (this *QChartView) callVirtualBase_InitStyleOption(option *qt6.QStyleOptionFrame) { C.QChartView_virtualbase_initStyleOption(unsafe.Pointer(this.h), (*C.QStyleOptionFrame)(option.UnsafePointer())) } func (this *QChartView) OnInitStyleOption(slot func(super func(option *qt6.QStyleOptionFrame), option *qt6.QStyleOptionFrame)) { ok := C.QChartView_override_virtual_initStyleOption(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_QChartView_initStyleOption func miqt_exec_callback_QChartView_initStyleOption(self *C.QChartView, cb C.intptr_t, option *C.QStyleOptionFrame) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(option *qt6.QStyleOptionFrame), option *qt6.QStyleOptionFrame)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQStyleOptionFrame(unsafe.Pointer(option)) gofunc((&QChartView{h: self}).callVirtualBase_InitStyleOption, slotval1) } func (this *QChartView) callVirtualBase_DevType() int { return (int)(C.QChartView_virtualbase_devType(unsafe.Pointer(this.h))) } func (this *QChartView) OnDevType(slot func(super func() int) int) { ok := C.QChartView_override_virtual_devType(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_QChartView_devType func miqt_exec_callback_QChartView_devType(self *C.QChartView, cb C.intptr_t) C.int { gofunc, ok := cgo.Handle(cb).Value().(func(super func() int) int) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_DevType) return (C.int)(virtualReturn) } func (this *QChartView) callVirtualBase_SetVisible(visible bool) { C.QChartView_virtualbase_setVisible(unsafe.Pointer(this.h), (C.bool)(visible)) } func (this *QChartView) OnSetVisible(slot func(super func(visible bool), visible bool)) { ok := C.QChartView_override_virtual_setVisible(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_QChartView_setVisible func miqt_exec_callback_QChartView_setVisible(self *C.QChartView, cb C.intptr_t, visible C.bool) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(visible bool), visible bool)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (bool)(visible) gofunc((&QChartView{h: self}).callVirtualBase_SetVisible, slotval1) } func (this *QChartView) callVirtualBase_HeightForWidth(param1 int) int { return (int)(C.QChartView_virtualbase_heightForWidth(unsafe.Pointer(this.h), (C.int)(param1))) } func (this *QChartView) OnHeightForWidth(slot func(super func(param1 int) int, param1 int) int) { ok := C.QChartView_override_virtual_heightForWidth(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_QChartView_heightForWidth func miqt_exec_callback_QChartView_heightForWidth(self *C.QChartView, cb C.intptr_t, param1 C.int) C.int { gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 int) int, param1 int) int) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (int)(param1) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_HeightForWidth, slotval1) return (C.int)(virtualReturn) } func (this *QChartView) callVirtualBase_HasHeightForWidth() bool { return (bool)(C.QChartView_virtualbase_hasHeightForWidth(unsafe.Pointer(this.h))) } func (this *QChartView) OnHasHeightForWidth(slot func(super func() bool) bool) { ok := C.QChartView_override_virtual_hasHeightForWidth(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_QChartView_hasHeightForWidth func miqt_exec_callback_QChartView_hasHeightForWidth(self *C.QChartView, cb C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func() bool) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_HasHeightForWidth) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_PaintEngine() *qt6.QPaintEngine { return qt6.UnsafeNewQPaintEngine(unsafe.Pointer(C.QChartView_virtualbase_paintEngine(unsafe.Pointer(this.h)))) } func (this *QChartView) OnPaintEngine(slot func(super func() *qt6.QPaintEngine) *qt6.QPaintEngine) { ok := C.QChartView_override_virtual_paintEngine(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_QChartView_paintEngine func miqt_exec_callback_QChartView_paintEngine(self *C.QChartView, cb C.intptr_t) *C.QPaintEngine { gofunc, ok := cgo.Handle(cb).Value().(func(super func() *qt6.QPaintEngine) *qt6.QPaintEngine) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_PaintEngine) return (*C.QPaintEngine)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_EnterEvent(event *qt6.QEnterEvent) { C.QChartView_virtualbase_enterEvent(unsafe.Pointer(this.h), (*C.QEnterEvent)(event.UnsafePointer())) } func (this *QChartView) OnEnterEvent(slot func(super func(event *qt6.QEnterEvent), event *qt6.QEnterEvent)) { ok := C.QChartView_override_virtual_enterEvent(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_QChartView_enterEvent func miqt_exec_callback_QChartView_enterEvent(self *C.QChartView, cb C.intptr_t, event *C.QEnterEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEnterEvent), event *qt6.QEnterEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEnterEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_EnterEvent, slotval1) } func (this *QChartView) callVirtualBase_LeaveEvent(event *qt6.QEvent) { C.QChartView_virtualbase_leaveEvent(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer())) } func (this *QChartView) OnLeaveEvent(slot func(super func(event *qt6.QEvent), event *qt6.QEvent)) { ok := C.QChartView_override_virtual_leaveEvent(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_QChartView_leaveEvent func miqt_exec_callback_QChartView_leaveEvent(self *C.QChartView, cb C.intptr_t, event *C.QEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent), event *qt6.QEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_LeaveEvent, slotval1) } func (this *QChartView) callVirtualBase_MoveEvent(event *qt6.QMoveEvent) { C.QChartView_virtualbase_moveEvent(unsafe.Pointer(this.h), (*C.QMoveEvent)(event.UnsafePointer())) } func (this *QChartView) OnMoveEvent(slot func(super func(event *qt6.QMoveEvent), event *qt6.QMoveEvent)) { ok := C.QChartView_override_virtual_moveEvent(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_QChartView_moveEvent func miqt_exec_callback_QChartView_moveEvent(self *C.QChartView, cb C.intptr_t, event *C.QMoveEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QMoveEvent), event *qt6.QMoveEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMoveEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_MoveEvent, slotval1) } func (this *QChartView) callVirtualBase_CloseEvent(event *qt6.QCloseEvent) { C.QChartView_virtualbase_closeEvent(unsafe.Pointer(this.h), (*C.QCloseEvent)(event.UnsafePointer())) } func (this *QChartView) OnCloseEvent(slot func(super func(event *qt6.QCloseEvent), event *qt6.QCloseEvent)) { ok := C.QChartView_override_virtual_closeEvent(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_QChartView_closeEvent func miqt_exec_callback_QChartView_closeEvent(self *C.QChartView, cb C.intptr_t, event *C.QCloseEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QCloseEvent), event *qt6.QCloseEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQCloseEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_CloseEvent, slotval1) } func (this *QChartView) callVirtualBase_TabletEvent(event *qt6.QTabletEvent) { C.QChartView_virtualbase_tabletEvent(unsafe.Pointer(this.h), (*C.QTabletEvent)(event.UnsafePointer())) } func (this *QChartView) OnTabletEvent(slot func(super func(event *qt6.QTabletEvent), event *qt6.QTabletEvent)) { ok := C.QChartView_override_virtual_tabletEvent(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_QChartView_tabletEvent func miqt_exec_callback_QChartView_tabletEvent(self *C.QChartView, cb C.intptr_t, event *C.QTabletEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QTabletEvent), event *qt6.QTabletEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQTabletEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_TabletEvent, slotval1) } func (this *QChartView) callVirtualBase_ActionEvent(event *qt6.QActionEvent) { C.QChartView_virtualbase_actionEvent(unsafe.Pointer(this.h), (*C.QActionEvent)(event.UnsafePointer())) } func (this *QChartView) OnActionEvent(slot func(super func(event *qt6.QActionEvent), event *qt6.QActionEvent)) { ok := C.QChartView_override_virtual_actionEvent(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_QChartView_actionEvent func miqt_exec_callback_QChartView_actionEvent(self *C.QChartView, cb C.intptr_t, event *C.QActionEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QActionEvent), event *qt6.QActionEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQActionEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_ActionEvent, slotval1) } func (this *QChartView) callVirtualBase_HideEvent(event *qt6.QHideEvent) { C.QChartView_virtualbase_hideEvent(unsafe.Pointer(this.h), (*C.QHideEvent)(event.UnsafePointer())) } func (this *QChartView) OnHideEvent(slot func(super func(event *qt6.QHideEvent), event *qt6.QHideEvent)) { ok := C.QChartView_override_virtual_hideEvent(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_QChartView_hideEvent func miqt_exec_callback_QChartView_hideEvent(self *C.QChartView, cb C.intptr_t, event *C.QHideEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QHideEvent), event *qt6.QHideEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQHideEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_HideEvent, slotval1) } func (this *QChartView) callVirtualBase_NativeEvent(eventType []byte, message unsafe.Pointer, result *uintptr) bool { eventType_alias := C.struct_miqt_string{} if len(eventType) > 0 { eventType_alias.data = (*C.char)(unsafe.Pointer(&eventType[0])) } else { eventType_alias.data = (*C.char)(unsafe.Pointer(nil)) } eventType_alias.len = C.size_t(len(eventType)) return (bool)(C.QChartView_virtualbase_nativeEvent(unsafe.Pointer(this.h), eventType_alias, message, (*C.intptr_t)(unsafe.Pointer(result)))) } func (this *QChartView) OnNativeEvent(slot func(super func(eventType []byte, message unsafe.Pointer, result *uintptr) bool, eventType []byte, message unsafe.Pointer, result *uintptr) bool) { ok := C.QChartView_override_virtual_nativeEvent(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_QChartView_nativeEvent func miqt_exec_callback_QChartView_nativeEvent(self *C.QChartView, cb C.intptr_t, eventType C.struct_miqt_string, message unsafe.Pointer, result *C.intptr_t) C.bool { gofunc, ok := cgo.Handle(cb).Value().(func(super func(eventType []byte, message unsafe.Pointer, result *uintptr) bool, eventType []byte, message unsafe.Pointer, result *uintptr) bool) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters var eventType_bytearray C.struct_miqt_string = eventType eventType_ret := C.GoBytes(unsafe.Pointer(eventType_bytearray.data), C.int(int64(eventType_bytearray.len))) C.free(unsafe.Pointer(eventType_bytearray.data)) slotval1 := eventType_ret slotval2 := (unsafe.Pointer)(message) slotval3 := (*uintptr)(unsafe.Pointer(result)) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_NativeEvent, slotval1, slotval2, slotval3) return (C.bool)(virtualReturn) } func (this *QChartView) callVirtualBase_Metric(param1 qt6.QPaintDevice__PaintDeviceMetric) int { return (int)(C.QChartView_virtualbase_metric(unsafe.Pointer(this.h), (C.int)(param1))) } func (this *QChartView) OnMetric(slot func(super func(param1 qt6.QPaintDevice__PaintDeviceMetric) int, param1 qt6.QPaintDevice__PaintDeviceMetric) int) { ok := C.QChartView_override_virtual_metric(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_QChartView_metric func miqt_exec_callback_QChartView_metric(self *C.QChartView, cb C.intptr_t, param1 C.int) C.int { gofunc, ok := cgo.Handle(cb).Value().(func(super func(param1 qt6.QPaintDevice__PaintDeviceMetric) int, param1 qt6.QPaintDevice__PaintDeviceMetric) int) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := (qt6.QPaintDevice__PaintDeviceMetric)(param1) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_Metric, slotval1) return (C.int)(virtualReturn) } func (this *QChartView) callVirtualBase_InitPainter(painter *qt6.QPainter) { C.QChartView_virtualbase_initPainter(unsafe.Pointer(this.h), (*C.QPainter)(painter.UnsafePointer())) } func (this *QChartView) OnInitPainter(slot func(super func(painter *qt6.QPainter), painter *qt6.QPainter)) { ok := C.QChartView_override_virtual_initPainter(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_QChartView_initPainter func miqt_exec_callback_QChartView_initPainter(self *C.QChartView, cb C.intptr_t, painter *C.QPainter) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(painter *qt6.QPainter), painter *qt6.QPainter)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQPainter(unsafe.Pointer(painter)) gofunc((&QChartView{h: self}).callVirtualBase_InitPainter, slotval1) } func (this *QChartView) callVirtualBase_Redirected(offset *qt6.QPoint) *qt6.QPaintDevice { return qt6.UnsafeNewQPaintDevice(unsafe.Pointer(C.QChartView_virtualbase_redirected(unsafe.Pointer(this.h), (*C.QPoint)(offset.UnsafePointer())))) } func (this *QChartView) OnRedirected(slot func(super func(offset *qt6.QPoint) *qt6.QPaintDevice, offset *qt6.QPoint) *qt6.QPaintDevice) { ok := C.QChartView_override_virtual_redirected(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_QChartView_redirected func miqt_exec_callback_QChartView_redirected(self *C.QChartView, cb C.intptr_t, offset *C.QPoint) *C.QPaintDevice { gofunc, ok := cgo.Handle(cb).Value().(func(super func(offset *qt6.QPoint) *qt6.QPaintDevice, offset *qt6.QPoint) *qt6.QPaintDevice) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQPoint(unsafe.Pointer(offset)) virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_Redirected, slotval1) return (*C.QPaintDevice)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_SharedPainter() *qt6.QPainter { return qt6.UnsafeNewQPainter(unsafe.Pointer(C.QChartView_virtualbase_sharedPainter(unsafe.Pointer(this.h)))) } func (this *QChartView) OnSharedPainter(slot func(super func() *qt6.QPainter) *qt6.QPainter) { ok := C.QChartView_override_virtual_sharedPainter(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_QChartView_sharedPainter func miqt_exec_callback_QChartView_sharedPainter(self *C.QChartView, cb C.intptr_t) *C.QPainter { gofunc, ok := cgo.Handle(cb).Value().(func(super func() *qt6.QPainter) *qt6.QPainter) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } virtualReturn := gofunc((&QChartView{h: self}).callVirtualBase_SharedPainter) return (*C.QPainter)(virtualReturn.UnsafePointer()) } func (this *QChartView) callVirtualBase_TimerEvent(event *qt6.QTimerEvent) { C.QChartView_virtualbase_timerEvent(unsafe.Pointer(this.h), (*C.QTimerEvent)(event.UnsafePointer())) } func (this *QChartView) OnTimerEvent(slot func(super func(event *qt6.QTimerEvent), event *qt6.QTimerEvent)) { ok := C.QChartView_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_QChartView_timerEvent func miqt_exec_callback_QChartView_timerEvent(self *C.QChartView, cb C.intptr_t, event *C.QTimerEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QTimerEvent), event *qt6.QTimerEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQTimerEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_TimerEvent, slotval1) } func (this *QChartView) callVirtualBase_ChildEvent(event *qt6.QChildEvent) { C.QChartView_virtualbase_childEvent(unsafe.Pointer(this.h), (*C.QChildEvent)(event.UnsafePointer())) } func (this *QChartView) OnChildEvent(slot func(super func(event *qt6.QChildEvent), event *qt6.QChildEvent)) { ok := C.QChartView_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_QChartView_childEvent func miqt_exec_callback_QChartView_childEvent(self *C.QChartView, cb C.intptr_t, event *C.QChildEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QChildEvent), event *qt6.QChildEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQChildEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_ChildEvent, slotval1) } func (this *QChartView) callVirtualBase_CustomEvent(event *qt6.QEvent) { C.QChartView_virtualbase_customEvent(unsafe.Pointer(this.h), (*C.QEvent)(event.UnsafePointer())) } func (this *QChartView) OnCustomEvent(slot func(super func(event *qt6.QEvent), event *qt6.QEvent)) { ok := C.QChartView_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_QChartView_customEvent func miqt_exec_callback_QChartView_customEvent(self *C.QChartView, cb C.intptr_t, event *C.QEvent) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(event *qt6.QEvent), event *qt6.QEvent)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQEvent(unsafe.Pointer(event)) gofunc((&QChartView{h: self}).callVirtualBase_CustomEvent, slotval1) } func (this *QChartView) callVirtualBase_ConnectNotify(signal *qt6.QMetaMethod) { C.QChartView_virtualbase_connectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer())) } func (this *QChartView) OnConnectNotify(slot func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) { ok := C.QChartView_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_QChartView_connectNotify func miqt_exec_callback_QChartView_connectNotify(self *C.QChartView, cb C.intptr_t, signal *C.QMetaMethod) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMetaMethod(unsafe.Pointer(signal)) gofunc((&QChartView{h: self}).callVirtualBase_ConnectNotify, slotval1) } func (this *QChartView) callVirtualBase_DisconnectNotify(signal *qt6.QMetaMethod) { C.QChartView_virtualbase_disconnectNotify(unsafe.Pointer(this.h), (*C.QMetaMethod)(signal.UnsafePointer())) } func (this *QChartView) OnDisconnectNotify(slot func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) { ok := C.QChartView_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_QChartView_disconnectNotify func miqt_exec_callback_QChartView_disconnectNotify(self *C.QChartView, cb C.intptr_t, signal *C.QMetaMethod) { gofunc, ok := cgo.Handle(cb).Value().(func(super func(signal *qt6.QMetaMethod), signal *qt6.QMetaMethod)) if !ok { panic("miqt: callback of non-callback type (heap corruption?)") } // Convert all CABI parameters to Go parameters slotval1 := qt6.UnsafeNewQMetaMethod(unsafe.Pointer(signal)) gofunc((&QChartView{h: self}).callVirtualBase_DisconnectNotify, slotval1) } // Delete this object from C++ memory. func (this *QChartView) Delete() { C.QChartView_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 *QChartView) GoGC() { runtime.SetFinalizer(this, func(this *QChartView) { this.Delete() runtime.KeepAlive(this.h) }) }