#include #include #include #include #include #include #include #include #include #include #include #include "gen_qheaderview.h" #include "_cgo_export.h" QHeaderView* QHeaderView_new(int orientation) { return new QHeaderView(static_cast(orientation)); } QHeaderView* QHeaderView_new2(int orientation, QWidget* parent) { return new QHeaderView(static_cast(orientation), parent); } QMetaObject* QHeaderView_MetaObject(const QHeaderView* self) { return (QMetaObject*) self->metaObject(); } void* QHeaderView_Metacast(QHeaderView* self, const char* param1) { return self->qt_metacast(param1); } struct miqt_string* QHeaderView_Tr(const char* s) { QString _ret = QHeaderView::tr(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QHeaderView_TrUtf8(const char* s) { QString _ret = QHeaderView::trUtf8(s); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } void QHeaderView_SetModel(QHeaderView* self, QAbstractItemModel* model) { self->setModel(model); } int QHeaderView_Orientation(const QHeaderView* self) { Qt::Orientation _ret = self->orientation(); return static_cast(_ret); } int QHeaderView_Offset(const QHeaderView* self) { return self->offset(); } int QHeaderView_Length(const QHeaderView* self) { return self->length(); } QSize* QHeaderView_SizeHint(const QHeaderView* self) { return new QSize(self->sizeHint()); } void QHeaderView_SetVisible(QHeaderView* self, bool v) { self->setVisible(v); } int QHeaderView_SectionSizeHint(const QHeaderView* self, int logicalIndex) { return self->sectionSizeHint(static_cast(logicalIndex)); } int QHeaderView_VisualIndexAt(const QHeaderView* self, int position) { return self->visualIndexAt(static_cast(position)); } int QHeaderView_LogicalIndexAt(const QHeaderView* self, int position) { return self->logicalIndexAt(static_cast(position)); } int QHeaderView_LogicalIndexAt2(const QHeaderView* self, int x, int y) { return self->logicalIndexAt(static_cast(x), static_cast(y)); } int QHeaderView_LogicalIndexAtWithPos(const QHeaderView* self, QPoint* pos) { return self->logicalIndexAt(*pos); } int QHeaderView_SectionSize(const QHeaderView* self, int logicalIndex) { return self->sectionSize(static_cast(logicalIndex)); } int QHeaderView_SectionPosition(const QHeaderView* self, int logicalIndex) { return self->sectionPosition(static_cast(logicalIndex)); } int QHeaderView_SectionViewportPosition(const QHeaderView* self, int logicalIndex) { return self->sectionViewportPosition(static_cast(logicalIndex)); } void QHeaderView_MoveSection(QHeaderView* self, int from, int to) { self->moveSection(static_cast(from), static_cast(to)); } void QHeaderView_SwapSections(QHeaderView* self, int first, int second) { self->swapSections(static_cast(first), static_cast(second)); } void QHeaderView_ResizeSection(QHeaderView* self, int logicalIndex, int size) { self->resizeSection(static_cast(logicalIndex), static_cast(size)); } void QHeaderView_ResizeSections(QHeaderView* self, int mode) { self->resizeSections(static_cast(mode)); } bool QHeaderView_IsSectionHidden(const QHeaderView* self, int logicalIndex) { return self->isSectionHidden(static_cast(logicalIndex)); } void QHeaderView_SetSectionHidden(QHeaderView* self, int logicalIndex, bool hide) { self->setSectionHidden(static_cast(logicalIndex), hide); } int QHeaderView_HiddenSectionCount(const QHeaderView* self) { return self->hiddenSectionCount(); } void QHeaderView_HideSection(QHeaderView* self, int logicalIndex) { self->hideSection(static_cast(logicalIndex)); } void QHeaderView_ShowSection(QHeaderView* self, int logicalIndex) { self->showSection(static_cast(logicalIndex)); } int QHeaderView_Count(const QHeaderView* self) { return self->count(); } int QHeaderView_VisualIndex(const QHeaderView* self, int logicalIndex) { return self->visualIndex(static_cast(logicalIndex)); } int QHeaderView_LogicalIndex(const QHeaderView* self, int visualIndex) { return self->logicalIndex(static_cast(visualIndex)); } void QHeaderView_SetSectionsMovable(QHeaderView* self, bool movable) { self->setSectionsMovable(movable); } bool QHeaderView_SectionsMovable(const QHeaderView* self) { return self->sectionsMovable(); } void QHeaderView_SetFirstSectionMovable(QHeaderView* self, bool movable) { self->setFirstSectionMovable(movable); } bool QHeaderView_IsFirstSectionMovable(const QHeaderView* self) { return self->isFirstSectionMovable(); } void QHeaderView_SetSectionsClickable(QHeaderView* self, bool clickable) { self->setSectionsClickable(clickable); } bool QHeaderView_SectionsClickable(const QHeaderView* self) { return self->sectionsClickable(); } void QHeaderView_SetHighlightSections(QHeaderView* self, bool highlight) { self->setHighlightSections(highlight); } bool QHeaderView_HighlightSections(const QHeaderView* self) { return self->highlightSections(); } int QHeaderView_SectionResizeMode(const QHeaderView* self, int logicalIndex) { QHeaderView::ResizeMode _ret = self->sectionResizeMode(static_cast(logicalIndex)); return static_cast(_ret); } void QHeaderView_SetSectionResizeMode(QHeaderView* self, int mode) { self->setSectionResizeMode(static_cast(mode)); } void QHeaderView_SetSectionResizeMode2(QHeaderView* self, int logicalIndex, int mode) { self->setSectionResizeMode(static_cast(logicalIndex), static_cast(mode)); } void QHeaderView_SetResizeContentsPrecision(QHeaderView* self, int precision) { self->setResizeContentsPrecision(static_cast(precision)); } int QHeaderView_ResizeContentsPrecision(const QHeaderView* self) { return self->resizeContentsPrecision(); } int QHeaderView_StretchSectionCount(const QHeaderView* self) { return self->stretchSectionCount(); } void QHeaderView_SetSortIndicatorShown(QHeaderView* self, bool show) { self->setSortIndicatorShown(show); } bool QHeaderView_IsSortIndicatorShown(const QHeaderView* self) { return self->isSortIndicatorShown(); } void QHeaderView_SetSortIndicator(QHeaderView* self, int logicalIndex, int order) { self->setSortIndicator(static_cast(logicalIndex), static_cast(order)); } int QHeaderView_SortIndicatorSection(const QHeaderView* self) { return self->sortIndicatorSection(); } int QHeaderView_SortIndicatorOrder(const QHeaderView* self) { Qt::SortOrder _ret = self->sortIndicatorOrder(); return static_cast(_ret); } bool QHeaderView_StretchLastSection(const QHeaderView* self) { return self->stretchLastSection(); } void QHeaderView_SetStretchLastSection(QHeaderView* self, bool stretch) { self->setStretchLastSection(stretch); } bool QHeaderView_CascadingSectionResizes(const QHeaderView* self) { return self->cascadingSectionResizes(); } void QHeaderView_SetCascadingSectionResizes(QHeaderView* self, bool enable) { self->setCascadingSectionResizes(enable); } int QHeaderView_DefaultSectionSize(const QHeaderView* self) { return self->defaultSectionSize(); } void QHeaderView_SetDefaultSectionSize(QHeaderView* self, int size) { self->setDefaultSectionSize(static_cast(size)); } void QHeaderView_ResetDefaultSectionSize(QHeaderView* self) { self->resetDefaultSectionSize(); } int QHeaderView_MinimumSectionSize(const QHeaderView* self) { return self->minimumSectionSize(); } void QHeaderView_SetMinimumSectionSize(QHeaderView* self, int size) { self->setMinimumSectionSize(static_cast(size)); } int QHeaderView_MaximumSectionSize(const QHeaderView* self) { return self->maximumSectionSize(); } void QHeaderView_SetMaximumSectionSize(QHeaderView* self, int size) { self->setMaximumSectionSize(static_cast(size)); } int QHeaderView_DefaultAlignment(const QHeaderView* self) { Qt::Alignment _ret = self->defaultAlignment(); return static_cast(_ret); } void QHeaderView_SetDefaultAlignment(QHeaderView* self, int alignment) { self->setDefaultAlignment(static_cast(alignment)); } void QHeaderView_DoItemsLayout(QHeaderView* self) { self->doItemsLayout(); } bool QHeaderView_SectionsMoved(const QHeaderView* self) { return self->sectionsMoved(); } bool QHeaderView_SectionsHidden(const QHeaderView* self) { return self->sectionsHidden(); } QByteArray* QHeaderView_SaveState(const QHeaderView* self) { return new QByteArray(self->saveState()); } bool QHeaderView_RestoreState(QHeaderView* self, QByteArray* state) { return self->restoreState(*state); } void QHeaderView_Reset(QHeaderView* self) { self->reset(); } void QHeaderView_SetOffset(QHeaderView* self, int offset) { self->setOffset(static_cast(offset)); } void QHeaderView_SetOffsetToSectionPosition(QHeaderView* self, int visualIndex) { self->setOffsetToSectionPosition(static_cast(visualIndex)); } void QHeaderView_SetOffsetToLastSection(QHeaderView* self) { self->setOffsetToLastSection(); } void QHeaderView_HeaderDataChanged(QHeaderView* self, int orientation, int logicalFirst, int logicalLast) { self->headerDataChanged(static_cast(orientation), static_cast(logicalFirst), static_cast(logicalLast)); } void QHeaderView_SectionMoved(QHeaderView* self, int logicalIndex, int oldVisualIndex, int newVisualIndex) { self->sectionMoved(static_cast(logicalIndex), static_cast(oldVisualIndex), static_cast(newVisualIndex)); } void QHeaderView_connect_SectionMoved(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionMoved), self, [=](int logicalIndex, int oldVisualIndex, int newVisualIndex) { int sigval1 = logicalIndex; int sigval2 = oldVisualIndex; int sigval3 = newVisualIndex; miqt_exec_callback_QHeaderView_SectionMoved(slot, sigval1, sigval2, sigval3); }); } void QHeaderView_SectionResized(QHeaderView* self, int logicalIndex, int oldSize, int newSize) { self->sectionResized(static_cast(logicalIndex), static_cast(oldSize), static_cast(newSize)); } void QHeaderView_connect_SectionResized(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionResized), self, [=](int logicalIndex, int oldSize, int newSize) { int sigval1 = logicalIndex; int sigval2 = oldSize; int sigval3 = newSize; miqt_exec_callback_QHeaderView_SectionResized(slot, sigval1, sigval2, sigval3); }); } void QHeaderView_SectionPressed(QHeaderView* self, int logicalIndex) { self->sectionPressed(static_cast(logicalIndex)); } void QHeaderView_connect_SectionPressed(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionPressed), self, [=](int logicalIndex) { int sigval1 = logicalIndex; miqt_exec_callback_QHeaderView_SectionPressed(slot, sigval1); }); } void QHeaderView_SectionClicked(QHeaderView* self, int logicalIndex) { self->sectionClicked(static_cast(logicalIndex)); } void QHeaderView_connect_SectionClicked(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionClicked), self, [=](int logicalIndex) { int sigval1 = logicalIndex; miqt_exec_callback_QHeaderView_SectionClicked(slot, sigval1); }); } void QHeaderView_SectionEntered(QHeaderView* self, int logicalIndex) { self->sectionEntered(static_cast(logicalIndex)); } void QHeaderView_connect_SectionEntered(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionEntered), self, [=](int logicalIndex) { int sigval1 = logicalIndex; miqt_exec_callback_QHeaderView_SectionEntered(slot, sigval1); }); } void QHeaderView_SectionDoubleClicked(QHeaderView* self, int logicalIndex) { self->sectionDoubleClicked(static_cast(logicalIndex)); } void QHeaderView_connect_SectionDoubleClicked(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionDoubleClicked), self, [=](int logicalIndex) { int sigval1 = logicalIndex; miqt_exec_callback_QHeaderView_SectionDoubleClicked(slot, sigval1); }); } void QHeaderView_SectionCountChanged(QHeaderView* self, int oldCount, int newCount) { self->sectionCountChanged(static_cast(oldCount), static_cast(newCount)); } void QHeaderView_connect_SectionCountChanged(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionCountChanged), self, [=](int oldCount, int newCount) { int sigval1 = oldCount; int sigval2 = newCount; miqt_exec_callback_QHeaderView_SectionCountChanged(slot, sigval1, sigval2); }); } void QHeaderView_SectionHandleDoubleClicked(QHeaderView* self, int logicalIndex) { self->sectionHandleDoubleClicked(static_cast(logicalIndex)); } void QHeaderView_connect_SectionHandleDoubleClicked(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sectionHandleDoubleClicked), self, [=](int logicalIndex) { int sigval1 = logicalIndex; miqt_exec_callback_QHeaderView_SectionHandleDoubleClicked(slot, sigval1); }); } void QHeaderView_GeometriesChanged(QHeaderView* self) { self->geometriesChanged(); } void QHeaderView_connect_GeometriesChanged(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::geometriesChanged), self, [=]() { miqt_exec_callback_QHeaderView_GeometriesChanged(slot); }); } void QHeaderView_SortIndicatorChanged(QHeaderView* self, int logicalIndex, int order) { self->sortIndicatorChanged(static_cast(logicalIndex), static_cast(order)); } void QHeaderView_connect_SortIndicatorChanged(QHeaderView* self, intptr_t slot) { QHeaderView::connect(self, static_cast(&QHeaderView::sortIndicatorChanged), self, [=](int logicalIndex, Qt::SortOrder order) { int sigval1 = logicalIndex; Qt::SortOrder order_ret = order; int sigval2 = static_cast(order_ret); miqt_exec_callback_QHeaderView_SortIndicatorChanged(slot, sigval1, sigval2); }); } struct miqt_string* QHeaderView_Tr2(const char* s, const char* c) { QString _ret = QHeaderView::tr(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QHeaderView_Tr3(const char* s, const char* c, int n) { QString _ret = QHeaderView::tr(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QHeaderView_TrUtf82(const char* s, const char* c) { QString _ret = QHeaderView::trUtf8(s, c); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } struct miqt_string* QHeaderView_TrUtf83(const char* s, const char* c, int n) { QString _ret = QHeaderView::trUtf8(s, c, static_cast(n)); // Convert QString from UTF-16 in C++ RAII memory to UTF-8 in manually-managed C memory QByteArray _b = _ret.toUtf8(); return miqt_strdup(_b.data(), _b.length()); } void QHeaderView_Delete(QHeaderView* self) { delete self; }