miqt/qt6/gen_qimagewriter.go

340 lines
11 KiB
Go

package qt6
/*
#include "gen_qimagewriter.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QImageWriter__ImageWriterError int
const (
QImageWriter__UnknownError QImageWriter__ImageWriterError = 0
QImageWriter__DeviceError QImageWriter__ImageWriterError = 1
QImageWriter__UnsupportedFormatError QImageWriter__ImageWriterError = 2
QImageWriter__InvalidImageError QImageWriter__ImageWriterError = 3
)
type QImageWriter struct {
h *C.QImageWriter
isSubclass bool
}
func (this *QImageWriter) cPointer() *C.QImageWriter {
if this == nil {
return nil
}
return this.h
}
func (this *QImageWriter) UnsafePointer() unsafe.Pointer {
if this == nil {
return nil
}
return unsafe.Pointer(this.h)
}
// newQImageWriter constructs the type using only CGO pointers.
func newQImageWriter(h *C.QImageWriter) *QImageWriter {
if h == nil {
return nil
}
return &QImageWriter{h: h}
}
// UnsafeNewQImageWriter constructs the type using only unsafe pointers.
func UnsafeNewQImageWriter(h unsafe.Pointer) *QImageWriter {
if h == nil {
return nil
}
return &QImageWriter{h: (*C.QImageWriter)(h)}
}
// NewQImageWriter constructs a new QImageWriter object.
func NewQImageWriter() *QImageWriter {
var outptr_QImageWriter *C.QImageWriter = nil
C.QImageWriter_new(&outptr_QImageWriter)
ret := newQImageWriter(outptr_QImageWriter)
ret.isSubclass = true
return ret
}
// NewQImageWriter2 constructs a new QImageWriter object.
func NewQImageWriter2(device *QIODevice, format []byte) *QImageWriter {
format_alias := C.struct_miqt_string{}
format_alias.data = (*C.char)(unsafe.Pointer(&format[0]))
format_alias.len = C.size_t(len(format))
var outptr_QImageWriter *C.QImageWriter = nil
C.QImageWriter_new2(device.cPointer(), format_alias, &outptr_QImageWriter)
ret := newQImageWriter(outptr_QImageWriter)
ret.isSubclass = true
return ret
}
// NewQImageWriter3 constructs a new QImageWriter object.
func NewQImageWriter3(fileName string) *QImageWriter {
fileName_ms := C.struct_miqt_string{}
fileName_ms.data = C.CString(fileName)
fileName_ms.len = C.size_t(len(fileName))
defer C.free(unsafe.Pointer(fileName_ms.data))
var outptr_QImageWriter *C.QImageWriter = nil
C.QImageWriter_new3(fileName_ms, &outptr_QImageWriter)
ret := newQImageWriter(outptr_QImageWriter)
ret.isSubclass = true
return ret
}
// NewQImageWriter4 constructs a new QImageWriter object.
func NewQImageWriter4(fileName string, format []byte) *QImageWriter {
fileName_ms := C.struct_miqt_string{}
fileName_ms.data = C.CString(fileName)
fileName_ms.len = C.size_t(len(fileName))
defer C.free(unsafe.Pointer(fileName_ms.data))
format_alias := C.struct_miqt_string{}
format_alias.data = (*C.char)(unsafe.Pointer(&format[0]))
format_alias.len = C.size_t(len(format))
var outptr_QImageWriter *C.QImageWriter = nil
C.QImageWriter_new4(fileName_ms, format_alias, &outptr_QImageWriter)
ret := newQImageWriter(outptr_QImageWriter)
ret.isSubclass = true
return ret
}
func QImageWriter_Tr(sourceText string) string {
sourceText_Cstring := C.CString(sourceText)
defer C.free(unsafe.Pointer(sourceText_Cstring))
var _ms C.struct_miqt_string = C.QImageWriter_Tr(sourceText_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QImageWriter) SetFormat(format []byte) {
format_alias := C.struct_miqt_string{}
format_alias.data = (*C.char)(unsafe.Pointer(&format[0]))
format_alias.len = C.size_t(len(format))
C.QImageWriter_SetFormat(this.h, format_alias)
}
func (this *QImageWriter) Format() []byte {
var _bytearray C.struct_miqt_string = C.QImageWriter_Format(this.h)
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
C.free(unsafe.Pointer(_bytearray.data))
return _ret
}
func (this *QImageWriter) SetDevice(device *QIODevice) {
C.QImageWriter_SetDevice(this.h, device.cPointer())
}
func (this *QImageWriter) Device() *QIODevice {
return UnsafeNewQIODevice(unsafe.Pointer(C.QImageWriter_Device(this.h)), nil, nil)
}
func (this *QImageWriter) SetFileName(fileName string) {
fileName_ms := C.struct_miqt_string{}
fileName_ms.data = C.CString(fileName)
fileName_ms.len = C.size_t(len(fileName))
defer C.free(unsafe.Pointer(fileName_ms.data))
C.QImageWriter_SetFileName(this.h, fileName_ms)
}
func (this *QImageWriter) FileName() string {
var _ms C.struct_miqt_string = C.QImageWriter_FileName(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QImageWriter) SetQuality(quality int) {
C.QImageWriter_SetQuality(this.h, (C.int)(quality))
}
func (this *QImageWriter) Quality() int {
return (int)(C.QImageWriter_Quality(this.h))
}
func (this *QImageWriter) SetCompression(compression int) {
C.QImageWriter_SetCompression(this.h, (C.int)(compression))
}
func (this *QImageWriter) Compression() int {
return (int)(C.QImageWriter_Compression(this.h))
}
func (this *QImageWriter) SetSubType(typeVal []byte) {
typeVal_alias := C.struct_miqt_string{}
typeVal_alias.data = (*C.char)(unsafe.Pointer(&typeVal[0]))
typeVal_alias.len = C.size_t(len(typeVal))
C.QImageWriter_SetSubType(this.h, typeVal_alias)
}
func (this *QImageWriter) SubType() []byte {
var _bytearray C.struct_miqt_string = C.QImageWriter_SubType(this.h)
_ret := C.GoBytes(unsafe.Pointer(_bytearray.data), C.int(int64(_bytearray.len)))
C.free(unsafe.Pointer(_bytearray.data))
return _ret
}
func (this *QImageWriter) SupportedSubTypes() [][]byte {
var _ma C.struct_miqt_array = C.QImageWriter_SupportedSubTypes(this.h)
_ret := make([][]byte, int(_ma.len))
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
var _lv_bytearray C.struct_miqt_string = _outCast[i]
_lv_ret := C.GoBytes(unsafe.Pointer(_lv_bytearray.data), C.int(int64(_lv_bytearray.len)))
C.free(unsafe.Pointer(_lv_bytearray.data))
_ret[i] = _lv_ret
}
return _ret
}
func (this *QImageWriter) SetOptimizedWrite(optimize bool) {
C.QImageWriter_SetOptimizedWrite(this.h, (C.bool)(optimize))
}
func (this *QImageWriter) OptimizedWrite() bool {
return (bool)(C.QImageWriter_OptimizedWrite(this.h))
}
func (this *QImageWriter) SetProgressiveScanWrite(progressive bool) {
C.QImageWriter_SetProgressiveScanWrite(this.h, (C.bool)(progressive))
}
func (this *QImageWriter) ProgressiveScanWrite() bool {
return (bool)(C.QImageWriter_ProgressiveScanWrite(this.h))
}
func (this *QImageWriter) Transformation() QImageIOHandler__Transformation {
return (QImageIOHandler__Transformation)(C.QImageWriter_Transformation(this.h))
}
func (this *QImageWriter) SetTransformation(orientation QImageIOHandler__Transformation) {
C.QImageWriter_SetTransformation(this.h, (C.int)(orientation))
}
func (this *QImageWriter) SetText(key string, text string) {
key_ms := C.struct_miqt_string{}
key_ms.data = C.CString(key)
key_ms.len = C.size_t(len(key))
defer C.free(unsafe.Pointer(key_ms.data))
text_ms := C.struct_miqt_string{}
text_ms.data = C.CString(text)
text_ms.len = C.size_t(len(text))
defer C.free(unsafe.Pointer(text_ms.data))
C.QImageWriter_SetText(this.h, key_ms, text_ms)
}
func (this *QImageWriter) CanWrite() bool {
return (bool)(C.QImageWriter_CanWrite(this.h))
}
func (this *QImageWriter) Write(image *QImage) bool {
return (bool)(C.QImageWriter_Write(this.h, image.cPointer()))
}
func (this *QImageWriter) Error() QImageWriter__ImageWriterError {
return (QImageWriter__ImageWriterError)(C.QImageWriter_Error(this.h))
}
func (this *QImageWriter) ErrorString() string {
var _ms C.struct_miqt_string = C.QImageWriter_ErrorString(this.h)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func (this *QImageWriter) SupportsOption(option QImageIOHandler__ImageOption) bool {
return (bool)(C.QImageWriter_SupportsOption(this.h, (C.int)(option)))
}
func QImageWriter_SupportedImageFormats() [][]byte {
var _ma C.struct_miqt_array = C.QImageWriter_SupportedImageFormats()
_ret := make([][]byte, int(_ma.len))
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
var _lv_bytearray C.struct_miqt_string = _outCast[i]
_lv_ret := C.GoBytes(unsafe.Pointer(_lv_bytearray.data), C.int(int64(_lv_bytearray.len)))
C.free(unsafe.Pointer(_lv_bytearray.data))
_ret[i] = _lv_ret
}
return _ret
}
func QImageWriter_SupportedMimeTypes() [][]byte {
var _ma C.struct_miqt_array = C.QImageWriter_SupportedMimeTypes()
_ret := make([][]byte, int(_ma.len))
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
var _lv_bytearray C.struct_miqt_string = _outCast[i]
_lv_ret := C.GoBytes(unsafe.Pointer(_lv_bytearray.data), C.int(int64(_lv_bytearray.len)))
C.free(unsafe.Pointer(_lv_bytearray.data))
_ret[i] = _lv_ret
}
return _ret
}
func QImageWriter_ImageFormatsForMimeType(mimeType []byte) [][]byte {
mimeType_alias := C.struct_miqt_string{}
mimeType_alias.data = (*C.char)(unsafe.Pointer(&mimeType[0]))
mimeType_alias.len = C.size_t(len(mimeType))
var _ma C.struct_miqt_array = C.QImageWriter_ImageFormatsForMimeType(mimeType_alias)
_ret := make([][]byte, int(_ma.len))
_outCast := (*[0xffff]C.struct_miqt_string)(unsafe.Pointer(_ma.data)) // hey ya
for i := 0; i < int(_ma.len); i++ {
var _lv_bytearray C.struct_miqt_string = _outCast[i]
_lv_ret := C.GoBytes(unsafe.Pointer(_lv_bytearray.data), C.int(int64(_lv_bytearray.len)))
C.free(unsafe.Pointer(_lv_bytearray.data))
_ret[i] = _lv_ret
}
return _ret
}
func QImageWriter_Tr2(sourceText string, disambiguation string) string {
sourceText_Cstring := C.CString(sourceText)
defer C.free(unsafe.Pointer(sourceText_Cstring))
disambiguation_Cstring := C.CString(disambiguation)
defer C.free(unsafe.Pointer(disambiguation_Cstring))
var _ms C.struct_miqt_string = C.QImageWriter_Tr2(sourceText_Cstring, disambiguation_Cstring)
_ret := C.GoStringN(_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms.data))
return _ret
}
func QImageWriter_Tr3(sourceText string, disambiguation string, n int) string {
sourceText_Cstring := C.CString(sourceText)
defer C.free(unsafe.Pointer(sourceText_Cstring))
disambiguation_Cstring := C.CString(disambiguation)
defer C.free(unsafe.Pointer(disambiguation_Cstring))
var _ms C.struct_miqt_string = C.QImageWriter_Tr3(sourceText_Cstring, disambiguation_Cstring, (C.int)(n))
_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 *QImageWriter) Delete() {
C.QImageWriter_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 *QImageWriter) GoGC() {
runtime.SetFinalizer(this, func(this *QImageWriter) {
this.Delete()
runtime.KeepAlive(this.h)
})
}