mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
exceptions: suppress QFormLayout::ItemRole* out-pointers
This commit is contained in:
parent
ad41e2ef0b
commit
85025715a8
@ -185,8 +185,8 @@ func CheckComplexity(p CppParameter, isReturnType bool) error {
|
||||
return ErrTooComplex
|
||||
}
|
||||
|
||||
if p.IsFlagType() && p.Pointer && !isReturnType {
|
||||
return ErrTooComplex // e.g. qformlayout. The cast doesn't survive through a pointer parameter
|
||||
if p.ParameterType == "QFormLayout::ItemRole" && p.Pointer && !isReturnType { // Out-parameters in QFormLayout
|
||||
return ErrTooComplex
|
||||
}
|
||||
|
||||
if p.Pointer && p.PointerCount >= 2 { // Out-parameters
|
||||
|
@ -191,18 +191,6 @@ QLayoutItem* QFormLayout_ItemAt(const QFormLayout* self, int row, int role) {
|
||||
return self->itemAt(static_cast<int>(row), static_cast<QFormLayout::ItemRole>(role));
|
||||
}
|
||||
|
||||
void QFormLayout_GetItemPosition(const QFormLayout* self, int index, int* rowPtr, int* rolePtr) {
|
||||
self->getItemPosition(static_cast<int>(index), static_cast<int*>(rowPtr), static_cast<QFormLayout::ItemRole*>(rolePtr));
|
||||
}
|
||||
|
||||
void QFormLayout_GetWidgetPosition(const QFormLayout* self, QWidget* widget, int* rowPtr, int* rolePtr) {
|
||||
self->getWidgetPosition(widget, static_cast<int*>(rowPtr), static_cast<QFormLayout::ItemRole*>(rolePtr));
|
||||
}
|
||||
|
||||
void QFormLayout_GetLayoutPosition(const QFormLayout* self, QLayout* layout, int* rowPtr, int* rolePtr) {
|
||||
self->getLayoutPosition(layout, static_cast<int*>(rowPtr), static_cast<QFormLayout::ItemRole*>(rolePtr));
|
||||
}
|
||||
|
||||
QWidget* QFormLayout_LabelForField(const QFormLayout* self, QWidget* field) {
|
||||
return self->labelForField(field);
|
||||
}
|
||||
|
@ -255,18 +255,6 @@ func (this *QFormLayout) ItemAt(row int, role QFormLayout__ItemRole) *QLayoutIte
|
||||
return newQLayoutItem_U(unsafe.Pointer(C.QFormLayout_ItemAt(this.h, (C.int)(row), (C.int)(role))))
|
||||
}
|
||||
|
||||
func (this *QFormLayout) GetItemPosition(index int, rowPtr *int, rolePtr *QFormLayout__ItemRole) {
|
||||
C.QFormLayout_GetItemPosition(this.h, (C.int)(index), (*C.int)(unsafe.Pointer(rowPtr)), (*C.int)(unsafe.Pointer(rolePtr)))
|
||||
}
|
||||
|
||||
func (this *QFormLayout) GetWidgetPosition(widget *QWidget, rowPtr *int, rolePtr *QFormLayout__ItemRole) {
|
||||
C.QFormLayout_GetWidgetPosition(this.h, widget.cPointer(), (*C.int)(unsafe.Pointer(rowPtr)), (*C.int)(unsafe.Pointer(rolePtr)))
|
||||
}
|
||||
|
||||
func (this *QFormLayout) GetLayoutPosition(layout *QLayout, rowPtr *int, rolePtr *QFormLayout__ItemRole) {
|
||||
C.QFormLayout_GetLayoutPosition(this.h, layout.cPointer(), (*C.int)(unsafe.Pointer(rowPtr)), (*C.int)(unsafe.Pointer(rolePtr)))
|
||||
}
|
||||
|
||||
func (this *QFormLayout) LabelForField(field *QWidget) *QWidget {
|
||||
return newQWidget_U(unsafe.Pointer(C.QFormLayout_LabelForField(this.h, field.cPointer())))
|
||||
}
|
||||
|
@ -78,9 +78,6 @@ void QFormLayout_SetItem(QFormLayout* self, int row, int role, QLayoutItem* item
|
||||
void QFormLayout_SetWidget(QFormLayout* self, int row, int role, QWidget* widget);
|
||||
void QFormLayout_SetLayout(QFormLayout* self, int row, int role, QLayout* layout);
|
||||
QLayoutItem* QFormLayout_ItemAt(const QFormLayout* self, int row, int role);
|
||||
void QFormLayout_GetItemPosition(const QFormLayout* self, int index, int* rowPtr, int* rolePtr);
|
||||
void QFormLayout_GetWidgetPosition(const QFormLayout* self, QWidget* widget, int* rowPtr, int* rolePtr);
|
||||
void QFormLayout_GetLayoutPosition(const QFormLayout* self, QLayout* layout, int* rowPtr, int* rolePtr);
|
||||
QWidget* QFormLayout_LabelForField(const QFormLayout* self, QWidget* field);
|
||||
QWidget* QFormLayout_LabelForFieldWithField(const QFormLayout* self, QLayout* field);
|
||||
void QFormLayout_AddItem(QFormLayout* self, QLayoutItem* item);
|
||||
|
Loading…
Reference in New Issue
Block a user