miqt/qt/gen_qimagewriter.go

340 lines
10 KiB
Go

package qt
/*
#include "gen_qimagewriter.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"unsafe"
)
type QImageWriter__ImageWriterError int
const (
QImageWriter__ImageWriterError__UnknownError QImageWriter__ImageWriterError = 0
QImageWriter__ImageWriterError__DeviceError QImageWriter__ImageWriterError = 1
QImageWriter__ImageWriterError__UnsupportedFormatError QImageWriter__ImageWriterError = 2
QImageWriter__ImageWriterError__InvalidImageError QImageWriter__ImageWriterError = 3
)
type QImageWriter struct {
h *C.QImageWriter
}
func (this *QImageWriter) cPointer() *C.QImageWriter {
if this == nil {
return nil
}
return this.h
}
func newQImageWriter(h *C.QImageWriter) *QImageWriter {
if h == nil {
return nil
}
return &QImageWriter{h: h}
}
func newQImageWriter_U(h unsafe.Pointer) *QImageWriter {
return newQImageWriter((*C.QImageWriter)(h))
}
// NewQImageWriter constructs a new QImageWriter object.
func NewQImageWriter() *QImageWriter {
ret := C.QImageWriter_new()
return newQImageWriter(ret)
}
// NewQImageWriter2 constructs a new QImageWriter object.
func NewQImageWriter2(device *QIODevice, format *QByteArray) *QImageWriter {
ret := C.QImageWriter_new2(device.cPointer(), format.cPointer())
return newQImageWriter(ret)
}
// NewQImageWriter3 constructs a new QImageWriter object.
func NewQImageWriter3(fileName string) *QImageWriter {
fileName_ms := miqt_strdupg(fileName)
defer C.free(fileName_ms)
ret := C.QImageWriter_new3((*C.struct_miqt_string)(fileName_ms))
return newQImageWriter(ret)
}
// NewQImageWriter4 constructs a new QImageWriter object.
func NewQImageWriter4(fileName string, format *QByteArray) *QImageWriter {
fileName_ms := miqt_strdupg(fileName)
defer C.free(fileName_ms)
ret := C.QImageWriter_new4((*C.struct_miqt_string)(fileName_ms), format.cPointer())
return newQImageWriter(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))
return _ret
}
func QImageWriter_TrUtf8(sourceText string) string {
sourceText_Cstring := C.CString(sourceText)
defer C.free(unsafe.Pointer(sourceText_Cstring))
var _ms *C.struct_miqt_string = C.QImageWriter_TrUtf8(sourceText_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func (this *QImageWriter) SetFormat(format *QByteArray) {
C.QImageWriter_SetFormat(this.h, format.cPointer())
}
func (this *QImageWriter) Format() *QByteArray {
_ret := C.QImageWriter_Format(this.h)
_goptr := newQByteArray(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QImageWriter) SetDevice(device *QIODevice) {
C.QImageWriter_SetDevice(this.h, device.cPointer())
}
func (this *QImageWriter) Device() *QIODevice {
_ret := C.QImageWriter_Device(this.h)
return newQIODevice_U(unsafe.Pointer(_ret))
}
func (this *QImageWriter) SetFileName(fileName string) {
fileName_ms := miqt_strdupg(fileName)
defer C.free(fileName_ms)
C.QImageWriter_SetFileName(this.h, (*C.struct_miqt_string)(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))
return _ret
}
func (this *QImageWriter) SetQuality(quality int) {
C.QImageWriter_SetQuality(this.h, (C.int)(quality))
}
func (this *QImageWriter) Quality() int {
_ret := C.QImageWriter_Quality(this.h)
return (int)(_ret)
}
func (this *QImageWriter) SetCompression(compression int) {
C.QImageWriter_SetCompression(this.h, (C.int)(compression))
}
func (this *QImageWriter) Compression() int {
_ret := C.QImageWriter_Compression(this.h)
return (int)(_ret)
}
func (this *QImageWriter) SetGamma(gamma float32) {
C.QImageWriter_SetGamma(this.h, (C.float)(gamma))
}
func (this *QImageWriter) Gamma() float32 {
_ret := C.QImageWriter_Gamma(this.h)
return (float32)(_ret)
}
func (this *QImageWriter) SetSubType(typeVal *QByteArray) {
C.QImageWriter_SetSubType(this.h, typeVal.cPointer())
}
func (this *QImageWriter) SubType() *QByteArray {
_ret := C.QImageWriter_SubType(this.h)
_goptr := newQByteArray(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QImageWriter) SupportedSubTypes() []QByteArray {
var _ma *C.struct_miqt_array = C.QImageWriter_SupportedSubTypes(this.h)
_ret := make([]QByteArray, int(_ma.len))
_outCast := (*[0xffff]*C.QByteArray)(unsafe.Pointer(_ma.data)) // mrs jackson
for i := 0; i < int(_ma.len); i++ {
_ret[i] = *newQByteArray(_outCast[i])
}
C.free(unsafe.Pointer(_ma))
return _ret
}
func (this *QImageWriter) SetOptimizedWrite(optimize bool) {
C.QImageWriter_SetOptimizedWrite(this.h, (C.bool)(optimize))
}
func (this *QImageWriter) OptimizedWrite() bool {
_ret := C.QImageWriter_OptimizedWrite(this.h)
return (bool)(_ret)
}
func (this *QImageWriter) SetProgressiveScanWrite(progressive bool) {
C.QImageWriter_SetProgressiveScanWrite(this.h, (C.bool)(progressive))
}
func (this *QImageWriter) ProgressiveScanWrite() bool {
_ret := C.QImageWriter_ProgressiveScanWrite(this.h)
return (bool)(_ret)
}
func (this *QImageWriter) Transformation() int {
_ret := C.QImageWriter_Transformation(this.h)
return (int)(_ret)
}
func (this *QImageWriter) SetTransformation(orientation int) {
C.QImageWriter_SetTransformation(this.h, (C.int)(orientation))
}
func (this *QImageWriter) SetDescription(description string) {
description_ms := miqt_strdupg(description)
defer C.free(description_ms)
C.QImageWriter_SetDescription(this.h, (*C.struct_miqt_string)(description_ms))
}
func (this *QImageWriter) Description() string {
var _ms *C.struct_miqt_string = C.QImageWriter_Description(this.h)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func (this *QImageWriter) SetText(key string, text string) {
key_ms := miqt_strdupg(key)
defer C.free(key_ms)
text_ms := miqt_strdupg(text)
defer C.free(text_ms)
C.QImageWriter_SetText(this.h, (*C.struct_miqt_string)(key_ms), (*C.struct_miqt_string)(text_ms))
}
func (this *QImageWriter) CanWrite() bool {
_ret := C.QImageWriter_CanWrite(this.h)
return (bool)(_ret)
}
func (this *QImageWriter) Write(image *QImage) bool {
_ret := C.QImageWriter_Write(this.h, image.cPointer())
return (bool)(_ret)
}
func (this *QImageWriter) Error() QImageWriter__ImageWriterError {
_ret := C.QImageWriter_Error(this.h)
return (QImageWriter__ImageWriterError)(_ret)
}
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))
return _ret
}
func (this *QImageWriter) SupportsOption(option QImageIOHandler__ImageOption) bool {
_ret := C.QImageWriter_SupportsOption(this.h, (C.uintptr_t)(option))
return (bool)(_ret)
}
func QImageWriter_SupportedImageFormats() []QByteArray {
var _ma *C.struct_miqt_array = C.QImageWriter_SupportedImageFormats()
_ret := make([]QByteArray, int(_ma.len))
_outCast := (*[0xffff]*C.QByteArray)(unsafe.Pointer(_ma.data)) // mrs jackson
for i := 0; i < int(_ma.len); i++ {
_ret[i] = *newQByteArray(_outCast[i])
}
C.free(unsafe.Pointer(_ma))
return _ret
}
func QImageWriter_SupportedMimeTypes() []QByteArray {
var _ma *C.struct_miqt_array = C.QImageWriter_SupportedMimeTypes()
_ret := make([]QByteArray, int(_ma.len))
_outCast := (*[0xffff]*C.QByteArray)(unsafe.Pointer(_ma.data)) // mrs jackson
for i := 0; i < int(_ma.len); i++ {
_ret[i] = *newQByteArray(_outCast[i])
}
C.free(unsafe.Pointer(_ma))
return _ret
}
func QImageWriter_ImageFormatsForMimeType(mimeType *QByteArray) []QByteArray {
var _ma *C.struct_miqt_array = C.QImageWriter_ImageFormatsForMimeType(mimeType.cPointer())
_ret := make([]QByteArray, int(_ma.len))
_outCast := (*[0xffff]*C.QByteArray)(unsafe.Pointer(_ma.data)) // mrs jackson
for i := 0; i < int(_ma.len); i++ {
_ret[i] = *newQByteArray(_outCast[i])
}
C.free(unsafe.Pointer(_ma))
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))
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))
return _ret
}
func QImageWriter_TrUtf82(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_TrUtf82(sourceText_Cstring, disambiguation_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QImageWriter_TrUtf83(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_TrUtf83(sourceText_Cstring, disambiguation_Cstring, (C.int)(n))
_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 *QImageWriter) Delete() {
C.QImageWriter_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 *QImageWriter) GoGC() {
runtime.SetFinalizer(this, func(this *QImageWriter) {
this.Delete()
runtime.KeepAlive(this.h)
})
}