mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 08:58:37 +00:00
362 lines
24 KiB
C++
362 lines
24 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_GEN_QABSTRACTITEMVIEW_H
|
|
#define MIQT_QT_GEN_QABSTRACTITEMVIEW_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QAbstractItemDelegate;
|
|
class QAbstractItemModel;
|
|
class QAbstractItemView;
|
|
class QAbstractScrollArea;
|
|
class QContextMenuEvent;
|
|
class QDragEnterEvent;
|
|
class QDragLeaveEvent;
|
|
class QDragMoveEvent;
|
|
class QDropEvent;
|
|
class QEvent;
|
|
class QFocusEvent;
|
|
class QFrame;
|
|
class QInputMethodEvent;
|
|
class QItemSelection;
|
|
class QItemSelectionModel;
|
|
class QKeyEvent;
|
|
class QMetaObject;
|
|
class QModelIndex;
|
|
class QMouseEvent;
|
|
class QObject;
|
|
class QPaintDevice;
|
|
class QPaintEvent;
|
|
class QPoint;
|
|
class QRect;
|
|
class QRegion;
|
|
class QResizeEvent;
|
|
class QSize;
|
|
class QStyleOptionViewItem;
|
|
class QTimerEvent;
|
|
class QVariant;
|
|
class QWheelEvent;
|
|
class QWidget;
|
|
#else
|
|
typedef struct QAbstractItemDelegate QAbstractItemDelegate;
|
|
typedef struct QAbstractItemModel QAbstractItemModel;
|
|
typedef struct QAbstractItemView QAbstractItemView;
|
|
typedef struct QAbstractScrollArea QAbstractScrollArea;
|
|
typedef struct QContextMenuEvent QContextMenuEvent;
|
|
typedef struct QDragEnterEvent QDragEnterEvent;
|
|
typedef struct QDragLeaveEvent QDragLeaveEvent;
|
|
typedef struct QDragMoveEvent QDragMoveEvent;
|
|
typedef struct QDropEvent QDropEvent;
|
|
typedef struct QEvent QEvent;
|
|
typedef struct QFocusEvent QFocusEvent;
|
|
typedef struct QFrame QFrame;
|
|
typedef struct QInputMethodEvent QInputMethodEvent;
|
|
typedef struct QItemSelection QItemSelection;
|
|
typedef struct QItemSelectionModel QItemSelectionModel;
|
|
typedef struct QKeyEvent QKeyEvent;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QModelIndex QModelIndex;
|
|
typedef struct QMouseEvent QMouseEvent;
|
|
typedef struct QObject QObject;
|
|
typedef struct QPaintDevice QPaintDevice;
|
|
typedef struct QPaintEvent QPaintEvent;
|
|
typedef struct QPoint QPoint;
|
|
typedef struct QRect QRect;
|
|
typedef struct QRegion QRegion;
|
|
typedef struct QResizeEvent QResizeEvent;
|
|
typedef struct QSize QSize;
|
|
typedef struct QStyleOptionViewItem QStyleOptionViewItem;
|
|
typedef struct QTimerEvent QTimerEvent;
|
|
typedef struct QVariant QVariant;
|
|
typedef struct QWheelEvent QWheelEvent;
|
|
typedef struct QWidget QWidget;
|
|
#endif
|
|
|
|
QAbstractItemView* QAbstractItemView_new(QWidget* parent);
|
|
QAbstractItemView* QAbstractItemView_new2();
|
|
void QAbstractItemView_virtbase(QAbstractItemView* src, QAbstractScrollArea** outptr_QAbstractScrollArea);
|
|
QMetaObject* QAbstractItemView_MetaObject(const QAbstractItemView* self);
|
|
void* QAbstractItemView_Metacast(QAbstractItemView* self, const char* param1);
|
|
struct miqt_string QAbstractItemView_Tr(const char* s);
|
|
struct miqt_string QAbstractItemView_TrUtf8(const char* s);
|
|
void QAbstractItemView_SetModel(QAbstractItemView* self, QAbstractItemModel* model);
|
|
QAbstractItemModel* QAbstractItemView_Model(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetSelectionModel(QAbstractItemView* self, QItemSelectionModel* selectionModel);
|
|
QItemSelectionModel* QAbstractItemView_SelectionModel(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetItemDelegate(QAbstractItemView* self, QAbstractItemDelegate* delegate);
|
|
QAbstractItemDelegate* QAbstractItemView_ItemDelegate(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetSelectionMode(QAbstractItemView* self, int mode);
|
|
int QAbstractItemView_SelectionMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetSelectionBehavior(QAbstractItemView* self, int behavior);
|
|
int QAbstractItemView_SelectionBehavior(const QAbstractItemView* self);
|
|
QModelIndex* QAbstractItemView_CurrentIndex(const QAbstractItemView* self);
|
|
QModelIndex* QAbstractItemView_RootIndex(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetEditTriggers(QAbstractItemView* self, int triggers);
|
|
int QAbstractItemView_EditTriggers(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetVerticalScrollMode(QAbstractItemView* self, int mode);
|
|
int QAbstractItemView_VerticalScrollMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_ResetVerticalScrollMode(QAbstractItemView* self);
|
|
void QAbstractItemView_SetHorizontalScrollMode(QAbstractItemView* self, int mode);
|
|
int QAbstractItemView_HorizontalScrollMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_ResetHorizontalScrollMode(QAbstractItemView* self);
|
|
void QAbstractItemView_SetAutoScroll(QAbstractItemView* self, bool enable);
|
|
bool QAbstractItemView_HasAutoScroll(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetAutoScrollMargin(QAbstractItemView* self, int margin);
|
|
int QAbstractItemView_AutoScrollMargin(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetTabKeyNavigation(QAbstractItemView* self, bool enable);
|
|
bool QAbstractItemView_TabKeyNavigation(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetDropIndicatorShown(QAbstractItemView* self, bool enable);
|
|
bool QAbstractItemView_ShowDropIndicator(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetDragEnabled(QAbstractItemView* self, bool enable);
|
|
bool QAbstractItemView_DragEnabled(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetDragDropOverwriteMode(QAbstractItemView* self, bool overwrite);
|
|
bool QAbstractItemView_DragDropOverwriteMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetDragDropMode(QAbstractItemView* self, int behavior);
|
|
int QAbstractItemView_DragDropMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetDefaultDropAction(QAbstractItemView* self, int dropAction);
|
|
int QAbstractItemView_DefaultDropAction(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetAlternatingRowColors(QAbstractItemView* self, bool enable);
|
|
bool QAbstractItemView_AlternatingRowColors(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetIconSize(QAbstractItemView* self, QSize* size);
|
|
QSize* QAbstractItemView_IconSize(const QAbstractItemView* self);
|
|
void QAbstractItemView_SetTextElideMode(QAbstractItemView* self, int mode);
|
|
int QAbstractItemView_TextElideMode(const QAbstractItemView* self);
|
|
void QAbstractItemView_KeyboardSearch(QAbstractItemView* self, struct miqt_string search);
|
|
QRect* QAbstractItemView_VisualRect(const QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_ScrollTo(QAbstractItemView* self, QModelIndex* index, int hint);
|
|
QModelIndex* QAbstractItemView_IndexAt(const QAbstractItemView* self, QPoint* point);
|
|
QSize* QAbstractItemView_SizeHintForIndex(const QAbstractItemView* self, QModelIndex* index);
|
|
int QAbstractItemView_SizeHintForRow(const QAbstractItemView* self, int row);
|
|
int QAbstractItemView_SizeHintForColumn(const QAbstractItemView* self, int column);
|
|
void QAbstractItemView_OpenPersistentEditor(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_ClosePersistentEditor(QAbstractItemView* self, QModelIndex* index);
|
|
bool QAbstractItemView_IsPersistentEditorOpen(const QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_SetIndexWidget(QAbstractItemView* self, QModelIndex* index, QWidget* widget);
|
|
QWidget* QAbstractItemView_IndexWidget(const QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_SetItemDelegateForRow(QAbstractItemView* self, int row, QAbstractItemDelegate* delegate);
|
|
QAbstractItemDelegate* QAbstractItemView_ItemDelegateForRow(const QAbstractItemView* self, int row);
|
|
void QAbstractItemView_SetItemDelegateForColumn(QAbstractItemView* self, int column, QAbstractItemDelegate* delegate);
|
|
QAbstractItemDelegate* QAbstractItemView_ItemDelegateForColumn(const QAbstractItemView* self, int column);
|
|
QAbstractItemDelegate* QAbstractItemView_ItemDelegateWithIndex(const QAbstractItemView* self, QModelIndex* index);
|
|
QVariant* QAbstractItemView_InputMethodQuery(const QAbstractItemView* self, int query);
|
|
void QAbstractItemView_Reset(QAbstractItemView* self);
|
|
void QAbstractItemView_SetRootIndex(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_DoItemsLayout(QAbstractItemView* self);
|
|
void QAbstractItemView_SelectAll(QAbstractItemView* self);
|
|
void QAbstractItemView_Edit(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_ClearSelection(QAbstractItemView* self);
|
|
void QAbstractItemView_SetCurrentIndex(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_ScrollToTop(QAbstractItemView* self);
|
|
void QAbstractItemView_ScrollToBottom(QAbstractItemView* self);
|
|
void QAbstractItemView_Update(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_DataChanged(QAbstractItemView* self, QModelIndex* topLeft, QModelIndex* bottomRight, struct miqt_array /* of int */ roles);
|
|
void QAbstractItemView_RowsInserted(QAbstractItemView* self, QModelIndex* parent, int start, int end);
|
|
void QAbstractItemView_RowsAboutToBeRemoved(QAbstractItemView* self, QModelIndex* parent, int start, int end);
|
|
void QAbstractItemView_SelectionChanged(QAbstractItemView* self, QItemSelection* selected, QItemSelection* deselected);
|
|
void QAbstractItemView_CurrentChanged(QAbstractItemView* self, QModelIndex* current, QModelIndex* previous);
|
|
void QAbstractItemView_UpdateEditorData(QAbstractItemView* self);
|
|
void QAbstractItemView_UpdateEditorGeometries(QAbstractItemView* self);
|
|
void QAbstractItemView_UpdateGeometries(QAbstractItemView* self);
|
|
void QAbstractItemView_VerticalScrollbarAction(QAbstractItemView* self, int action);
|
|
void QAbstractItemView_HorizontalScrollbarAction(QAbstractItemView* self, int action);
|
|
void QAbstractItemView_VerticalScrollbarValueChanged(QAbstractItemView* self, int value);
|
|
void QAbstractItemView_HorizontalScrollbarValueChanged(QAbstractItemView* self, int value);
|
|
void QAbstractItemView_CloseEditor(QAbstractItemView* self, QWidget* editor, int hint);
|
|
void QAbstractItemView_CommitData(QAbstractItemView* self, QWidget* editor);
|
|
void QAbstractItemView_EditorDestroyed(QAbstractItemView* self, QObject* editor);
|
|
void QAbstractItemView_Pressed(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_connect_Pressed(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_Clicked(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_connect_Clicked(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_DoubleClicked(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_connect_DoubleClicked(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_Activated(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_connect_Activated(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_Entered(QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_connect_Entered(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_ViewportEntered(QAbstractItemView* self);
|
|
void QAbstractItemView_connect_ViewportEntered(QAbstractItemView* self, intptr_t slot);
|
|
void QAbstractItemView_IconSizeChanged(QAbstractItemView* self, QSize* size);
|
|
void QAbstractItemView_connect_IconSizeChanged(QAbstractItemView* self, intptr_t slot);
|
|
QModelIndex* QAbstractItemView_MoveCursor(QAbstractItemView* self, int cursorAction, int modifiers);
|
|
int QAbstractItemView_HorizontalOffset(const QAbstractItemView* self);
|
|
int QAbstractItemView_VerticalOffset(const QAbstractItemView* self);
|
|
bool QAbstractItemView_IsIndexHidden(const QAbstractItemView* self, QModelIndex* index);
|
|
void QAbstractItemView_SetSelection(QAbstractItemView* self, QRect* rect, int command);
|
|
QRegion* QAbstractItemView_VisualRegionForSelection(const QAbstractItemView* self, QItemSelection* selection);
|
|
struct miqt_array /* of QModelIndex* */ QAbstractItemView_SelectedIndexes(const QAbstractItemView* self);
|
|
bool QAbstractItemView_Edit2(QAbstractItemView* self, QModelIndex* index, int trigger, QEvent* event);
|
|
int QAbstractItemView_SelectionCommand(const QAbstractItemView* self, QModelIndex* index, QEvent* event);
|
|
void QAbstractItemView_StartDrag(QAbstractItemView* self, int supportedActions);
|
|
QStyleOptionViewItem* QAbstractItemView_ViewOptions(const QAbstractItemView* self);
|
|
bool QAbstractItemView_FocusNextPrevChild(QAbstractItemView* self, bool next);
|
|
bool QAbstractItemView_Event(QAbstractItemView* self, QEvent* event);
|
|
bool QAbstractItemView_ViewportEvent(QAbstractItemView* self, QEvent* event);
|
|
void QAbstractItemView_MousePressEvent(QAbstractItemView* self, QMouseEvent* event);
|
|
void QAbstractItemView_MouseMoveEvent(QAbstractItemView* self, QMouseEvent* event);
|
|
void QAbstractItemView_MouseReleaseEvent(QAbstractItemView* self, QMouseEvent* event);
|
|
void QAbstractItemView_MouseDoubleClickEvent(QAbstractItemView* self, QMouseEvent* event);
|
|
void QAbstractItemView_DragEnterEvent(QAbstractItemView* self, QDragEnterEvent* event);
|
|
void QAbstractItemView_DragMoveEvent(QAbstractItemView* self, QDragMoveEvent* event);
|
|
void QAbstractItemView_DragLeaveEvent(QAbstractItemView* self, QDragLeaveEvent* event);
|
|
void QAbstractItemView_DropEvent(QAbstractItemView* self, QDropEvent* event);
|
|
void QAbstractItemView_FocusInEvent(QAbstractItemView* self, QFocusEvent* event);
|
|
void QAbstractItemView_FocusOutEvent(QAbstractItemView* self, QFocusEvent* event);
|
|
void QAbstractItemView_KeyPressEvent(QAbstractItemView* self, QKeyEvent* event);
|
|
void QAbstractItemView_ResizeEvent(QAbstractItemView* self, QResizeEvent* event);
|
|
void QAbstractItemView_TimerEvent(QAbstractItemView* self, QTimerEvent* event);
|
|
void QAbstractItemView_InputMethodEvent(QAbstractItemView* self, QInputMethodEvent* event);
|
|
bool QAbstractItemView_EventFilter(QAbstractItemView* self, QObject* object, QEvent* event);
|
|
QSize* QAbstractItemView_ViewportSizeHint(const QAbstractItemView* self);
|
|
struct miqt_string QAbstractItemView_Tr2(const char* s, const char* c);
|
|
struct miqt_string QAbstractItemView_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QAbstractItemView_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QAbstractItemView_TrUtf83(const char* s, const char* c, int n);
|
|
void QAbstractItemView_override_virtual_SetModel(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SetModel(void* self, QAbstractItemModel* model);
|
|
void QAbstractItemView_override_virtual_SetSelectionModel(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SetSelectionModel(void* self, QItemSelectionModel* selectionModel);
|
|
void QAbstractItemView_override_virtual_KeyboardSearch(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_KeyboardSearch(void* self, struct miqt_string search);
|
|
void QAbstractItemView_override_virtual_VisualRect(void* self, intptr_t slot);
|
|
QRect* QAbstractItemView_virtualbase_VisualRect(const void* self, QModelIndex* index);
|
|
void QAbstractItemView_override_virtual_ScrollTo(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_ScrollTo(void* self, QModelIndex* index, int hint);
|
|
void QAbstractItemView_override_virtual_IndexAt(void* self, intptr_t slot);
|
|
QModelIndex* QAbstractItemView_virtualbase_IndexAt(const void* self, QPoint* point);
|
|
void QAbstractItemView_override_virtual_SizeHintForRow(void* self, intptr_t slot);
|
|
int QAbstractItemView_virtualbase_SizeHintForRow(const void* self, int row);
|
|
void QAbstractItemView_override_virtual_SizeHintForColumn(void* self, intptr_t slot);
|
|
int QAbstractItemView_virtualbase_SizeHintForColumn(const void* self, int column);
|
|
void QAbstractItemView_override_virtual_InputMethodQuery(void* self, intptr_t slot);
|
|
QVariant* QAbstractItemView_virtualbase_InputMethodQuery(const void* self, int query);
|
|
void QAbstractItemView_override_virtual_Reset(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_Reset(void* self);
|
|
void QAbstractItemView_override_virtual_SetRootIndex(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SetRootIndex(void* self, QModelIndex* index);
|
|
void QAbstractItemView_override_virtual_DoItemsLayout(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DoItemsLayout(void* self);
|
|
void QAbstractItemView_override_virtual_SelectAll(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SelectAll(void* self);
|
|
void QAbstractItemView_override_virtual_DataChanged(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DataChanged(void* self, QModelIndex* topLeft, QModelIndex* bottomRight, struct miqt_array /* of int */ roles);
|
|
void QAbstractItemView_override_virtual_RowsInserted(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_RowsInserted(void* self, QModelIndex* parent, int start, int end);
|
|
void QAbstractItemView_override_virtual_RowsAboutToBeRemoved(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_RowsAboutToBeRemoved(void* self, QModelIndex* parent, int start, int end);
|
|
void QAbstractItemView_override_virtual_SelectionChanged(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SelectionChanged(void* self, QItemSelection* selected, QItemSelection* deselected);
|
|
void QAbstractItemView_override_virtual_CurrentChanged(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_CurrentChanged(void* self, QModelIndex* current, QModelIndex* previous);
|
|
void QAbstractItemView_override_virtual_UpdateEditorData(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_UpdateEditorData(void* self);
|
|
void QAbstractItemView_override_virtual_UpdateEditorGeometries(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_UpdateEditorGeometries(void* self);
|
|
void QAbstractItemView_override_virtual_UpdateGeometries(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_UpdateGeometries(void* self);
|
|
void QAbstractItemView_override_virtual_VerticalScrollbarAction(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_VerticalScrollbarAction(void* self, int action);
|
|
void QAbstractItemView_override_virtual_HorizontalScrollbarAction(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_HorizontalScrollbarAction(void* self, int action);
|
|
void QAbstractItemView_override_virtual_VerticalScrollbarValueChanged(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_VerticalScrollbarValueChanged(void* self, int value);
|
|
void QAbstractItemView_override_virtual_HorizontalScrollbarValueChanged(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_HorizontalScrollbarValueChanged(void* self, int value);
|
|
void QAbstractItemView_override_virtual_CloseEditor(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_CloseEditor(void* self, QWidget* editor, int hint);
|
|
void QAbstractItemView_override_virtual_CommitData(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_CommitData(void* self, QWidget* editor);
|
|
void QAbstractItemView_override_virtual_EditorDestroyed(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_EditorDestroyed(void* self, QObject* editor);
|
|
void QAbstractItemView_override_virtual_MoveCursor(void* self, intptr_t slot);
|
|
QModelIndex* QAbstractItemView_virtualbase_MoveCursor(void* self, int cursorAction, int modifiers);
|
|
void QAbstractItemView_override_virtual_HorizontalOffset(void* self, intptr_t slot);
|
|
int QAbstractItemView_virtualbase_HorizontalOffset(const void* self);
|
|
void QAbstractItemView_override_virtual_VerticalOffset(void* self, intptr_t slot);
|
|
int QAbstractItemView_virtualbase_VerticalOffset(const void* self);
|
|
void QAbstractItemView_override_virtual_IsIndexHidden(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_IsIndexHidden(const void* self, QModelIndex* index);
|
|
void QAbstractItemView_override_virtual_SetSelection(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SetSelection(void* self, QRect* rect, int command);
|
|
void QAbstractItemView_override_virtual_VisualRegionForSelection(void* self, intptr_t slot);
|
|
QRegion* QAbstractItemView_virtualbase_VisualRegionForSelection(const void* self, QItemSelection* selection);
|
|
void QAbstractItemView_override_virtual_SelectedIndexes(void* self, intptr_t slot);
|
|
struct miqt_array /* of QModelIndex* */ QAbstractItemView_virtualbase_SelectedIndexes(const void* self);
|
|
void QAbstractItemView_override_virtual_Edit2(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_Edit2(void* self, QModelIndex* index, int trigger, QEvent* event);
|
|
void QAbstractItemView_override_virtual_SelectionCommand(void* self, intptr_t slot);
|
|
int QAbstractItemView_virtualbase_SelectionCommand(const void* self, QModelIndex* index, QEvent* event);
|
|
void QAbstractItemView_override_virtual_StartDrag(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_StartDrag(void* self, int supportedActions);
|
|
void QAbstractItemView_override_virtual_ViewOptions(void* self, intptr_t slot);
|
|
QStyleOptionViewItem* QAbstractItemView_virtualbase_ViewOptions(const void* self);
|
|
void QAbstractItemView_override_virtual_FocusNextPrevChild(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_FocusNextPrevChild(void* self, bool next);
|
|
void QAbstractItemView_override_virtual_Event(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_Event(void* self, QEvent* event);
|
|
void QAbstractItemView_override_virtual_ViewportEvent(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_ViewportEvent(void* self, QEvent* event);
|
|
void QAbstractItemView_override_virtual_MousePressEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_MousePressEvent(void* self, QMouseEvent* event);
|
|
void QAbstractItemView_override_virtual_MouseMoveEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_MouseMoveEvent(void* self, QMouseEvent* event);
|
|
void QAbstractItemView_override_virtual_MouseReleaseEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_MouseReleaseEvent(void* self, QMouseEvent* event);
|
|
void QAbstractItemView_override_virtual_MouseDoubleClickEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_MouseDoubleClickEvent(void* self, QMouseEvent* event);
|
|
void QAbstractItemView_override_virtual_DragEnterEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DragEnterEvent(void* self, QDragEnterEvent* event);
|
|
void QAbstractItemView_override_virtual_DragMoveEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DragMoveEvent(void* self, QDragMoveEvent* event);
|
|
void QAbstractItemView_override_virtual_DragLeaveEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DragLeaveEvent(void* self, QDragLeaveEvent* event);
|
|
void QAbstractItemView_override_virtual_DropEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_DropEvent(void* self, QDropEvent* event);
|
|
void QAbstractItemView_override_virtual_FocusInEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_FocusInEvent(void* self, QFocusEvent* event);
|
|
void QAbstractItemView_override_virtual_FocusOutEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_FocusOutEvent(void* self, QFocusEvent* event);
|
|
void QAbstractItemView_override_virtual_KeyPressEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_KeyPressEvent(void* self, QKeyEvent* event);
|
|
void QAbstractItemView_override_virtual_ResizeEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_ResizeEvent(void* self, QResizeEvent* event);
|
|
void QAbstractItemView_override_virtual_TimerEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_TimerEvent(void* self, QTimerEvent* event);
|
|
void QAbstractItemView_override_virtual_InputMethodEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_InputMethodEvent(void* self, QInputMethodEvent* event);
|
|
void QAbstractItemView_override_virtual_EventFilter(void* self, intptr_t slot);
|
|
bool QAbstractItemView_virtualbase_EventFilter(void* self, QObject* object, QEvent* event);
|
|
void QAbstractItemView_override_virtual_ViewportSizeHint(void* self, intptr_t slot);
|
|
QSize* QAbstractItemView_virtualbase_ViewportSizeHint(const void* self);
|
|
void QAbstractItemView_override_virtual_MinimumSizeHint(void* self, intptr_t slot);
|
|
QSize* QAbstractItemView_virtualbase_MinimumSizeHint(const void* self);
|
|
void QAbstractItemView_override_virtual_SizeHint(void* self, intptr_t slot);
|
|
QSize* QAbstractItemView_virtualbase_SizeHint(const void* self);
|
|
void QAbstractItemView_override_virtual_SetupViewport(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_SetupViewport(void* self, QWidget* viewport);
|
|
void QAbstractItemView_override_virtual_PaintEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_PaintEvent(void* self, QPaintEvent* param1);
|
|
void QAbstractItemView_override_virtual_WheelEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_WheelEvent(void* self, QWheelEvent* param1);
|
|
void QAbstractItemView_override_virtual_ContextMenuEvent(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_ContextMenuEvent(void* self, QContextMenuEvent* param1);
|
|
void QAbstractItemView_override_virtual_ScrollContentsBy(void* self, intptr_t slot);
|
|
void QAbstractItemView_virtualbase_ScrollContentsBy(void* self, int dx, int dy);
|
|
void QAbstractItemView_Delete(QAbstractItemView* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|