miqt/qt/gen_qdatawidgetmapper.go

278 lines
8.2 KiB
Go
Raw Normal View History

package qt
/*
#include "gen_qdatawidgetmapper.h"
#include <stdlib.h>
*/
import "C"
import (
"runtime"
"runtime/cgo"
"unsafe"
)
2024-09-04 06:54:22 +00:00
type QDataWidgetMapper__SubmitPolicy int
const (
QDataWidgetMapper__SubmitPolicy__AutoSubmit QDataWidgetMapper__SubmitPolicy = 0
QDataWidgetMapper__SubmitPolicy__ManualSubmit QDataWidgetMapper__SubmitPolicy = 1
)
type QDataWidgetMapper struct {
h *C.QDataWidgetMapper
*QObject
}
func (this *QDataWidgetMapper) cPointer() *C.QDataWidgetMapper {
if this == nil {
return nil
}
return this.h
}
func newQDataWidgetMapper(h *C.QDataWidgetMapper) *QDataWidgetMapper {
2024-09-01 02:23:55 +00:00
if h == nil {
return nil
}
return &QDataWidgetMapper{h: h, QObject: newQObject_U(unsafe.Pointer(h))}
}
func newQDataWidgetMapper_U(h unsafe.Pointer) *QDataWidgetMapper {
return newQDataWidgetMapper((*C.QDataWidgetMapper)(h))
}
// NewQDataWidgetMapper constructs a new QDataWidgetMapper object.
func NewQDataWidgetMapper() *QDataWidgetMapper {
ret := C.QDataWidgetMapper_new()
return newQDataWidgetMapper(ret)
}
// NewQDataWidgetMapper2 constructs a new QDataWidgetMapper object.
func NewQDataWidgetMapper2(parent *QObject) *QDataWidgetMapper {
ret := C.QDataWidgetMapper_new2(parent.cPointer())
return newQDataWidgetMapper(ret)
}
func (this *QDataWidgetMapper) MetaObject() *QMetaObject {
_ret := C.QDataWidgetMapper_MetaObject(this.h)
return newQMetaObject_U(unsafe.Pointer(_ret))
}
func QDataWidgetMapper_Tr(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms *C.struct_miqt_string = C.QDataWidgetMapper_Tr(s_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QDataWidgetMapper_TrUtf8(s string) string {
s_Cstring := C.CString(s)
defer C.free(unsafe.Pointer(s_Cstring))
var _ms *C.struct_miqt_string = C.QDataWidgetMapper_TrUtf8(s_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func (this *QDataWidgetMapper) SetModel(model *QAbstractItemModel) {
C.QDataWidgetMapper_SetModel(this.h, model.cPointer())
}
func (this *QDataWidgetMapper) Model() *QAbstractItemModel {
_ret := C.QDataWidgetMapper_Model(this.h)
return newQAbstractItemModel_U(unsafe.Pointer(_ret))
}
func (this *QDataWidgetMapper) SetItemDelegate(delegate *QAbstractItemDelegate) {
C.QDataWidgetMapper_SetItemDelegate(this.h, delegate.cPointer())
}
func (this *QDataWidgetMapper) ItemDelegate() *QAbstractItemDelegate {
_ret := C.QDataWidgetMapper_ItemDelegate(this.h)
return newQAbstractItemDelegate_U(unsafe.Pointer(_ret))
}
func (this *QDataWidgetMapper) SetRootIndex(index *QModelIndex) {
C.QDataWidgetMapper_SetRootIndex(this.h, index.cPointer())
}
func (this *QDataWidgetMapper) RootIndex() *QModelIndex {
_ret := C.QDataWidgetMapper_RootIndex(this.h)
_goptr := newQModelIndex(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
2024-09-04 06:54:22 +00:00
func (this *QDataWidgetMapper) SetOrientation(aOrientation Orientation) {
2024-08-29 07:01:51 +00:00
C.QDataWidgetMapper_SetOrientation(this.h, (C.uintptr_t)(aOrientation))
}
2024-09-04 06:54:22 +00:00
func (this *QDataWidgetMapper) Orientation() Orientation {
_ret := C.QDataWidgetMapper_Orientation(this.h)
return (Orientation)(_ret)
2024-08-29 07:01:51 +00:00
}
2024-09-04 06:54:22 +00:00
func (this *QDataWidgetMapper) SetSubmitPolicy(policy QDataWidgetMapper__SubmitPolicy) {
2024-08-29 07:01:51 +00:00
C.QDataWidgetMapper_SetSubmitPolicy(this.h, (C.uintptr_t)(policy))
}
2024-09-04 06:54:22 +00:00
func (this *QDataWidgetMapper) SubmitPolicy() QDataWidgetMapper__SubmitPolicy {
_ret := C.QDataWidgetMapper_SubmitPolicy(this.h)
return (QDataWidgetMapper__SubmitPolicy)(_ret)
2024-08-29 07:01:51 +00:00
}
func (this *QDataWidgetMapper) AddMapping(widget *QWidget, section int) {
C.QDataWidgetMapper_AddMapping(this.h, widget.cPointer(), (C.int)(section))
}
func (this *QDataWidgetMapper) AddMapping2(widget *QWidget, section int, propertyName *QByteArray) {
C.QDataWidgetMapper_AddMapping2(this.h, widget.cPointer(), (C.int)(section), propertyName.cPointer())
}
func (this *QDataWidgetMapper) RemoveMapping(widget *QWidget) {
C.QDataWidgetMapper_RemoveMapping(this.h, widget.cPointer())
}
func (this *QDataWidgetMapper) MappedSection(widget *QWidget) int {
_ret := C.QDataWidgetMapper_MappedSection(this.h, widget.cPointer())
return (int)(_ret)
}
func (this *QDataWidgetMapper) MappedPropertyName(widget *QWidget) *QByteArray {
_ret := C.QDataWidgetMapper_MappedPropertyName(this.h, widget.cPointer())
_goptr := newQByteArray(_ret)
_goptr.GoGC() // Qt uses pass-by-value semantics for this type. Mimic with finalizer
return _goptr
}
func (this *QDataWidgetMapper) MappedWidgetAt(section int) *QWidget {
_ret := C.QDataWidgetMapper_MappedWidgetAt(this.h, (C.int)(section))
return newQWidget_U(unsafe.Pointer(_ret))
}
func (this *QDataWidgetMapper) ClearMapping() {
C.QDataWidgetMapper_ClearMapping(this.h)
}
func (this *QDataWidgetMapper) CurrentIndex() int {
_ret := C.QDataWidgetMapper_CurrentIndex(this.h)
return (int)(_ret)
}
func (this *QDataWidgetMapper) Revert() {
C.QDataWidgetMapper_Revert(this.h)
}
func (this *QDataWidgetMapper) Submit() bool {
_ret := C.QDataWidgetMapper_Submit(this.h)
return (bool)(_ret)
}
func (this *QDataWidgetMapper) ToFirst() {
C.QDataWidgetMapper_ToFirst(this.h)
}
func (this *QDataWidgetMapper) ToLast() {
C.QDataWidgetMapper_ToLast(this.h)
}
func (this *QDataWidgetMapper) ToNext() {
C.QDataWidgetMapper_ToNext(this.h)
}
func (this *QDataWidgetMapper) ToPrevious() {
C.QDataWidgetMapper_ToPrevious(this.h)
}
func (this *QDataWidgetMapper) SetCurrentIndex(index int) {
C.QDataWidgetMapper_SetCurrentIndex(this.h, (C.int)(index))
}
func (this *QDataWidgetMapper) SetCurrentModelIndex(index *QModelIndex) {
C.QDataWidgetMapper_SetCurrentModelIndex(this.h, index.cPointer())
}
func (this *QDataWidgetMapper) CurrentIndexChanged(index int) {
C.QDataWidgetMapper_CurrentIndexChanged(this.h, (C.int)(index))
}
func (this *QDataWidgetMapper) OnCurrentIndexChanged(slot func(index int)) {
C.QDataWidgetMapper_connect_CurrentIndexChanged(this.h, unsafe.Pointer(uintptr(cgo.NewHandle(slot))))
}
//export miqt_exec_callback_QDataWidgetMapper_CurrentIndexChanged
func miqt_exec_callback_QDataWidgetMapper_CurrentIndexChanged(cb *C.void, index C.int) {
gofunc, ok := (cgo.Handle(uintptr(unsafe.Pointer(cb))).Value()).(func(index int))
if !ok {
panic("miqt: callback of non-callback type (heap corruption?)")
}
// Convert all CABI parameters to Go parameters
index_ret := index
slotval1 := (int)(index_ret)
gofunc(slotval1)
}
func QDataWidgetMapper_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.QDataWidgetMapper_Tr2(s_Cstring, c_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QDataWidgetMapper_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.QDataWidgetMapper_Tr3(s_Cstring, c_Cstring, (C.int)(n))
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QDataWidgetMapper_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 _ms *C.struct_miqt_string = C.QDataWidgetMapper_TrUtf82(s_Cstring, c_Cstring)
_ret := C.GoStringN(&_ms.data, C.int(int64(_ms.len)))
C.free(unsafe.Pointer(_ms))
return _ret
}
func QDataWidgetMapper_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 _ms *C.struct_miqt_string = C.QDataWidgetMapper_TrUtf83(s_Cstring, c_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 *QDataWidgetMapper) Delete() {
C.QDataWidgetMapper_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 *QDataWidgetMapper) GoGC() {
runtime.SetFinalizer(this, func(this *QDataWidgetMapper) {
this.Delete()
runtime.KeepAlive(this.h)
})
}