miqt/qt6/gen_qtextstream.go

469 lines
16 KiB
Go

package qt6
/*
#include "gen_qtextstream.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QTextStream__RealNumberNotation int
const (
QTextStream__SmartNotation QTextStream__RealNumberNotation = 0
QTextStream__FixedNotation QTextStream__RealNumberNotation = 1
QTextStream__ScientificNotation QTextStream__RealNumberNotation = 2
)
type QTextStream__FieldAlignment int
const (
QTextStream__AlignLeft QTextStream__FieldAlignment = 0
QTextStream__AlignRight QTextStream__FieldAlignment = 1
QTextStream__AlignCenter QTextStream__FieldAlignment = 2
QTextStream__AlignAccountingStyle QTextStream__FieldAlignment = 3
)
type QTextStream__Status int
const (
QTextStream__Ok QTextStream__Status = 0
QTextStream__ReadPastEnd QTextStream__Status = 1
QTextStream__ReadCorruptData QTextStream__Status = 2
QTextStream__WriteFailed QTextStream__Status = 3
)
type QTextStream__NumberFlag int
const (
QTextStream__ShowBase QTextStream__NumberFlag = 1
QTextStream__ForcePoint QTextStream__NumberFlag = 2
QTextStream__ForceSign QTextStream__NumberFlag = 4
QTextStream__UppercaseBase QTextStream__NumberFlag = 8
QTextStream__UppercaseDigits QTextStream__NumberFlag = 16
)
type QTextStream struct {
h *C.QTextStream
isSubclass bool
*QIODeviceBase
}
func (this *QTextStream) cPointer() *C.QTextStream {
if this == nil {
return nil
}
return this.h
}
func (this *QTextStream) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQTextStream constructs the type using only CGO pointers.
func newQTextStream(h *C.QTextStream, h_QIODeviceBase *C.QIODeviceBase) *QTextStream {
if h == nil {
return nil
}
return &QTextStream{h: h,
QIODeviceBase: newQIODeviceBase(h_QIODeviceBase)}
}
// UnsafeNewQTextStream constructs the type using only unsafe pointers.
func UnsafeNewQTextStream(h unsafe.Pointer, h_QIODeviceBase unsafe.Pointer) *QTextStream {
if h == nil {
return nil
}
return &QTextStream{h: (*C.QTextStream)(h),
QIODeviceBase: UnsafeNewQIODeviceBase(h_QIODeviceBase)}
}
// NewQTextStream constructs a new QTextStream object.
func NewQTextStream() *QTextStream {
var outptr_QTextStream *C.QTextStream = nil
var outptr_QIODeviceBase *C.QIODeviceBase = nil
C.QTextStream_new(&outptr_QTextStream, &outptr_QIODeviceBase)
ret := newQTextStream(outptr_QTextStream, outptr_QIODeviceBase)
ret.isSubclass = true
return ret
}
// NewQTextStream2 constructs a new QTextStream object.
func NewQTextStream2(device *QIODevice) *QTextStream {
var outptr_QTextStream *C.QTextStream = nil
var outptr_QIODeviceBase *C.QIODeviceBase = nil
C.QTextStream_new2(device.cPointer(), &outptr_QTextStream, &outptr_QIODeviceBase)
ret := newQTextStream(outptr_QTextStream, outptr_QIODeviceBase)
ret.isSubclass = true
return ret
}
// NewQTextStream3 constructs a new QTextStream object.
func NewQTextStream3(array []byte) *QTextStream {
array_alias := C.struct_miqt_string{}
array_alias.data = (*C.char)(unsafe.Pointer(&array[0]))
array_alias.len = C.size_t(len(array))
var outptr_QTextStream *C.QTextStream = nil
var outptr_QIODeviceBase *C.QIODeviceBase = nil
C.QTextStream_new3(array_alias, &outptr_QTextStream, &outptr_QIODeviceBase)
ret := newQTextStream(outptr_QTextStream, outptr_QIODeviceBase)
ret.isSubclass = true
return ret
}
// NewQTextStream4 constructs a new QTextStream object.
func NewQTextStream4(array []byte, openMode QIODeviceBase__OpenModeFlag) *QTextStream {
array_alias := C.struct_miqt_string{}
array_alias.data = (*C.char)(unsafe.Pointer(&array[0]))
array_alias.len = C.size_t(len(array))
var outptr_QTextStream *C.QTextStream = nil
var outptr_QIODeviceBase *C.QIODeviceBase = nil
C.QTextStream_new4(array_alias, (C.int)(openMode), &outptr_QTextStream, &outptr_QIODeviceBase)
ret := newQTextStream(outptr_QTextStream, outptr_QIODeviceBase)
ret.isSubclass = true
return ret
}
func (this *QTextStream) SetEncoding(encoding QStringConverter__Encoding) {
C.QTextStream_SetEncoding(this.h, (C.int)(encoding))
}
func (this *QTextStream) Encoding() QStringConverter__Encoding {
return (QStringConverter__Encoding)(C.QTextStream_Encoding(this.h))
}
func (this *QTextStream) SetAutoDetectUnicode(enabled bool) {
C.QTextStream_SetAutoDetectUnicode(this.h, (C.bool)(enabled))
}
func (this *QTextStream) AutoDetectUnicode() bool {
return (bool)(C.QTextStream_AutoDetectUnicode(this.h))
}
func (this *QTextStream) SetGenerateByteOrderMark(generate bool) {
C.QTextStream_SetGenerateByteOrderMark(this.h, (C.bool)(generate))
}
func (this *QTextStream) GenerateByteOrderMark() bool {
return (bool)(C.QTextStream_GenerateByteOrderMark(this.h))
}
func (this *QTextStream) SetLocale(locale *QLocale) {
C.QTextStream_SetLocale(this.h, locale.cPointer())
}
func (this *QTextStream) Locale() *QLocale {
_ret := C.QTextStream_Locale(this.h)
_goptr := newQLocale(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextStream) SetDevice(device *QIODevice) {
C.QTextStream_SetDevice(this.h, device.cPointer())
}
func (this *QTextStream) Device() *QIODevice {
return UnsafeNewQIODevice(unsafe.Pointer(C.QTextStream_Device(this.h)), nil, nil)
}
func (this *QTextStream) String() string {
var _ms C.struct_miqt_string = C.QTextStream_String(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextStream) Status() QTextStream__Status {
return (QTextStream__Status)(C.QTextStream_Status(this.h))
}
func (this *QTextStream) SetStatus(status QTextStream__Status) {
C.QTextStream_SetStatus(this.h, (C.int)(status))
}
func (this *QTextStream) ResetStatus() {
C.QTextStream_ResetStatus(this.h)
}
func (this *QTextStream) AtEnd() bool {
return (bool)(C.QTextStream_AtEnd(this.h))
}
func (this *QTextStream) Reset() {
C.QTextStream_Reset(this.h)
}
func (this *QTextStream) Flush() {
C.QTextStream_Flush(this.h)
}
func (this *QTextStream) Seek(pos int64) bool {
return (bool)(C.QTextStream_Seek(this.h, (C.longlong)(pos)))
}
func (this *QTextStream) Pos() int64 {
return (int64)(C.QTextStream_Pos(this.h))
}
func (this *QTextStream) SkipWhiteSpace() {
C.QTextStream_SkipWhiteSpace(this.h)
}
func (this *QTextStream) ReadLine() string {
var _ms C.struct_miqt_string = C.QTextStream_ReadLine(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextStream) ReadAll() string {
var _ms C.struct_miqt_string = C.QTextStream_ReadAll(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextStream) Read(maxlen int64) string {
var _ms C.struct_miqt_string = C.QTextStream_Read(this.h, (C.longlong)(maxlen))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QTextStream) SetFieldAlignment(alignment QTextStream__FieldAlignment) {
C.QTextStream_SetFieldAlignment(this.h, (C.int)(alignment))
}
func (this *QTextStream) FieldAlignment() QTextStream__FieldAlignment {
return (QTextStream__FieldAlignment)(C.QTextStream_FieldAlignment(this.h))
}
func (this *QTextStream) SetPadChar(ch QChar) {
C.QTextStream_SetPadChar(this.h, ch.cPointer())
}
func (this *QTextStream) PadChar() *QChar {
_ret := C.QTextStream_PadChar(this.h)
_goptr := newQChar(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QTextStream) SetFieldWidth(width int) {
C.QTextStream_SetFieldWidth(this.h, (C.int)(width))
}
func (this *QTextStream) FieldWidth() int {
return (int)(C.QTextStream_FieldWidth(this.h))
}
func (this *QTextStream) SetNumberFlags(flags QTextStream__NumberFlag) {
C.QTextStream_SetNumberFlags(this.h, (C.int)(flags))
}
func (this *QTextStream) NumberFlags() QTextStream__NumberFlag {
return (QTextStream__NumberFlag)(C.QTextStream_NumberFlags(this.h))
}
func (this *QTextStream) SetIntegerBase(base int) {
C.QTextStream_SetIntegerBase(this.h, (C.int)(base))
}
func (this *QTextStream) IntegerBase() int {
return (int)(C.QTextStream_IntegerBase(this.h))
}
func (this *QTextStream) SetRealNumberNotation(notation QTextStream__RealNumberNotation) {
C.QTextStream_SetRealNumberNotation(this.h, (C.int)(notation))
}
func (this *QTextStream) RealNumberNotation() QTextStream__RealNumberNotation {
return (QTextStream__RealNumberNotation)(C.QTextStream_RealNumberNotation(this.h))
}
func (this *QTextStream) SetRealNumberPrecision(precision int) {
C.QTextStream_SetRealNumberPrecision(this.h, (C.int)(precision))
}
func (this *QTextStream) RealNumberPrecision() int {
return (int)(C.QTextStream_RealNumberPrecision(this.h))
}
func (this *QTextStream) OperatorShiftRight(ch *QChar) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRight(this.h, ch.cPointer())), nil)
}
func (this *QTextStream) OperatorShiftRightWithCh(ch *int8) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithCh(this.h, (*C.char)(unsafe.Pointer(ch)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithShort(i *int16) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithShort(this.h, (*C.int16_t)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithUnsignedshort(i *uint16) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedshort(this.h, (*C.uint16_t)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithInt(i *int) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithInt(this.h, (*C.int)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithUnsignedint(i *uint) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedint(this.h, (*C.uint)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithLong(i *int64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithLong(this.h, (*C.long)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithUnsignedlong(i *uint64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedlong(this.h, (*C.ulong)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithQlonglong(i *int64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQlonglong(this.h, (*C.longlong)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithQulonglong(i *uint64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQulonglong(this.h, (*C.ulonglong)(unsafe.Pointer(i)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithFloat(f *float32) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithFloat(this.h, (*C.float)(unsafe.Pointer(f)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithDouble(f *float64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithDouble(this.h, (*C.double)(unsafe.Pointer(f)))), nil)
}
func (this *QTextStream) OperatorShiftRightWithQString(s string) *QTextStream {
s_ms := C.struct_miqt_string{}
s_ms.data = C.CString(s)
s_ms.len = C.size_t(len(s))
defer C.free(unsafe.Pointer(s_ms.data))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQString(this.h, s_ms)), nil)
}
func (this *QTextStream) OperatorShiftRightWithArray(array []byte) *QTextStream {
array_alias := C.struct_miqt_string{}
array_alias.data = (*C.char)(unsafe.Pointer(&array[0]))
array_alias.len = C.size_t(len(array))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithArray(this.h, array_alias)), nil)
}
func (this *QTextStream) OperatorShiftRightWithChar(c string) *QTextStream {
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithChar(this.h, c_Cstring)), nil)
}
func (this *QTextStream) OperatorShiftLeft(ch QChar) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeft(this.h, ch.cPointer())), nil)
}
func (this *QTextStream) OperatorShiftLeftWithCh(ch int8) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithCh(this.h, (C.char)(ch))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithShort(i int16) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithShort(this.h, (C.int16_t)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedshort(i uint16) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedshort(this.h, (C.uint16_t)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithInt(i int) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithInt(this.h, (C.int)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedint(i uint) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedint(this.h, (C.uint)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithLong(i int64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithLong(this.h, (C.long)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedlong(i uint64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedlong(this.h, (C.ulong)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithQlonglong(i int64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQlonglong(this.h, (C.longlong)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithQulonglong(i uint64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQulonglong(this.h, (C.ulonglong)(i))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithFloat(f float32) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithFloat(this.h, (C.float)(f))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithDouble(f float64) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithDouble(this.h, (C.double)(f))), nil)
}
func (this *QTextStream) OperatorShiftLeftWithQString(s string) *QTextStream {
s_ms := C.struct_miqt_string{}
s_ms.data = C.CString(s)
s_ms.len = C.size_t(len(s))
defer C.free(unsafe.Pointer(s_ms.data))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQString(this.h, s_ms)), nil)
}
func (this *QTextStream) OperatorShiftLeftWithArray(array []byte) *QTextStream {
array_alias := C.struct_miqt_string{}
array_alias.data = (*C.char)(unsafe.Pointer(&array[0]))
array_alias.len = C.size_t(len(array))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithArray(this.h, array_alias)), nil)
}
func (this *QTextStream) OperatorShiftLeftWithChar(c string) *QTextStream {
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithChar(this.h, c_Cstring)), nil)
}
func (this *QTextStream) OperatorShiftLeftWithPtr(ptr unsafe.Pointer) *QTextStream {
return UnsafeNewQTextStream(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithPtr(this.h, ptr)), nil)
}
func (this *QTextStream) ReadLine1(maxlen int64) string {
var _ms C.struct_miqt_string = C.QTextStream_ReadLine1(this.h, (C.longlong)(maxlen))
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
// Delete this object from C++ memory.
func (this *QTextStream) Delete() {
C.QTextStream_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 *QTextStream) GoGC() {
runtime.SetFinalizer(this, func(this *QTextStream) {
this.Delete()
runtime.KeepAlive(this.h)
})
}