mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
55 lines
1.3 KiB
Go
55 lines
1.3 KiB
Go
package qt
|
|
|
|
/*
|
|
|
|
#include "gen_qabstractnativeeventfilter.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QAbstractNativeEventFilter struct {
|
|
h *C.QAbstractNativeEventFilter
|
|
}
|
|
|
|
func (this *QAbstractNativeEventFilter) cPointer() *C.QAbstractNativeEventFilter {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func newQAbstractNativeEventFilter(h *C.QAbstractNativeEventFilter) *QAbstractNativeEventFilter {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QAbstractNativeEventFilter{h: h}
|
|
}
|
|
|
|
func newQAbstractNativeEventFilter_U(h unsafe.Pointer) *QAbstractNativeEventFilter {
|
|
return newQAbstractNativeEventFilter((*C.QAbstractNativeEventFilter)(h))
|
|
}
|
|
|
|
func (this *QAbstractNativeEventFilter) NativeEventFilter(eventType *QByteArray, message unsafe.Pointer, result *int64) bool {
|
|
return (bool)(C.QAbstractNativeEventFilter_NativeEventFilter(this.h, eventType.cPointer(), message, (*C.long)(unsafe.Pointer(result))))
|
|
}
|
|
|
|
// Delete this object from C++ memory.
|
|
func (this *QAbstractNativeEventFilter) Delete() {
|
|
C.QAbstractNativeEventFilter_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 *QAbstractNativeEventFilter) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QAbstractNativeEventFilter) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|