miqt/qt/gen_qtextstream.go

430 lines
14 KiB
Go
Raw Normal View History

package qt
/*
#include "gen_qtextstream.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QTextStream__RealNumberNotation int
const (
QTextStream__RealNumberNotation__SmartNotation QTextStream__RealNumberNotation = 0
QTextStream__RealNumberNotation__FixedNotation QTextStream__RealNumberNotation = 1
QTextStream__RealNumberNotation__ScientificNotation QTextStream__RealNumberNotation = 2
)
type QTextStream__FieldAlignment int
const (
QTextStream__FieldAlignment__AlignLeft QTextStream__FieldAlignment = 0
QTextStream__FieldAlignment__AlignRight QTextStream__FieldAlignment = 1
QTextStream__FieldAlignment__AlignCenter QTextStream__FieldAlignment = 2
QTextStream__FieldAlignment__AlignAccountingStyle QTextStream__FieldAlignment = 3
)
type QTextStream__Status int
const (
QTextStream__Status__Ok QTextStream__Status = 0
QTextStream__Status__ReadPastEnd QTextStream__Status = 1
QTextStream__Status__ReadCorruptData QTextStream__Status = 2
QTextStream__Status__WriteFailed QTextStream__Status = 3
)
type QTextStream__NumberFlag int
const (
QTextStream__NumberFlag__ShowBase QTextStream__NumberFlag = 1
QTextStream__NumberFlag__ForcePoint QTextStream__NumberFlag = 2
QTextStream__NumberFlag__ForceSign QTextStream__NumberFlag = 4
QTextStream__NumberFlag__UppercaseBase QTextStream__NumberFlag = 8
QTextStream__NumberFlag__UppercaseDigits QTextStream__NumberFlag = 16
)
type QTextStream struct {
h *C.QTextStream
}
func (this *QTextStream) cPointer() *C.QTextStream {
if this == nil {
return nil
}
return this.h
}
func newQTextStream(h *C.QTextStream) *QTextStream {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QTextStream{h: h}
}
func newQTextStream_U(h unsafe.Pointer) *QTextStream {
return newQTextStream((*C.QTextStream)(h))
}
// NewQTextStream constructs a new QTextStream object.
func NewQTextStream() *QTextStream {
ret := C.QTextStream_new()
return newQTextStream(ret)
}
// NewQTextStream2 constructs a new QTextStream object.
func NewQTextStream2(device *QIODevice) *QTextStream {
ret := C.QTextStream_new2(device.cPointer())
return newQTextStream(ret)
}
2024-08-29 07:01:51 +00:00
// NewQTextStream3 constructs a new QTextStream object.
func NewQTextStream3(array *QByteArray) *QTextStream {
ret := C.QTextStream_new3(array.cPointer())
return newQTextStream(ret)
}
// NewQTextStream4 constructs a new QTextStream object.
func NewQTextStream4(array *QByteArray) *QTextStream {
ret := C.QTextStream_new4(array.cPointer())
return newQTextStream(ret)
}
// NewQTextStream5 constructs a new QTextStream object.
func NewQTextStream5(array *QByteArray, openMode QIODevice__OpenModeFlag) *QTextStream {
ret := C.QTextStream_new5(array.cPointer(), (C.int)(openMode))
2024-08-29 07:01:51 +00:00
return newQTextStream(ret)
}
// NewQTextStream6 constructs a new QTextStream object.
func NewQTextStream6(array *QByteArray, openMode QIODevice__OpenModeFlag) *QTextStream {
ret := C.QTextStream_new6(array.cPointer(), (C.int)(openMode))
2024-08-29 07:01:51 +00:00
return newQTextStream(ret)
}
func (this *QTextStream) SetCodec(codec *QTextCodec) {
C.QTextStream_SetCodec(this.h, codec.cPointer())
}
func (this *QTextStream) SetCodecWithCodecName(codecName string) {
codecName_Cstring := C.CString(codecName)
defer C.free(unsafe.Pointer(codecName_Cstring))
C.QTextStream_SetCodecWithCodecName(this.h, codecName_Cstring)
}
func (this *QTextStream) Codec() *QTextCodec {
return newQTextCodec_U(unsafe.Pointer(C.QTextStream_Codec(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 newQIODevice_U(unsafe.Pointer(C.QTextStream_Device(this.h)))
}
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))
return _ret
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) Status() QTextStream__Status {
return (QTextStream__Status)(C.QTextStream_Status(this.h))
2024-08-29 07:01:51 +00:00
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) SetStatus(status QTextStream__Status) {
C.QTextStream_SetStatus(this.h, (C.int)(status))
2024-08-29 07:01:51 +00:00
}
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))
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))
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))
return _ret
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) SetFieldAlignment(alignment QTextStream__FieldAlignment) {
C.QTextStream_SetFieldAlignment(this.h, (C.int)(alignment))
2024-08-29 07:01:51 +00:00
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) FieldAlignment() QTextStream__FieldAlignment {
return (QTextStream__FieldAlignment)(C.QTextStream_FieldAlignment(this.h))
2024-08-29 07:01:51 +00:00
}
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))
2024-08-29 07:01:51 +00:00
}
func (this *QTextStream) NumberFlags() QTextStream__NumberFlag {
return (QTextStream__NumberFlag)(C.QTextStream_NumberFlags(this.h))
2024-08-29 07:01:51 +00:00
}
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))
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) SetRealNumberNotation(notation QTextStream__RealNumberNotation) {
C.QTextStream_SetRealNumberNotation(this.h, (C.int)(notation))
2024-08-29 07:01:51 +00:00
}
2024-09-04 06:54:22 +00:00
func (this *QTextStream) RealNumberNotation() QTextStream__RealNumberNotation {
return (QTextStream__RealNumberNotation)(C.QTextStream_RealNumberNotation(this.h))
2024-08-29 07:01:51 +00:00
}
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 newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRight(this.h, ch.cPointer())))
}
func (this *QTextStream) OperatorShiftRightWithCh(ch *byte) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithCh(this.h, (*C.char)(unsafe.Pointer(ch)))))
}
func (this *QTextStream) OperatorShiftRightWithShort(i *int16) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithShort(this.h, (*C.int16_t)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithUnsignedshort(i *uint16) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedshort(this.h, (*C.uint16_t)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithInt(i *int) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithInt(this.h, (*C.int)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithUnsignedint(i *uint) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedint(this.h, (*C.uint)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithLong(i *int64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithLong(this.h, (*C.long)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithUnsignedlong(i *uint64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithUnsignedlong(this.h, (*C.ulong)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithQlonglong(i *int64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQlonglong(this.h, (*C.longlong)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithQulonglong(i *uint64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQulonglong(this.h, (*C.ulonglong)(unsafe.Pointer(i)))))
}
func (this *QTextStream) OperatorShiftRightWithFloat(f *float32) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithFloat(this.h, (*C.float)(unsafe.Pointer(f)))))
}
func (this *QTextStream) OperatorShiftRightWithDouble(f *float64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithDouble(this.h, (*C.double)(unsafe.Pointer(f)))))
}
func (this *QTextStream) OperatorShiftRightWithQString(s string) *QTextStream {
s_ms := miqt_strdupg(s)
defer C.free(s_ms)
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithQString(this.h, (*C.struct_miqt_string)(s_ms))))
}
func (this *QTextStream) OperatorShiftRightWithArray(array *QByteArray) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithArray(this.h, array.cPointer())))
}
func (this *QTextStream) OperatorShiftRightWithChar(c string) *QTextStream {
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftRightWithChar(this.h, c_Cstring)))
}
func (this *QTextStream) OperatorShiftLeft(ch QChar) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeft(this.h, ch.cPointer())))
}
func (this *QTextStream) OperatorShiftLeftWithCh(ch byte) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithCh(this.h, (C.char)(ch))))
}
func (this *QTextStream) OperatorShiftLeftWithShort(i int16) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithShort(this.h, (C.int16_t)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedshort(i uint16) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedshort(this.h, (C.uint16_t)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithInt(i int) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithInt(this.h, (C.int)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedint(i uint) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedint(this.h, (C.uint)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithLong(i int64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithLong(this.h, (C.long)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithUnsignedlong(i uint64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithUnsignedlong(this.h, (C.ulong)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithQlonglong(i int64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQlonglong(this.h, (C.longlong)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithQulonglong(i uint64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQulonglong(this.h, (C.ulonglong)(i))))
}
func (this *QTextStream) OperatorShiftLeftWithFloat(f float32) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithFloat(this.h, (C.float)(f))))
}
func (this *QTextStream) OperatorShiftLeftWithDouble(f float64) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithDouble(this.h, (C.double)(f))))
}
func (this *QTextStream) OperatorShiftLeftWithQString(s string) *QTextStream {
s_ms := miqt_strdupg(s)
defer C.free(s_ms)
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithQString(this.h, (*C.struct_miqt_string)(s_ms))))
}
func (this *QTextStream) OperatorShiftLeftWithArray(array *QByteArray) *QTextStream {
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithArray(this.h, array.cPointer())))
}
func (this *QTextStream) OperatorShiftLeftWithChar(c string) *QTextStream {
c_Cstring := C.CString(c)
defer C.free(unsafe.Pointer(c_Cstring))
return newQTextStream_U(unsafe.Pointer(C.QTextStream_OperatorShiftLeftWithChar(this.h, c_Cstring)))
}
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))
return _ret
}
// Delete this object from C++ memory.
func (this *QTextStream) Delete() {
C.QTextStream_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 *QTextStream) GoGC() {
runtime.SetFinalizer(this, func(this *QTextStream) {
this.Delete()
runtime.KeepAlive(this.h)
})
}