package qt /* #cgo CFLAGS: -fPIC #cgo pkg-config: Qt5Widgets #include "gen_qtextcursor.h" #include */ import "C" import ( "runtime" "unsafe" ) type QTextCursor struct { h *C.QTextCursor } func (this *QTextCursor) cPointer() *C.QTextCursor { if this == nil { return nil } return this.h } func newQTextCursor(h *C.QTextCursor) *QTextCursor { return &QTextCursor{h: h} } func newQTextCursor_U(h unsafe.Pointer) *QTextCursor { return newQTextCursor((*C.QTextCursor)(h)) } // NewQTextCursor constructs a new QTextCursor object. func NewQTextCursor() *QTextCursor { ret := C.QTextCursor_new() return newQTextCursor(ret) } // NewQTextCursor2 constructs a new QTextCursor object. func NewQTextCursor2(document *QTextDocument) *QTextCursor { ret := C.QTextCursor_new2(document.cPointer()) return newQTextCursor(ret) } // NewQTextCursor3 constructs a new QTextCursor object. func NewQTextCursor3(frame *QTextFrame) *QTextCursor { ret := C.QTextCursor_new3(frame.cPointer()) return newQTextCursor(ret) } // NewQTextCursor4 constructs a new QTextCursor object. func NewQTextCursor4(block *QTextBlock) *QTextCursor { ret := C.QTextCursor_new4(block.cPointer()) return newQTextCursor(ret) } // NewQTextCursor5 constructs a new QTextCursor object. func NewQTextCursor5(cursor *QTextCursor) *QTextCursor { ret := C.QTextCursor_new5(cursor.cPointer()) return newQTextCursor(ret) } func (this *QTextCursor) OperatorAssign(other *QTextCursor) { C.QTextCursor_OperatorAssign(this.h, other.cPointer()) } func (this *QTextCursor) Swap(other *QTextCursor) { C.QTextCursor_Swap(this.h, other.cPointer()) } func (this *QTextCursor) IsNull() bool { ret := C.QTextCursor_IsNull(this.h) return (bool)(ret) } func (this *QTextCursor) Position() int { ret := C.QTextCursor_Position(this.h) return (int)(ret) } func (this *QTextCursor) PositionInBlock() int { ret := C.QTextCursor_PositionInBlock(this.h) return (int)(ret) } func (this *QTextCursor) Anchor() int { ret := C.QTextCursor_Anchor(this.h) return (int)(ret) } func (this *QTextCursor) InsertText(text string) { text_Cstring := C.CString(text) defer C.free(unsafe.Pointer(text_Cstring)) C.QTextCursor_InsertText(this.h, text_Cstring, C.ulong(len(text))) } func (this *QTextCursor) InsertText2(text string, format *QTextCharFormat) { text_Cstring := C.CString(text) defer C.free(unsafe.Pointer(text_Cstring)) C.QTextCursor_InsertText2(this.h, text_Cstring, C.ulong(len(text)), format.cPointer()) } func (this *QTextCursor) VisualNavigation() bool { ret := C.QTextCursor_VisualNavigation(this.h) return (bool)(ret) } func (this *QTextCursor) SetVisualNavigation(b bool) { C.QTextCursor_SetVisualNavigation(this.h, (C.bool)(b)) } func (this *QTextCursor) SetVerticalMovementX(x int) { C.QTextCursor_SetVerticalMovementX(this.h, (C.int)(x)) } func (this *QTextCursor) VerticalMovementX() int { ret := C.QTextCursor_VerticalMovementX(this.h) return (int)(ret) } func (this *QTextCursor) SetKeepPositionOnInsert(b bool) { C.QTextCursor_SetKeepPositionOnInsert(this.h, (C.bool)(b)) } func (this *QTextCursor) KeepPositionOnInsert() bool { ret := C.QTextCursor_KeepPositionOnInsert(this.h) return (bool)(ret) } func (this *QTextCursor) DeleteChar() { C.QTextCursor_DeleteChar(this.h) } func (this *QTextCursor) DeletePreviousChar() { C.QTextCursor_DeletePreviousChar(this.h) } func (this *QTextCursor) HasSelection() bool { ret := C.QTextCursor_HasSelection(this.h) return (bool)(ret) } func (this *QTextCursor) HasComplexSelection() bool { ret := C.QTextCursor_HasComplexSelection(this.h) return (bool)(ret) } func (this *QTextCursor) RemoveSelectedText() { C.QTextCursor_RemoveSelectedText(this.h) } func (this *QTextCursor) ClearSelection() { C.QTextCursor_ClearSelection(this.h) } func (this *QTextCursor) SelectionStart() int { ret := C.QTextCursor_SelectionStart(this.h) return (int)(ret) } func (this *QTextCursor) SelectionEnd() int { ret := C.QTextCursor_SelectionEnd(this.h) return (int)(ret) } func (this *QTextCursor) SelectedText() string { var _out *C.char = nil var _out_Strlen C.int = 0 C.QTextCursor_SelectedText(this.h, &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func (this *QTextCursor) Selection() *QTextDocumentFragment { ret := C.QTextCursor_Selection(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQTextDocumentFragment(ret) runtime.SetFinalizer(ret1, func(ret2 *QTextDocumentFragment) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QTextCursor) SelectedTableCells(firstRow *int, numRows *int, firstColumn *int, numColumns *int) { C.QTextCursor_SelectedTableCells(this.h, (*C.int)(unsafe.Pointer(firstRow)), (*C.int)(unsafe.Pointer(numRows)), (*C.int)(unsafe.Pointer(firstColumn)), (*C.int)(unsafe.Pointer(numColumns))) } func (this *QTextCursor) Block() *QTextBlock { ret := C.QTextCursor_Block(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQTextBlock(ret) runtime.SetFinalizer(ret1, func(ret2 *QTextBlock) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QTextCursor) CharFormat() *QTextCharFormat { ret := C.QTextCursor_CharFormat(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQTextCharFormat(ret) runtime.SetFinalizer(ret1, func(ret2 *QTextCharFormat) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QTextCursor) SetCharFormat(format *QTextCharFormat) { C.QTextCursor_SetCharFormat(this.h, format.cPointer()) } func (this *QTextCursor) MergeCharFormat(modifier *QTextCharFormat) { C.QTextCursor_MergeCharFormat(this.h, modifier.cPointer()) } func (this *QTextCursor) BlockFormat() *QTextBlockFormat { ret := C.QTextCursor_BlockFormat(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQTextBlockFormat(ret) runtime.SetFinalizer(ret1, func(ret2 *QTextBlockFormat) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QTextCursor) SetBlockFormat(format *QTextBlockFormat) { C.QTextCursor_SetBlockFormat(this.h, format.cPointer()) } func (this *QTextCursor) MergeBlockFormat(modifier *QTextBlockFormat) { C.QTextCursor_MergeBlockFormat(this.h, modifier.cPointer()) } func (this *QTextCursor) BlockCharFormat() *QTextCharFormat { ret := C.QTextCursor_BlockCharFormat(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQTextCharFormat(ret) runtime.SetFinalizer(ret1, func(ret2 *QTextCharFormat) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QTextCursor) SetBlockCharFormat(format *QTextCharFormat) { C.QTextCursor_SetBlockCharFormat(this.h, format.cPointer()) } func (this *QTextCursor) MergeBlockCharFormat(modifier *QTextCharFormat) { C.QTextCursor_MergeBlockCharFormat(this.h, modifier.cPointer()) } func (this *QTextCursor) AtBlockStart() bool { ret := C.QTextCursor_AtBlockStart(this.h) return (bool)(ret) } func (this *QTextCursor) AtBlockEnd() bool { ret := C.QTextCursor_AtBlockEnd(this.h) return (bool)(ret) } func (this *QTextCursor) AtStart() bool { ret := C.QTextCursor_AtStart(this.h) return (bool)(ret) } func (this *QTextCursor) AtEnd() bool { ret := C.QTextCursor_AtEnd(this.h) return (bool)(ret) } func (this *QTextCursor) InsertBlock() { C.QTextCursor_InsertBlock(this.h) } func (this *QTextCursor) InsertBlockWithFormat(format *QTextBlockFormat) { C.QTextCursor_InsertBlockWithFormat(this.h, format.cPointer()) } func (this *QTextCursor) InsertBlock2(format *QTextBlockFormat, charFormat *QTextCharFormat) { C.QTextCursor_InsertBlock2(this.h, format.cPointer(), charFormat.cPointer()) } func (this *QTextCursor) InsertList(format *QTextListFormat) *QTextList { ret := C.QTextCursor_InsertList(this.h, format.cPointer()) return newQTextList_U(unsafe.Pointer(ret)) } func (this *QTextCursor) CreateList(format *QTextListFormat) *QTextList { ret := C.QTextCursor_CreateList(this.h, format.cPointer()) return newQTextList_U(unsafe.Pointer(ret)) } func (this *QTextCursor) CurrentList() *QTextList { ret := C.QTextCursor_CurrentList(this.h) return newQTextList_U(unsafe.Pointer(ret)) } func (this *QTextCursor) InsertTable(rows int, cols int, format *QTextTableFormat) *QTextTable { ret := C.QTextCursor_InsertTable(this.h, (C.int)(rows), (C.int)(cols), format.cPointer()) return newQTextTable_U(unsafe.Pointer(ret)) } func (this *QTextCursor) InsertTable2(rows int, cols int) *QTextTable { ret := C.QTextCursor_InsertTable2(this.h, (C.int)(rows), (C.int)(cols)) return newQTextTable_U(unsafe.Pointer(ret)) } func (this *QTextCursor) CurrentTable() *QTextTable { ret := C.QTextCursor_CurrentTable(this.h) return newQTextTable_U(unsafe.Pointer(ret)) } func (this *QTextCursor) InsertFrame(format *QTextFrameFormat) *QTextFrame { ret := C.QTextCursor_InsertFrame(this.h, format.cPointer()) return newQTextFrame_U(unsafe.Pointer(ret)) } func (this *QTextCursor) CurrentFrame() *QTextFrame { ret := C.QTextCursor_CurrentFrame(this.h) return newQTextFrame_U(unsafe.Pointer(ret)) } func (this *QTextCursor) InsertFragment(fragment *QTextDocumentFragment) { C.QTextCursor_InsertFragment(this.h, fragment.cPointer()) } func (this *QTextCursor) InsertHtml(html string) { html_Cstring := C.CString(html) defer C.free(unsafe.Pointer(html_Cstring)) C.QTextCursor_InsertHtml(this.h, html_Cstring, C.ulong(len(html))) } func (this *QTextCursor) InsertImage(format *QTextImageFormat) { C.QTextCursor_InsertImage(this.h, format.cPointer()) } func (this *QTextCursor) InsertImageWithName(name string) { name_Cstring := C.CString(name) defer C.free(unsafe.Pointer(name_Cstring)) C.QTextCursor_InsertImageWithName(this.h, name_Cstring, C.ulong(len(name))) } func (this *QTextCursor) InsertImageWithImage(image *QImage) { C.QTextCursor_InsertImageWithImage(this.h, image.cPointer()) } func (this *QTextCursor) BeginEditBlock() { C.QTextCursor_BeginEditBlock(this.h) } func (this *QTextCursor) JoinPreviousEditBlock() { C.QTextCursor_JoinPreviousEditBlock(this.h) } func (this *QTextCursor) EndEditBlock() { C.QTextCursor_EndEditBlock(this.h) } func (this *QTextCursor) OperatorNotEqual(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorNotEqual(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) OperatorLesser(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorLesser(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) OperatorLesserOrEqual(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorLesserOrEqual(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) OperatorEqual(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorEqual(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) OperatorGreaterOrEqual(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorGreaterOrEqual(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) OperatorGreater(rhs *QTextCursor) bool { ret := C.QTextCursor_OperatorGreater(this.h, rhs.cPointer()) return (bool)(ret) } func (this *QTextCursor) IsCopyOf(other *QTextCursor) bool { ret := C.QTextCursor_IsCopyOf(this.h, other.cPointer()) return (bool)(ret) } func (this *QTextCursor) BlockNumber() int { ret := C.QTextCursor_BlockNumber(this.h) return (int)(ret) } func (this *QTextCursor) ColumnNumber() int { ret := C.QTextCursor_ColumnNumber(this.h) return (int)(ret) } func (this *QTextCursor) Document() *QTextDocument { ret := C.QTextCursor_Document(this.h) return newQTextDocument_U(unsafe.Pointer(ret)) } func (this *QTextCursor) InsertImage2(image *QImage, name string) { name_Cstring := C.CString(name) defer C.free(unsafe.Pointer(name_Cstring)) C.QTextCursor_InsertImage2(this.h, image.cPointer(), name_Cstring, C.ulong(len(name))) } func (this *QTextCursor) Delete() { C.QTextCursor_Delete(this.h) }