mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
40 lines
764 B
Go
40 lines
764 B
Go
package qt
|
|
|
|
/*
|
|
|
|
#include "gen_qabstractnativeeventfilter.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"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) Delete() {
|
|
C.QAbstractNativeEventFilter_Delete(this.h)
|
|
}
|