package qt /* #include "gen_qdebug.h" #include */ import "C" import ( "runtime" "unsafe" ) type QDebug__VerbosityLevel int const ( QDebug__MinimumVerbosity QDebug__VerbosityLevel = 0 QDebug__DefaultVerbosity QDebug__VerbosityLevel = 2 QDebug__MaximumVerbosity QDebug__VerbosityLevel = 7 ) type QDebug struct { h *C.QDebug } func (this *QDebug) cPointer() *C.QDebug { if this == nil { return nil } return this.h } func newQDebug(h *C.QDebug) *QDebug { if h == nil { return nil } return &QDebug{h: h} } func newQDebug_U(h unsafe.Pointer) *QDebug { return newQDebug((*C.QDebug)(h)) } // NewQDebug constructs a new QDebug object. func NewQDebug(device *QIODevice) *QDebug { ret := C.QDebug_new(device.cPointer()) return newQDebug(ret) } // NewQDebug2 constructs a new QDebug object. func NewQDebug2(o *QDebug) *QDebug { ret := C.QDebug_new2(o.cPointer()) return newQDebug(ret) } func (this *QDebug) OperatorAssign(other *QDebug) { C.QDebug_OperatorAssign(this.h, other.cPointer()) } func (this *QDebug) Swap(other *QDebug) { C.QDebug_Swap(this.h, other.cPointer()) } func (this *QDebug) ResetFormat() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_ResetFormat(this.h))) } func (this *QDebug) Space() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_Space(this.h))) } func (this *QDebug) Nospace() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_Nospace(this.h))) } func (this *QDebug) MaybeSpace() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_MaybeSpace(this.h))) } func (this *QDebug) Verbosity(verbosityLevel int) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_Verbosity(this.h, (C.int)(verbosityLevel)))) } func (this *QDebug) Verbosity2() int { return (int)(C.QDebug_Verbosity2(this.h)) } func (this *QDebug) SetVerbosity(verbosityLevel int) { C.QDebug_SetVerbosity(this.h, (C.int)(verbosityLevel)) } func (this *QDebug) AutoInsertSpaces() bool { return (bool)(C.QDebug_AutoInsertSpaces(this.h)) } func (this *QDebug) SetAutoInsertSpaces(b bool) { C.QDebug_SetAutoInsertSpaces(this.h, (C.bool)(b)) } func (this *QDebug) Quote() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_Quote(this.h))) } func (this *QDebug) Noquote() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_Noquote(this.h))) } func (this *QDebug) MaybeQuote() *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_MaybeQuote(this.h))) } func (this *QDebug) OperatorShiftLeft(t QChar) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeft(this.h, t.cPointer()))) } func (this *QDebug) OperatorShiftLeftWithBool(t bool) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithBool(this.h, (C.bool)(t)))) } func (this *QDebug) OperatorShiftLeftWithChar(t byte) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithChar(this.h, (C.char)(t)))) } func (this *QDebug) OperatorShiftLeftWithShort(t int16) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithShort(this.h, (C.int16_t)(t)))) } func (this *QDebug) OperatorShiftLeftWithUnsignedshort(t uint16) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithUnsignedshort(this.h, (C.uint16_t)(t)))) } func (this *QDebug) OperatorShiftLeftWithInt(t int) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithInt(this.h, (C.int)(t)))) } func (this *QDebug) OperatorShiftLeftWithUnsignedint(t uint) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithUnsignedint(this.h, (C.uint)(t)))) } func (this *QDebug) OperatorShiftLeftWithLong(t int64) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithLong(this.h, (C.long)(t)))) } func (this *QDebug) OperatorShiftLeftWithUnsignedlong(t uint64) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithUnsignedlong(this.h, (C.ulong)(t)))) } func (this *QDebug) OperatorShiftLeftWithQint64(t int64) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithQint64(this.h, (C.longlong)(t)))) } func (this *QDebug) OperatorShiftLeftWithQuint64(t uint64) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithQuint64(this.h, (C.ulonglong)(t)))) } func (this *QDebug) OperatorShiftLeftWithFloat(t float32) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithFloat(this.h, (C.float)(t)))) } func (this *QDebug) OperatorShiftLeftWithDouble(t float64) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithDouble(this.h, (C.double)(t)))) } func (this *QDebug) OperatorShiftLeft2(t string) *QDebug { t_Cstring := C.CString(t) defer C.free(unsafe.Pointer(t_Cstring)) return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeft2(this.h, t_Cstring))) } func (this *QDebug) OperatorShiftLeftWithQString(t string) *QDebug { t_ms := miqt_strdupg(t) defer C.free(t_ms) return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithQString(this.h, (*C.struct_miqt_string)(t_ms)))) } func (this *QDebug) OperatorShiftLeftWithQByteArray(t *QByteArray) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithQByteArray(this.h, t.cPointer()))) } func (this *QDebug) OperatorShiftLeftWithVoid(t unsafe.Pointer) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_OperatorShiftLeftWithVoid(this.h, t))) } func (this *QDebug) MaybeQuote1(c byte) *QDebug { return newQDebug_U(unsafe.Pointer(C.QDebug_MaybeQuote1(this.h, (C.char)(c)))) } // Delete this object from C++ memory. func (this *QDebug) Delete() { C.QDebug_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 *QDebug) GoGC() { runtime.SetFinalizer(this, func(this *QDebug) { this.Delete() runtime.KeepAlive(this.h) }) } type QDebugStateSaver struct { h *C.QDebugStateSaver } func (this *QDebugStateSaver) cPointer() *C.QDebugStateSaver { if this == nil { return nil } return this.h } func newQDebugStateSaver(h *C.QDebugStateSaver) *QDebugStateSaver { if h == nil { return nil } return &QDebugStateSaver{h: h} } func newQDebugStateSaver_U(h unsafe.Pointer) *QDebugStateSaver { return newQDebugStateSaver((*C.QDebugStateSaver)(h)) } // NewQDebugStateSaver constructs a new QDebugStateSaver object. func NewQDebugStateSaver(dbg *QDebug) *QDebugStateSaver { ret := C.QDebugStateSaver_new(dbg.cPointer()) return newQDebugStateSaver(ret) } // Delete this object from C++ memory. func (this *QDebugStateSaver) Delete() { C.QDebugStateSaver_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 *QDebugStateSaver) GoGC() { runtime.SetFinalizer(this, func(this *QDebugStateSaver) { this.Delete() runtime.KeepAlive(this.h) }) } type QNoDebug struct { h *C.QNoDebug } func (this *QNoDebug) cPointer() *C.QNoDebug { if this == nil { return nil } return this.h } func newQNoDebug(h *C.QNoDebug) *QNoDebug { if h == nil { return nil } return &QNoDebug{h: h} } func newQNoDebug_U(h unsafe.Pointer) *QNoDebug { return newQNoDebug((*C.QNoDebug)(h)) } func (this *QNoDebug) Space() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_Space(this.h))) } func (this *QNoDebug) Nospace() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_Nospace(this.h))) } func (this *QNoDebug) MaybeSpace() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_MaybeSpace(this.h))) } func (this *QNoDebug) Quote() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_Quote(this.h))) } func (this *QNoDebug) Noquote() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_Noquote(this.h))) } func (this *QNoDebug) MaybeQuote() *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_MaybeQuote(this.h))) } func (this *QNoDebug) Verbosity(param1 int) *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_Verbosity(this.h, (C.int)(param1)))) } func (this *QNoDebug) MaybeQuote1(param1 byte) *QNoDebug { return newQNoDebug_U(unsafe.Pointer(C.QNoDebug_MaybeQuote1(this.h, (C.char)(param1)))) } // Delete this object from C++ memory. func (this *QNoDebug) Delete() { C.QNoDebug_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 *QNoDebug) GoGC() { runtime.SetFinalizer(this, func(this *QNoDebug) { this.Delete() runtime.KeepAlive(this.h) }) }