mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
131 lines
4.0 KiB
Go
131 lines
4.0 KiB
Go
package qt
|
|
|
|
/*
|
|
|
|
#include "gen_qtextdocumentfragment.h"
|
|
#include <stdlib.h>
|
|
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"runtime"
|
|
"unsafe"
|
|
)
|
|
|
|
type QTextDocumentFragment struct {
|
|
h *C.QTextDocumentFragment
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) cPointer() *C.QTextDocumentFragment {
|
|
if this == nil {
|
|
return nil
|
|
}
|
|
return this.h
|
|
}
|
|
|
|
func newQTextDocumentFragment(h *C.QTextDocumentFragment) *QTextDocumentFragment {
|
|
if h == nil {
|
|
return nil
|
|
}
|
|
return &QTextDocumentFragment{h: h}
|
|
}
|
|
|
|
func newQTextDocumentFragment_U(h unsafe.Pointer) *QTextDocumentFragment {
|
|
return newQTextDocumentFragment((*C.QTextDocumentFragment)(h))
|
|
}
|
|
|
|
// NewQTextDocumentFragment constructs a new QTextDocumentFragment object.
|
|
func NewQTextDocumentFragment() *QTextDocumentFragment {
|
|
ret := C.QTextDocumentFragment_new()
|
|
return newQTextDocumentFragment(ret)
|
|
}
|
|
|
|
// NewQTextDocumentFragment2 constructs a new QTextDocumentFragment object.
|
|
func NewQTextDocumentFragment2(document *QTextDocument) *QTextDocumentFragment {
|
|
ret := C.QTextDocumentFragment_new2(document.cPointer())
|
|
return newQTextDocumentFragment(ret)
|
|
}
|
|
|
|
// NewQTextDocumentFragment3 constructs a new QTextDocumentFragment object.
|
|
func NewQTextDocumentFragment3(rangeVal *QTextCursor) *QTextDocumentFragment {
|
|
ret := C.QTextDocumentFragment_new3(rangeVal.cPointer())
|
|
return newQTextDocumentFragment(ret)
|
|
}
|
|
|
|
// NewQTextDocumentFragment4 constructs a new QTextDocumentFragment object.
|
|
func NewQTextDocumentFragment4(rhs *QTextDocumentFragment) *QTextDocumentFragment {
|
|
ret := C.QTextDocumentFragment_new4(rhs.cPointer())
|
|
return newQTextDocumentFragment(ret)
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) OperatorAssign(rhs *QTextDocumentFragment) {
|
|
C.QTextDocumentFragment_OperatorAssign(this.h, rhs.cPointer())
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) IsEmpty() bool {
|
|
return (bool)(C.QTextDocumentFragment_IsEmpty(this.h))
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) ToPlainText() string {
|
|
var _ms *C.struct_miqt_string = C.QTextDocumentFragment_ToPlainText(this.h)
|
|
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
|
|
C.free(unsafe.Pointer(_ms))
|
|
return _ret
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) ToHtml() string {
|
|
var _ms *C.struct_miqt_string = C.QTextDocumentFragment_ToHtml(this.h)
|
|
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
|
|
C.free(unsafe.Pointer(_ms))
|
|
return _ret
|
|
}
|
|
|
|
func QTextDocumentFragment_FromPlainText(plainText string) *QTextDocumentFragment {
|
|
plainText_ms := miqt_strdupg(plainText)
|
|
defer C.free(plainText_ms)
|
|
_ret := C.QTextDocumentFragment_FromPlainText((*C.struct_miqt_string)(plainText_ms))
|
|
_goptr := newQTextDocumentFragment(_ret)
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
return _goptr
|
|
}
|
|
|
|
func QTextDocumentFragment_FromHtml(html string) *QTextDocumentFragment {
|
|
html_ms := miqt_strdupg(html)
|
|
defer C.free(html_ms)
|
|
_ret := C.QTextDocumentFragment_FromHtml((*C.struct_miqt_string)(html_ms))
|
|
_goptr := newQTextDocumentFragment(_ret)
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
return _goptr
|
|
}
|
|
|
|
func QTextDocumentFragment_FromHtml2(html string, resourceProvider *QTextDocument) *QTextDocumentFragment {
|
|
html_ms := miqt_strdupg(html)
|
|
defer C.free(html_ms)
|
|
_ret := C.QTextDocumentFragment_FromHtml2((*C.struct_miqt_string)(html_ms), resourceProvider.cPointer())
|
|
_goptr := newQTextDocumentFragment(_ret)
|
|
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
|
|
return _goptr
|
|
}
|
|
|
|
func (this *QTextDocumentFragment) ToHtml1(encoding *QByteArray) string {
|
|
var _ms *C.struct_miqt_string = C.QTextDocumentFragment_ToHtml1(this.h, encoding.cPointer())
|
|
_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 *QTextDocumentFragment) Delete() {
|
|
C.QTextDocumentFragment_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 *QTextDocumentFragment) GoGC() {
|
|
runtime.SetFinalizer(this, func(this *QTextDocumentFragment) {
|
|
this.Delete()
|
|
runtime.KeepAlive(this.h)
|
|
})
|
|
}
|