miqt/qt/gen_qloggingcategory.go

118 lines
3.0 KiB
Go

package qt
/*
#include "gen_qloggingcategory.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QLoggingCategory struct {
h *C.QLoggingCategory
isSubclass bool
}
func (this *QLoggingCategory) cPointer() *C.QLoggingCategory {
if this == nil {
return nil
}
return this.h
}
func (this *QLoggingCategory) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQLoggingCategory constructs the type using only CGO pointers.
func newQLoggingCategory(h *C.QLoggingCategory) *QLoggingCategory {
if h == nil {
return nil
}
return &QLoggingCategory{h: h}
}
// UnsafeNewQLoggingCategory constructs the type using only unsafe pointers.
func UnsafeNewQLoggingCategory(h unsafe.Pointer) *QLoggingCategory {
if h == nil {
return nil
}
return &QLoggingCategory{h: (*C.QLoggingCategory)(h)}
}
// NewQLoggingCategory constructs a new QLoggingCategory object.
func NewQLoggingCategory(category string) *QLoggingCategory {
category_Cstring := C.CString(category)
defer C.free(unsafe.Pointer(category_Cstring))
var outptr_QLoggingCategory *C.QLoggingCategory = nil
C.QLoggingCategory_new(category_Cstring, &outptr_QLoggingCategory)
ret := newQLoggingCategory(outptr_QLoggingCategory)
ret.isSubclass = true
return ret
}
func (this *QLoggingCategory) IsDebugEnabled() bool {
return (bool)(C.QLoggingCategory_IsDebugEnabled(this.h))
}
func (this *QLoggingCategory) IsInfoEnabled() bool {
return (bool)(C.QLoggingCategory_IsInfoEnabled(this.h))
}
func (this *QLoggingCategory) IsWarningEnabled() bool {
return (bool)(C.QLoggingCategory_IsWarningEnabled(this.h))
}
func (this *QLoggingCategory) IsCriticalEnabled() bool {
return (bool)(C.QLoggingCategory_IsCriticalEnabled(this.h))
}
func (this *QLoggingCategory) CategoryName() string {
_ret := C.QLoggingCategory_CategoryName(this.h)
return C.GoString(_ret)
}
func (this *QLoggingCategory) OperatorCall() *QLoggingCategory {
return UnsafeNewQLoggingCategory(unsafe.Pointer(C.QLoggingCategory_OperatorCall(this.h)))
}
func (this *QLoggingCategory) OperatorCall2() *QLoggingCategory {
return UnsafeNewQLoggingCategory(unsafe.Pointer(C.QLoggingCategory_OperatorCall2(this.h)))
}
func QLoggingCategory_DefaultCategory() *QLoggingCategory {
return UnsafeNewQLoggingCategory(unsafe.Pointer(C.QLoggingCategory_DefaultCategory()))
}
func QLoggingCategory_SetFilterRules(rules string) {
rules_ms := C.struct_miqt_string{}
rules_ms.data = C.CString(rules)
rules_ms.len = C.size_t(len(rules))
defer C.free(unsafe.Pointer(rules_ms.data))
C.QLoggingCategory_SetFilterRules(rules_ms)
}
// Delete this object from C++ memory.
func (this *QLoggingCategory) Delete() {
C.QLoggingCategory_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 *QLoggingCategory) GoGC() {
runtime.SetFinalizer(this, func(this *QLoggingCategory) {
this.Delete()
runtime.KeepAlive(this.h)
})
}