package qt /* #cgo CFLAGS: -fPIC #cgo pkg-config: Qt5Widgets #include "gen_qitemselectionmodel.h" #include */ import "C" import ( "runtime" "runtime/cgo" "unsafe" ) type QItemSelectionRange struct { h *C.QItemSelectionRange } func (this *QItemSelectionRange) cPointer() *C.QItemSelectionRange { if this == nil { return nil } return this.h } func newQItemSelectionRange(h *C.QItemSelectionRange) *QItemSelectionRange { return &QItemSelectionRange{h: h} } func newQItemSelectionRange_U(h unsafe.Pointer) *QItemSelectionRange { return newQItemSelectionRange((*C.QItemSelectionRange)(h)) } // NewQItemSelectionRange constructs a new QItemSelectionRange object. func NewQItemSelectionRange() *QItemSelectionRange { ret := C.QItemSelectionRange_new() return newQItemSelectionRange(ret) } // NewQItemSelectionRange2 constructs a new QItemSelectionRange object. func NewQItemSelectionRange2(other *QItemSelectionRange) *QItemSelectionRange { ret := C.QItemSelectionRange_new2(other.cPointer()) return newQItemSelectionRange(ret) } // NewQItemSelectionRange3 constructs a new QItemSelectionRange object. func NewQItemSelectionRange3(topL *QModelIndex, bottomR *QModelIndex) *QItemSelectionRange { ret := C.QItemSelectionRange_new3(topL.cPointer(), bottomR.cPointer()) return newQItemSelectionRange(ret) } // NewQItemSelectionRange4 constructs a new QItemSelectionRange object. func NewQItemSelectionRange4(index *QModelIndex) *QItemSelectionRange { ret := C.QItemSelectionRange_new4(index.cPointer()) return newQItemSelectionRange(ret) } func (this *QItemSelectionRange) OperatorAssign(other *QItemSelectionRange) { C.QItemSelectionRange_OperatorAssign(this.h, other.cPointer()) } func (this *QItemSelectionRange) Swap(other *QItemSelectionRange) { C.QItemSelectionRange_Swap(this.h, other.cPointer()) } func (this *QItemSelectionRange) Top() int { ret := C.QItemSelectionRange_Top(this.h) return (int)(ret) } func (this *QItemSelectionRange) Left() int { ret := C.QItemSelectionRange_Left(this.h) return (int)(ret) } func (this *QItemSelectionRange) Bottom() int { ret := C.QItemSelectionRange_Bottom(this.h) return (int)(ret) } func (this *QItemSelectionRange) Right() int { ret := C.QItemSelectionRange_Right(this.h) return (int)(ret) } func (this *QItemSelectionRange) Width() int { ret := C.QItemSelectionRange_Width(this.h) return (int)(ret) } func (this *QItemSelectionRange) Height() int { ret := C.QItemSelectionRange_Height(this.h) return (int)(ret) } func (this *QItemSelectionRange) TopLeft() *QPersistentModelIndex { ret := C.QItemSelectionRange_TopLeft(this.h) return newQPersistentModelIndex_U(unsafe.Pointer(ret)) } func (this *QItemSelectionRange) BottomRight() *QPersistentModelIndex { ret := C.QItemSelectionRange_BottomRight(this.h) return newQPersistentModelIndex_U(unsafe.Pointer(ret)) } func (this *QItemSelectionRange) Parent() *QModelIndex { ret := C.QItemSelectionRange_Parent(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQModelIndex(ret) runtime.SetFinalizer(ret1, func(ret2 *QModelIndex) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QItemSelectionRange) Model() *QAbstractItemModel { ret := C.QItemSelectionRange_Model(this.h) return newQAbstractItemModel_U(unsafe.Pointer(ret)) } func (this *QItemSelectionRange) Contains(index *QModelIndex) bool { ret := C.QItemSelectionRange_Contains(this.h, index.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) Contains2(row int, column int, parentIndex *QModelIndex) bool { ret := C.QItemSelectionRange_Contains2(this.h, (C.int)(row), (C.int)(column), parentIndex.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) Intersects(other *QItemSelectionRange) bool { ret := C.QItemSelectionRange_Intersects(this.h, other.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) Intersected(other *QItemSelectionRange) *QItemSelectionRange { ret := C.QItemSelectionRange_Intersected(this.h, other.cPointer()) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQItemSelectionRange(ret) runtime.SetFinalizer(ret1, func(ret2 *QItemSelectionRange) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QItemSelectionRange) OperatorEqual(other *QItemSelectionRange) bool { ret := C.QItemSelectionRange_OperatorEqual(this.h, other.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) OperatorNotEqual(other *QItemSelectionRange) bool { ret := C.QItemSelectionRange_OperatorNotEqual(this.h, other.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) OperatorLesser(other *QItemSelectionRange) bool { ret := C.QItemSelectionRange_OperatorLesser(this.h, other.cPointer()) return (bool)(ret) } func (this *QItemSelectionRange) IsValid() bool { ret := C.QItemSelectionRange_IsValid(this.h) return (bool)(ret) } func (this *QItemSelectionRange) IsEmpty() bool { ret := C.QItemSelectionRange_IsEmpty(this.h) return (bool)(ret) } func (this *QItemSelectionRange) Indexes() []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionRange_Indexes(this.h, &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionRange) Delete() { C.QItemSelectionRange_Delete(this.h) } type QItemSelectionModel struct { h *C.QItemSelectionModel *QObject } func (this *QItemSelectionModel) cPointer() *C.QItemSelectionModel { if this == nil { return nil } return this.h } func newQItemSelectionModel(h *C.QItemSelectionModel) *QItemSelectionModel { return &QItemSelectionModel{h: h, QObject: newQObject_U(unsafe.Pointer(h))} } func newQItemSelectionModel_U(h unsafe.Pointer) *QItemSelectionModel { return newQItemSelectionModel((*C.QItemSelectionModel)(h)) } // NewQItemSelectionModel constructs a new QItemSelectionModel object. func NewQItemSelectionModel() *QItemSelectionModel { ret := C.QItemSelectionModel_new() return newQItemSelectionModel(ret) } // NewQItemSelectionModel2 constructs a new QItemSelectionModel object. func NewQItemSelectionModel2(model *QAbstractItemModel, parent *QObject) *QItemSelectionModel { ret := C.QItemSelectionModel_new2(model.cPointer(), parent.cPointer()) return newQItemSelectionModel(ret) } // NewQItemSelectionModel3 constructs a new QItemSelectionModel object. func NewQItemSelectionModel3(model *QAbstractItemModel) *QItemSelectionModel { ret := C.QItemSelectionModel_new3(model.cPointer()) return newQItemSelectionModel(ret) } func (this *QItemSelectionModel) MetaObject() *QMetaObject { ret := C.QItemSelectionModel_MetaObject(this.h) return newQMetaObject_U(unsafe.Pointer(ret)) } func QItemSelectionModel_Tr(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_Tr(s_Cstring, &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func QItemSelectionModel_TrUtf8(s string) string { s_Cstring := C.CString(s) defer C.free(unsafe.Pointer(s_Cstring)) var _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_TrUtf8(s_Cstring, &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) CurrentIndex() *QModelIndex { ret := C.QItemSelectionModel_CurrentIndex(this.h) // Qt uses pass-by-value semantics for this type. Mimic with finalizer ret1 := newQModelIndex(ret) runtime.SetFinalizer(ret1, func(ret2 *QModelIndex) { ret2.Delete() runtime.KeepAlive(ret2.h) }) return ret1 } func (this *QItemSelectionModel) IsSelected(index *QModelIndex) bool { ret := C.QItemSelectionModel_IsSelected(this.h, index.cPointer()) return (bool)(ret) } func (this *QItemSelectionModel) IsRowSelected(row int) bool { ret := C.QItemSelectionModel_IsRowSelected(this.h, (C.int)(row)) return (bool)(ret) } func (this *QItemSelectionModel) IsColumnSelected(column int) bool { ret := C.QItemSelectionModel_IsColumnSelected(this.h, (C.int)(column)) return (bool)(ret) } func (this *QItemSelectionModel) RowIntersectsSelection(row int) bool { ret := C.QItemSelectionModel_RowIntersectsSelection(this.h, (C.int)(row)) return (bool)(ret) } func (this *QItemSelectionModel) ColumnIntersectsSelection(column int) bool { ret := C.QItemSelectionModel_ColumnIntersectsSelection(this.h, (C.int)(column)) return (bool)(ret) } func (this *QItemSelectionModel) HasSelection() bool { ret := C.QItemSelectionModel_HasSelection(this.h) return (bool)(ret) } func (this *QItemSelectionModel) SelectedIndexes() []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionModel_SelectedIndexes(this.h, &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) SelectedRows() []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionModel_SelectedRows(this.h, &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) SelectedColumns() []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionModel_SelectedColumns(this.h, &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) Model() *QAbstractItemModel { ret := C.QItemSelectionModel_Model(this.h) return newQAbstractItemModel_U(unsafe.Pointer(ret)) } func (this *QItemSelectionModel) Model2() *QAbstractItemModel { ret := C.QItemSelectionModel_Model2(this.h) return newQAbstractItemModel_U(unsafe.Pointer(ret)) } func (this *QItemSelectionModel) SetModel(model *QAbstractItemModel) { C.QItemSelectionModel_SetModel(this.h, model.cPointer()) } func (this *QItemSelectionModel) Clear() { C.QItemSelectionModel_Clear(this.h) } func (this *QItemSelectionModel) Reset() { C.QItemSelectionModel_Reset(this.h) } func (this *QItemSelectionModel) ClearSelection() { C.QItemSelectionModel_ClearSelection(this.h) } func (this *QItemSelectionModel) ClearCurrentIndex() { C.QItemSelectionModel_ClearCurrentIndex(this.h) } func (this *QItemSelectionModel) CurrentChanged(current *QModelIndex, previous *QModelIndex) { C.QItemSelectionModel_CurrentChanged(this.h, current.cPointer(), previous.cPointer()) } func (this *QItemSelectionModel) OnCurrentChanged(slot func()) { var slotWrapper miqtCallbackFunc = func(argc C.int, args *C.void) { slot() } C.QItemSelectionModel_connect_CurrentChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slotWrapper)))) } func (this *QItemSelectionModel) CurrentRowChanged(current *QModelIndex, previous *QModelIndex) { C.QItemSelectionModel_CurrentRowChanged(this.h, current.cPointer(), previous.cPointer()) } func (this *QItemSelectionModel) OnCurrentRowChanged(slot func()) { var slotWrapper miqtCallbackFunc = func(argc C.int, args *C.void) { slot() } C.QItemSelectionModel_connect_CurrentRowChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slotWrapper)))) } func (this *QItemSelectionModel) CurrentColumnChanged(current *QModelIndex, previous *QModelIndex) { C.QItemSelectionModel_CurrentColumnChanged(this.h, current.cPointer(), previous.cPointer()) } func (this *QItemSelectionModel) OnCurrentColumnChanged(slot func()) { var slotWrapper miqtCallbackFunc = func(argc C.int, args *C.void) { slot() } C.QItemSelectionModel_connect_CurrentColumnChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slotWrapper)))) } func (this *QItemSelectionModel) ModelChanged(model *QAbstractItemModel) { C.QItemSelectionModel_ModelChanged(this.h, model.cPointer()) } func (this *QItemSelectionModel) OnModelChanged(slot func()) { var slotWrapper miqtCallbackFunc = func(argc C.int, args *C.void) { slot() } C.QItemSelectionModel_connect_ModelChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slotWrapper)))) } func QItemSelectionModel_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 _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_Tr2(s_Cstring, c_Cstring, &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func QItemSelectionModel_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 _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_Tr3(s_Cstring, c_Cstring, (C.int)(n), &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func QItemSelectionModel_TrUtf82(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 _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_TrUtf82(s_Cstring, c_Cstring, &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func QItemSelectionModel_TrUtf83(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 _out *C.char = nil var _out_Strlen C.int = 0 C.QItemSelectionModel_TrUtf83(s_Cstring, c_Cstring, (C.int)(n), &_out, &_out_Strlen) ret := C.GoStringN(_out, _out_Strlen) C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) IsRowSelected2(row int, parent *QModelIndex) bool { ret := C.QItemSelectionModel_IsRowSelected2(this.h, (C.int)(row), parent.cPointer()) return (bool)(ret) } func (this *QItemSelectionModel) IsColumnSelected2(column int, parent *QModelIndex) bool { ret := C.QItemSelectionModel_IsColumnSelected2(this.h, (C.int)(column), parent.cPointer()) return (bool)(ret) } func (this *QItemSelectionModel) RowIntersectsSelection2(row int, parent *QModelIndex) bool { ret := C.QItemSelectionModel_RowIntersectsSelection2(this.h, (C.int)(row), parent.cPointer()) return (bool)(ret) } func (this *QItemSelectionModel) ColumnIntersectsSelection2(column int, parent *QModelIndex) bool { ret := C.QItemSelectionModel_ColumnIntersectsSelection2(this.h, (C.int)(column), parent.cPointer()) return (bool)(ret) } func (this *QItemSelectionModel) SelectedRows1(column int) []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionModel_SelectedRows1(this.h, (C.int)(column), &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) SelectedColumns1(row int) []QModelIndex { var _out **C.QModelIndex = nil var _out_len C.size_t = 0 C.QItemSelectionModel_SelectedColumns1(this.h, (C.int)(row), &_out, &_out_len) ret := make([]QModelIndex, int(_out_len)) _outCast := (*[0xffff]*C.QModelIndex)(unsafe.Pointer(_out)) // so fresh so clean for i := 0; i < int(_out_len); i++ { ret[i] = *newQModelIndex(_outCast[i]) } C.free(unsafe.Pointer(_out)) return ret } func (this *QItemSelectionModel) Delete() { C.QItemSelectionModel_Delete(this.h) }