package qt6 /* #include "gen_qtemporaryfile.h" #include */ import "C" import ( "runtime" "unsafe" ) type QTemporaryFile struct { h *C.QTemporaryFile *QFile } func (this *QTemporaryFile) cPointer() *C.QTemporaryFile { if this == nil { return nil } return this.h } func (this *QTemporaryFile) UnsafePointer() unsafe.Pointer { if this == nil { return nil } return unsafe.Pointer(this.h) } func newQTemporaryFile(h *C.QTemporaryFile) *QTemporaryFile { if h == nil { return nil } return &QTemporaryFile{h: h, QFile: UnsafeNewQFile(unsafe.Pointer(h))} } func UnsafeNewQTemporaryFile(h unsafe.Pointer) *QTemporaryFile { return newQTemporaryFile((*C.QTemporaryFile)(h)) } // NewQTemporaryFile constructs a new QTemporaryFile object. func NewQTemporaryFile() *QTemporaryFile { ret := C.QTemporaryFile_new() return newQTemporaryFile(ret) } // NewQTemporaryFile2 constructs a new QTemporaryFile object. func NewQTemporaryFile2(templateName string) *QTemporaryFile { templateName_ms := C.struct_miqt_string{} templateName_ms.data = C.CString(templateName) templateName_ms.len = C.size_t(len(templateName)) defer C.free(unsafe.Pointer(templateName_ms.data)) ret := C.QTemporaryFile_new2(templateName_ms) return newQTemporaryFile(ret) } // NewQTemporaryFile3 constructs a new QTemporaryFile object. func NewQTemporaryFile3(parent *QObject) *QTemporaryFile { ret := C.QTemporaryFile_new3(parent.cPointer()) return newQTemporaryFile(ret) } // NewQTemporaryFile4 constructs a new QTemporaryFile object. func NewQTemporaryFile4(templateName string, parent *QObject) *QTemporaryFile { templateName_ms := C.struct_miqt_string{} templateName_ms.data = C.CString(templateName) templateName_ms.len = C.size_t(len(templateName)) defer C.free(unsafe.Pointer(templateName_ms.data)) ret := C.QTemporaryFile_new4(templateName_ms, parent.cPointer()) return newQTemporaryFile(ret) } func (this *QTemporaryFile) MetaObject() *QMetaObject { return UnsafeNewQMetaObject(unsafe.Pointer(C.QTemporaryFile_MetaObject(this.h))) } func (this *QTemporaryFile) Metacast(param1 string) unsafe.Pointer { param1_Cstring := C.CString(param1) defer C.free(unsafe.Pointer(param1_Cstring)) return (unsafe.Pointer)(C.QTemporaryFile_Metacast(this.h, param1_Cstring)) } func QTemporaryFile_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _ms C.struct_miqt_string = C.QTemporaryFile_Tr(s_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QTemporaryFile) AutoRemove() bool { return (bool)(C.QTemporaryFile_AutoRemove(this.h)) } func (this *QTemporaryFile) SetAutoRemove(b bool) { C.QTemporaryFile_SetAutoRemove(this.h, (C.bool)(b)) } func (this *QTemporaryFile) Open() bool { return (bool)(C.QTemporaryFile_Open(this.h)) } func (this *QTemporaryFile) FileName() string { var _ms C.struct_miqt_string = C.QTemporaryFile_FileName(this.h) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QTemporaryFile) FileTemplate() string { var _ms C.struct_miqt_string = C.QTemporaryFile_FileTemplate(this.h) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func (this *QTemporaryFile) SetFileTemplate(name string) { name_ms := C.struct_miqt_string{} name_ms.data = C.CString(name) name_ms.len = C.size_t(len(name)) defer C.free(unsafe.Pointer(name_ms.data)) C.QTemporaryFile_SetFileTemplate(this.h, name_ms) } func (this *QTemporaryFile) Rename(newName string) bool { newName_ms := C.struct_miqt_string{} newName_ms.data = C.CString(newName) newName_ms.len = C.size_t(len(newName)) defer C.free(unsafe.Pointer(newName_ms.data)) return (bool)(C.QTemporaryFile_Rename(this.h, newName_ms)) } func QTemporaryFile_CreateNativeFile(fileName string) *QTemporaryFile { 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)) return UnsafeNewQTemporaryFile(unsafe.Pointer(C.QTemporaryFile_CreateNativeFile(fileName_ms))) } func QTemporaryFile_CreateNativeFileWithFile(file *QFile) *QTemporaryFile { return UnsafeNewQTemporaryFile(unsafe.Pointer(C.QTemporaryFile_CreateNativeFileWithFile(file.cPointer()))) } func QTemporaryFile_Tr2(s string, c string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) c_Cstring := C.CString(c) defer C.free(unsafe.Pointer(c_Cstring)) var _ms C.struct_miqt_string = C.QTemporaryFile_Tr2(s_Cstring, c_Cstring) _ret := C.GoStringN(_ms.data, C.int(int64(_ms.len))) C.free(unsafe.Pointer(_ms.data)) return _ret } func QTemporaryFile_Tr3(s string, c string, n int) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) c_Cstring := C.CString(c) defer C.free(unsafe.Pointer(c_Cstring)) var _ms C.struct_miqt_string = C.QTemporaryFile_Tr3(s_Cstring, c_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 *QTemporaryFile) Delete() { C.QTemporaryFile_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 *QTemporaryFile) GoGC() { runtime.SetFinalizer(this, func(this *QTemporaryFile) { this.Delete() runtime.KeepAlive(this.h) }) }