miqt/qt6/gen_qelapsedtimer.go

127 lines
2.9 KiB
Go

package qt6
/*
#include "gen_qelapsedtimer.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QElapsedTimer__ClockType int
const (
QElapsedTimer__SystemTime QElapsedTimer__ClockType = 0
QElapsedTimer__MonotonicClock QElapsedTimer__ClockType = 1
QElapsedTimer__MachAbsoluteTime QElapsedTimer__ClockType = 2
QElapsedTimer__PerformanceCounter QElapsedTimer__ClockType = 3
)
type QElapsedTimer struct {
h *C.QElapsedTimer
isSubclass bool
}
func (this *QElapsedTimer) cPointer() *C.QElapsedTimer {
if this == nil {
return nil
}
return this.h
}
func (this *QElapsedTimer) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQElapsedTimer constructs the type using only CGO pointers.
func newQElapsedTimer(h *C.QElapsedTimer) *QElapsedTimer {
if h == nil {
return nil
}
return &QElapsedTimer{h: h}
}
// UnsafeNewQElapsedTimer constructs the type using only unsafe pointers.
func UnsafeNewQElapsedTimer(h unsafe.Pointer) *QElapsedTimer {
return newQElapsedTimer((*C.QElapsedTimer)(h))
}
// NewQElapsedTimer constructs a new QElapsedTimer object.
func NewQElapsedTimer() *QElapsedTimer {
ret := newQElapsedTimer(C.QElapsedTimer_new())
ret.isSubclass = true
return ret
}
func QElapsedTimer_ClockType() QElapsedTimer__ClockType {
return (QElapsedTimer__ClockType)(C.QElapsedTimer_ClockType())
}
func QElapsedTimer_IsMonotonic() bool {
return (bool)(C.QElapsedTimer_IsMonotonic())
}
func (this *QElapsedTimer) Start() {
C.QElapsedTimer_Start(this.h)
}
func (this *QElapsedTimer) Restart() int64 {
return (int64)(C.QElapsedTimer_Restart(this.h))
}
func (this *QElapsedTimer) Invalidate() {
C.QElapsedTimer_Invalidate(this.h)
}
func (this *QElapsedTimer) IsValid() bool {
return (bool)(C.QElapsedTimer_IsValid(this.h))
}
func (this *QElapsedTimer) NsecsElapsed() int64 {
return (int64)(C.QElapsedTimer_NsecsElapsed(this.h))
}
func (this *QElapsedTimer) Elapsed() int64 {
return (int64)(C.QElapsedTimer_Elapsed(this.h))
}
func (this *QElapsedTimer) HasExpired(timeout int64) bool {
return (bool)(C.QElapsedTimer_HasExpired(this.h, (C.longlong)(timeout)))
}
func (this *QElapsedTimer) MsecsSinceReference() int64 {
return (int64)(C.QElapsedTimer_MsecsSinceReference(this.h))
}
func (this *QElapsedTimer) MsecsTo(other *QElapsedTimer) int64 {
return (int64)(C.QElapsedTimer_MsecsTo(this.h, other.cPointer()))
}
func (this *QElapsedTimer) SecsTo(other *QElapsedTimer) int64 {
return (int64)(C.QElapsedTimer_SecsTo(this.h, other.cPointer()))
}
// Delete this object from C++ memory.
func (this *QElapsedTimer) Delete() {
C.QElapsedTimer_Delete(this.h, C.bool(this.isSubclass))
}
// 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 *QElapsedTimer) GoGC() {
runtime.SetFinalizer(this, func(this *QElapsedTimer) {
this.Delete()
runtime.KeepAlive(this.h)
})
}