API reference - Class QAbstractItemViewNotation used in Ruby API documentation Description: Binding of QAbstractItemView Class hierarchy: QAbstractItemView » QAbstractScrollArea » QFrame » QWidget » QObject Sub-classes: DragDropMode, EditTrigger, ScrollHint, ScrollMode, SelectionBehavior, SelectionMode
Public constructors
Public methods
Public static methods and constants
Protected methods (static, non-static and constructors)
Deprecated methods (protected, public, static, non-static and constructors)
Detailed description[static,const] new QAbstractItemView_EditTrigger ptr AllEditTriggersDescription: Enum constant QAbstractItemView::AllEditTriggers [static,const] new QAbstractItemView_EditTrigger ptr AnyKeyPressedDescription: Enum constant QAbstractItemView::AnyKeyPressed [static,const] new QAbstractItemView_SelectionMode ptr ContiguousSelectionDescription: Enum constant QAbstractItemView::ContiguousSelection [static,const] new QAbstractItemView_EditTrigger ptr CurrentChangedDescription: Enum constant QAbstractItemView::CurrentChanged [static,const] new QAbstractItemView_EditTrigger ptr DoubleClickedDescription: Enum constant QAbstractItemView::DoubleClicked [static,const] new QAbstractItemView_DragDropMode ptr DragDropDescription: Enum constant QAbstractItemView::DragDrop [static,const] new QAbstractItemView_DragDropMode ptr DragOnlyDescription: Enum constant QAbstractItemView::DragOnly [static,const] new QAbstractItemView_DragDropMode ptr DropOnlyDescription: Enum constant QAbstractItemView::DropOnly [static,const] new QAbstractItemView_EditTrigger ptr EditKeyPressedDescription: Enum constant QAbstractItemView::EditKeyPressed [static,const] new QAbstractItemView_ScrollHint ptr EnsureVisibleDescription: Enum constant QAbstractItemView::EnsureVisible [static,const] new QAbstractItemView_SelectionMode ptr ExtendedSelectionDescription: Enum constant QAbstractItemView::ExtendedSelection [static,const] new QAbstractItemView_DragDropMode ptr InternalMoveDescription: Enum constant QAbstractItemView::InternalMove [static,const] new QAbstractItemView_SelectionMode ptr MultiSelectionDescription: Enum constant QAbstractItemView::MultiSelection [static,const] new QAbstractItemView_DragDropMode ptr NoDragDropDescription: Enum constant QAbstractItemView::NoDragDrop [static,const] new QAbstractItemView_EditTrigger ptr NoEditTriggersDescription: Enum constant QAbstractItemView::NoEditTriggers [static,const] new QAbstractItemView_SelectionMode ptr NoSelectionDescription: Enum constant QAbstractItemView::NoSelection [static,const] new QAbstractItemView_ScrollHint ptr PositionAtBottomDescription: Enum constant QAbstractItemView::PositionAtBottom [static,const] new QAbstractItemView_ScrollHint ptr PositionAtCenterDescription: Enum constant QAbstractItemView::PositionAtCenter [static,const] new QAbstractItemView_ScrollHint ptr PositionAtTopDescription: Enum constant QAbstractItemView::PositionAtTop [static,const] new QAbstractItemView_ScrollMode ptr ScrollPerItemDescription: Enum constant QAbstractItemView::ScrollPerItem [static,const] new QAbstractItemView_ScrollMode ptr ScrollPerPixelDescription: Enum constant QAbstractItemView::ScrollPerPixel [static,const] new QAbstractItemView_SelectionBehavior ptr SelectColumnsDescription: Enum constant QAbstractItemView::SelectColumns [static,const] new QAbstractItemView_SelectionBehavior ptr SelectItemsDescription: Enum constant QAbstractItemView::SelectItems [static,const] new QAbstractItemView_SelectionBehavior ptr SelectRowsDescription: Enum constant QAbstractItemView::SelectRows [static,const] new QAbstractItemView_EditTrigger ptr SelectedClickedDescription: Enum constant QAbstractItemView::SelectedClicked [static,const] new QAbstractItemView_SelectionMode ptr SingleSelectionDescription: Enum constant QAbstractItemView::SingleSelection void _createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void _destroyDescription: Explicitly destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, this method will do nothing. [const] bool _destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] bool _is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. void _manageDescription: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. void _unmanageDescription: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. [virtual] void actionEvent(QActionEvent ptr arg1)Description: Virtual method void QAbstractItemView::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. [event] void activated(const QModelIndex index)Description: Signal declaration for QAbstractItemView::activated(const QModelIndex &index) You can bind a procedure to this signal. [const] bool alternatingRowColorsDescription: Method bool QAbstractItemView::alternatingRowColors() Python specific notes:The object exposes a readable attribute 'alternatingRowColors'. This is the getter. void alternatingRowColors=(bool enable)Description: Method void QAbstractItemView::setAlternatingRowColors(bool enable) Python specific notes:The object exposes a writable attribute 'alternatingRowColors'. This is the setter. [const] bool autoScrollDescription: Method bool QAbstractItemView::hasAutoScroll() Python specific notes:The object exposes a readable attribute 'autoScroll'. This is the getter. void autoScroll=(bool enable)Description: Method void QAbstractItemView::setAutoScroll(bool enable) Python specific notes:The object exposes a writable attribute 'autoScroll'. This is the setter. [const] int autoScrollMarginDescription: Method int QAbstractItemView::autoScrollMargin() Python specific notes:The object exposes a readable attribute 'autoScrollMargin'. This is the getter. void autoScrollMargin=(int margin)Description: Method void QAbstractItemView::setAutoScrollMargin(int margin) Python specific notes:The object exposes a writable attribute 'autoScrollMargin'. This is the setter. [virtual] void changeEvent(QEvent ptr arg1)Description: Virtual method void QAbstractItemView::changeEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QAbstractItemView::childEvent(QChildEvent *) This method can be reimplemented in a derived class. void clearSelectionDescription: Method void QAbstractItemView::clearSelection() [event] void clicked(const QModelIndex index)Description: Signal declaration for QAbstractItemView::clicked(const QModelIndex &index) You can bind a procedure to this signal. [virtual] void closeEditor(QWidget ptr editor,const QAbstractItemDelegate_EndEditHint hint)Description: Virtual method void QAbstractItemView::closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint) This method can be reimplemented in a derived class. [virtual] void closeEvent(QCloseEvent ptr arg1)Description: Virtual method void QAbstractItemView::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. void closePersistentEditor(const QModelIndex index)Description: Method void QAbstractItemView::closePersistentEditor(const QModelIndex &index) [virtual] void commitData(QWidget ptr editor)Description: Virtual method void QAbstractItemView::commitData(QWidget *editor) This method can be reimplemented in a derived class. [virtual] void contextMenuEvent(QContextMenuEvent ptr arg1)Description: Virtual method void QAbstractItemView::contextMenuEvent(QContextMenuEvent *) This method can be reimplemented in a derived class. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead [virtual] void currentChanged(const QModelIndex current,const QModelIndex previous)Description: Virtual method void QAbstractItemView::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) This method can be reimplemented in a derived class. [const] QModelIndex currentIndexDescription: Method QModelIndex QAbstractItemView::currentIndex() Python specific notes:The object exposes a readable attribute 'currentIndex'. This is the getter. void currentIndex=(const QModelIndex index)Description: Method void QAbstractItemView::setCurrentIndex(const QModelIndex &index) Python specific notes:The object exposes a writable attribute 'currentIndex'. This is the setter. [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QAbstractItemView::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QAbstractItemView::customEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void dataChanged(const QModelIndex topLeft,const QModelIndex bottomRight)Description: Virtual method void QAbstractItemView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) This method can be reimplemented in a derived class. [const] Qt_DropAction defaultDropActionDescription: Method Qt::DropAction QAbstractItemView::defaultDropAction() Python specific notes:The object exposes a readable attribute 'defaultDropAction'. This is the getter. void defaultDropAction=(const Qt_DropAction dropAction)Description: Method void QAbstractItemView::setDefaultDropAction(Qt::DropAction dropAction) Python specific notes:The object exposes a writable attribute 'defaultDropAction'. This is the setter. void destroyDescription: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead [event] void destroyed(QObject ptr arg1)Description: Signal declaration for QAbstractItemView::destroyed(QObject *) You can bind a procedure to this signal. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead [const] QPoint dirtyRegionOffsetDescription: Method QPoint QAbstractItemView::dirtyRegionOffset() This method is protected and can only be called from inside a derived class. [virtual] void disconnectNotify(string signal)Description: Virtual method void QAbstractItemView::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. void doAutoScrollDescription: Method void QAbstractItemView::doAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void doItemsLayoutDescription: Virtual method void QAbstractItemView::doItemsLayout() This method can be reimplemented in a derived class. [event] void doubleClicked(const QModelIndex index)Description: Signal declaration for QAbstractItemView::doubleClicked(const QModelIndex &index) You can bind a procedure to this signal. [const] QAbstractItemView_DragDropMode dragDropModeDescription: Method QAbstractItemView::DragDropMode QAbstractItemView::dragDropMode() Python specific notes:The object exposes a readable attribute 'dragDropMode'. This is the getter. void dragDropMode=(const QAbstractItemView_DragDropMode behavior)Description: Method void QAbstractItemView::setDragDropMode(QAbstractItemView::DragDropMode behavior) Python specific notes:The object exposes a writable attribute 'dragDropMode'. This is the setter. [const] bool dragDropOverwriteModeDescription: Method bool QAbstractItemView::dragDropOverwriteMode() Python specific notes:The object exposes a readable attribute 'dragDropOverwriteMode'. This is the getter. void dragDropOverwriteMode=(bool overwrite)Description: Method void QAbstractItemView::setDragDropOverwriteMode(bool overwrite) Python specific notes:The object exposes a writable attribute 'dragDropOverwriteMode'. This is the setter. [const] bool dragEnabledDescription: Method bool QAbstractItemView::dragEnabled() Python specific notes:The object exposes a readable attribute 'dragEnabled'. This is the getter. void dragEnabled=(bool enable)Description: Method void QAbstractItemView::setDragEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'dragEnabled'. This is the setter. [virtual] void dragEnterEvent(QDragEnterEvent ptr event)Description: Virtual method void QAbstractItemView::dragEnterEvent(QDragEnterEvent *event) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr event)Description: Virtual method void QAbstractItemView::dragLeaveEvent(QDragLeaveEvent *event) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr event)Description: Virtual method void QAbstractItemView::dragMoveEvent(QDragMoveEvent *event) This method can be reimplemented in a derived class. void drawFrame(QPainter ptr arg1)Description: Method void QAbstractItemView::drawFrame(QPainter *) This method is protected and can only be called from inside a derived class. [virtual] void dropEvent(QDropEvent ptr event)Description: Virtual method void QAbstractItemView::dropEvent(QDropEvent *event) This method can be reimplemented in a derived class. [const] unsigned int dropIndicatorPositionDescription: Method QAbstractItemView::DropIndicatorPosition QAbstractItemView::dropIndicatorPosition() This method is protected and can only be called from inside a derived class. [virtual] bool edit(const QModelIndex index,const QAbstractItemView_EditTrigger trigger,QEvent ptr event)Description: Virtual method bool QAbstractItemView::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event) This method can be reimplemented in a derived class. [const] QAbstractItemView_QFlags_EditTrigger editTriggersDescription: Method QFlags<QAbstractItemView::EditTrigger> QAbstractItemView::editTriggers() Python specific notes:The object exposes a readable attribute 'editTriggers'. This is the getter. void editTriggers=(const QAbstractItemView_QFlags_EditTrigger triggers)Description: Method void QAbstractItemView::setEditTriggers(QFlags<QAbstractItemView::EditTrigger> triggers) Python specific notes:The object exposes a writable attribute 'editTriggers'. This is the setter. [virtual] void editorDestroyed(QObject ptr editor)Description: Virtual method void QAbstractItemView::editorDestroyed(QObject *editor) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QAbstractItemView::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QAbstractItemView::enterEvent(QEvent *) This method can be reimplemented in a derived class. [event] void entered(const QModelIndex index)Description: Signal declaration for QAbstractItemView::entered(const QModelIndex &index) You can bind a procedure to this signal. [virtual] bool event(QEvent ptr event)Description: Virtual method bool QAbstractItemView::event(QEvent *event) This method can be reimplemented in a derived class. [virtual] bool eventFilter(QObject ptr arg1,QEvent ptr arg2)Description: Virtual method bool QAbstractItemView::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. void executeDelayedItemsLayoutDescription: Method void QAbstractItemView::executeDelayedItemsLayout() This method is protected and can only be called from inside a derived class. [virtual] void focusInEvent(QFocusEvent ptr event)Description: Virtual method void QAbstractItemView::focusInEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QAbstractItemView::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QAbstractItemView::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr event)Description: Virtual method void QAbstractItemView::focusOutEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QAbstractItemView::focusPreviousChild() This method is protected and can only be called from inside a derived class. [virtual] void fontChange(const QFont arg1)Description: Virtual method void QAbstractItemView::fontChange(const QFont &) This method can be reimplemented in a derived class. [const] bool hasAutoScrollDescription: Method bool QAbstractItemView::hasAutoScroll() Python specific notes:The object exposes a readable attribute 'autoScroll'. This is the getter. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QAbstractItemView::heightForWidth(int) This method can be reimplemented in a derived class. [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QAbstractItemView::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. [virtual,const] int horizontalOffsetDescription: Virtual method int QAbstractItemView::horizontalOffset() This method can be reimplemented in a derived class. [const] QAbstractItemView_ScrollMode horizontalScrollModeDescription: Method QAbstractItemView::ScrollMode QAbstractItemView::horizontalScrollMode() Python specific notes:The object exposes a readable attribute 'horizontalScrollMode'. This is the getter. void horizontalScrollMode=(const QAbstractItemView_ScrollMode mode)Description: Method void QAbstractItemView::setHorizontalScrollMode(QAbstractItemView::ScrollMode mode) Python specific notes:The object exposes a writable attribute 'horizontalScrollMode'. This is the setter. [virtual] void horizontalScrollbarAction(int action)Description: Virtual method void QAbstractItemView::horizontalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void horizontalScrollbarValueChanged(int value)Description: Virtual method void QAbstractItemView::horizontalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int horizontalStepsPerItemDescription: Method int QAbstractItemView::horizontalStepsPerItem() This method is protected and can only be called from inside a derived class. [const] QSize iconSizeDescription: Method QSize QAbstractItemView::iconSize() Python specific notes:The object exposes a readable attribute 'iconSize'. This is the getter. void iconSize=(const QSize size)Description: Method void QAbstractItemView::setIconSize(const QSize &size) Python specific notes:The object exposes a writable attribute 'iconSize'. This is the setter. [virtual,const] QModelIndex indexAt(const QPoint point)Description: Virtual method QModelIndex QAbstractItemView::indexAt(const QPoint &point) This method can be reimplemented in a derived class. [const] QWidget ptr indexWidget(const QModelIndex index)Description: Method QWidget *QAbstractItemView::indexWidget(const QModelIndex &index) [virtual] void inputMethodEvent(QInputMethodEvent ptr event)Description: Virtual method void QAbstractItemView::inputMethodEvent(QInputMethodEvent *event) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery query)Description: Virtual method QVariant QAbstractItemView::inputMethodQuery(Qt::InputMethodQuery query) This method can be reimplemented in a derived class. [virtual,const] bool isIndexHidden(const QModelIndex index)Description: Virtual method bool QAbstractItemView::isIndexHidden(const QModelIndex &index) This method can be reimplemented in a derived class. [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference Use of this method is deprecated. Use _is_const_object? instead [const] QAbstractItemDelegate ptr itemDelegateDescription: Method QAbstractItemDelegate *QAbstractItemView::itemDelegate() Python specific notes:The object exposes a readable attribute 'itemDelegate'. This is the getter. [const] QAbstractItemDelegate ptr itemDelegate(const QModelIndex index)Description: Method QAbstractItemDelegate *QAbstractItemView::itemDelegate(const QModelIndex &index) Python specific notes:This method is available as method 'itemDelegate_' in Python void itemDelegate=(QAbstractItemDelegate ptr delegate)Description: Method void QAbstractItemView::setItemDelegate(QAbstractItemDelegate *delegate) Python specific notes:The object exposes a writable attribute 'itemDelegate'. This is the setter. [const] QAbstractItemDelegate ptr itemDelegateForColumn(int column)Description: Method QAbstractItemDelegate *QAbstractItemView::itemDelegateForColumn(int column) [const] QAbstractItemDelegate ptr itemDelegateForRow(int row)Description: Method QAbstractItemDelegate *QAbstractItemView::itemDelegateForRow(int row) [virtual] void keyPressEvent(QKeyEvent ptr event)Description: Virtual method void QAbstractItemView::keyPressEvent(QKeyEvent *event) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr arg1)Description: Virtual method void QAbstractItemView::keyReleaseEvent(QKeyEvent *) This method can be reimplemented in a derived class. [virtual] void keyboardSearch(string search)Description: Virtual method void QAbstractItemView::keyboardSearch(const QString &search) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QAbstractItemView::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QAbstractItemView::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QAbstractItemView::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QAbstractItemView::minimumSizeHint() This method can be reimplemented in a derived class. [const] QAbstractItemModel ptr modelDescription: Method QAbstractItemModel *QAbstractItemView::model() Python specific notes:The object exposes a readable attribute 'model'. This is the getter. The object exposes a readable attribute 'model'. This is the getter. The object exposes a readable attribute 'model'. This is the getter. The object exposes a readable attribute 'model'. This is the getter. The object exposes a readable attribute 'model'. This is the getter. void model=(QAbstractItemModel ptr model)Description: Method void QAbstractItemView::setModel(QAbstractItemModel *model) Python specific notes:The object exposes a writable attribute 'model'. This is the setter. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr event)Description: Virtual method void QAbstractItemView::mouseDoubleClickEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr event)Description: Virtual method void QAbstractItemView::mouseMoveEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr event)Description: Virtual method void QAbstractItemView::mousePressEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr event)Description: Virtual method void QAbstractItemView::mouseReleaseEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] QModelIndex moveCursor(unsigned int cursorAction,const Qt_QFlags_KeyboardModifier modifiers)Description: Virtual method QModelIndex QAbstractItemView::moveCursor(QAbstractItemView::CursorAction cursorAction, QFlags<Qt::KeyboardModifier> modifiers) This method can be reimplemented in a derived class. [virtual] void moveEvent(QMoveEvent ptr arg1)Description: Virtual method void QAbstractItemView::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QAbstractItemView new(QWidget ptr parent = 0)Description: Constructor QAbstractItemView::QAbstractItemView(QWidget *parent) This method creates an object of class QAbstractItemView. Python specific notes:This method is the default initializer of the object void openPersistentEditor(const QModelIndex index)Description: Method void QAbstractItemView::openPersistentEditor(const QModelIndex &index) [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QAbstractItemView::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr arg1)Description: Virtual method void QAbstractItemView::paintEvent(QPaintEvent *) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QAbstractItemView::paletteChange(const QPalette &) This method can be reimplemented in a derived class. [event] void pressed(const QModelIndex index)Description: Signal declaration for QAbstractItemView::pressed(const QModelIndex &index) You can bind a procedure to this signal. void qt_create(unsigned long arg1 = 0,bool initializeWindow = true,bool destroyOldWindow = true)Description: Method void QAbstractItemView::create(WId, bool initializeWindow, bool destroyOldWindow) This method is protected and can only be called from inside a derived class. void qt_destroy(bool destroyWindow = true,bool destroySubWindows = true)Description: Method void QAbstractItemView::destroy(bool destroyWindow, bool destroySubWindows) This method is protected and can only be called from inside a derived class. [const] int receivers(string signal)Description: Method int QAbstractItemView::receivers(const char *signal) This method is protected and can only be called from inside a derived class. [virtual] void resetDescription: Virtual method void QAbstractItemView::reset() This method can be reimplemented in a derived class. void resetInputContextDescription: Method void QAbstractItemView::resetInputContext() This method is protected and can only be called from inside a derived class. [virtual] void resizeEvent(QResizeEvent ptr event)Description: Virtual method void QAbstractItemView::resizeEvent(QResizeEvent *event) This method can be reimplemented in a derived class. [const] QModelIndex rootIndexDescription: Method QModelIndex QAbstractItemView::rootIndex() Python specific notes:The object exposes a readable attribute 'rootIndex'. This is the getter. The object exposes a readable attribute 'rootIndex'. This is the getter. The object exposes a readable attribute 'rootIndex'. This is the getter. The object exposes a readable attribute 'rootIndex'. This is the getter. The object exposes a readable attribute 'rootIndex'. This is the getter. void rootIndex=(const QModelIndex index)Description: Method void QAbstractItemView::setRootIndex(const QModelIndex &index) Python specific notes:The object exposes a writable attribute 'rootIndex'. This is the setter. [virtual] void rowsAboutToBeRemoved(const QModelIndex parent,int start,int end)Description: Virtual method void QAbstractItemView::rowsAboutToBeRemoved(const QModelIndex &parent, int start, int end) This method can be reimplemented in a derived class. [virtual] void rowsInserted(const QModelIndex parent,int start,int end)Description: Virtual method void QAbstractItemView::rowsInserted(const QModelIndex &parent, int start, int end) This method can be reimplemented in a derived class. void scheduleDelayedItemsLayoutDescription: Method void QAbstractItemView::scheduleDelayedItemsLayout() This method is protected and can only be called from inside a derived class. [virtual] void scrollContentsBy(int dx,int dy)Description: Virtual method void QAbstractItemView::scrollContentsBy(int dx, int dy) This method can be reimplemented in a derived class. void scrollDirtyRegion(int dx,int dy)Description: Method void QAbstractItemView::scrollDirtyRegion(int dx, int dy) This method is protected and can only be called from inside a derived class. [virtual] void scrollTo(const QModelIndex index,const QAbstractItemView_ScrollHint hint)Description: Virtual method void QAbstractItemView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) This method can be reimplemented in a derived class. void scrollToBottomDescription: Method void QAbstractItemView::scrollToBottom() void scrollToTopDescription: Method void QAbstractItemView::scrollToTop() [virtual] void selectAllDescription: Virtual method void QAbstractItemView::selectAll() This method can be reimplemented in a derived class. [virtual,const] QModelIndex[] selectedIndexesDescription: Virtual method QList<QModelIndex> QAbstractItemView::selectedIndexes() This method can be reimplemented in a derived class. [const] QAbstractItemView_SelectionBehavior selectionBehaviorDescription: Method QAbstractItemView::SelectionBehavior QAbstractItemView::selectionBehavior() Python specific notes:The object exposes a readable attribute 'selectionBehavior'. This is the getter. void selectionBehavior=(const QAbstractItemView_SelectionBehavior behavior)Description: Method void QAbstractItemView::setSelectionBehavior(QAbstractItemView::SelectionBehavior behavior) Python specific notes:The object exposes a writable attribute 'selectionBehavior'. This is the setter. [virtual] void selectionChanged(const QItemSelection selected,const QItemSelection deselected)Description: Virtual method void QAbstractItemView::selectionChanged(const QItemSelection &selected, const QItemSelection &deselected) This method can be reimplemented in a derived class. [virtual,const] QItemSelectionModel_QFlags_SelectionFlag selectionCommand(const QModelIndex index,const QEvent ptr event)Description: Virtual method QFlags<QItemSelectionModel::SelectionFlag> QAbstractItemView::selectionCommand(const QModelIndex &index, const QEvent *event) This method can be reimplemented in a derived class. [const] QAbstractItemView_SelectionMode selectionModeDescription: Method QAbstractItemView::SelectionMode QAbstractItemView::selectionMode() Python specific notes:The object exposes a readable attribute 'selectionMode'. This is the getter. void selectionMode=(const QAbstractItemView_SelectionMode mode)Description: Method void QAbstractItemView::setSelectionMode(QAbstractItemView::SelectionMode mode) Python specific notes:The object exposes a writable attribute 'selectionMode'. This is the setter. [const] QItemSelectionModel ptr selectionModelDescription: Method QItemSelectionModel *QAbstractItemView::selectionModel() Python specific notes:The object exposes a readable attribute 'selectionModel'. This is the getter. The object exposes a readable attribute 'selectionModel'. This is the getter. The object exposes a readable attribute 'selectionModel'. This is the getter. The object exposes a readable attribute 'selectionModel'. This is the getter. The object exposes a readable attribute 'selectionModel'. This is the getter. void selectionModel=(QItemSelectionModel ptr selectionModel)Description: Method void QAbstractItemView::setSelectionModel(QItemSelectionModel *selectionModel) Python specific notes:The object exposes a writable attribute 'selectionModel'. This is the setter. [const] QObject ptr senderDescription: Method QObject *QAbstractItemView::sender() This method is protected and can only be called from inside a derived class. void setAlternatingRowColors(bool enable)Description: Method void QAbstractItemView::setAlternatingRowColors(bool enable) Python specific notes:The object exposes a writable attribute 'alternatingRowColors'. This is the setter. void setAutoScroll(bool enable)Description: Method void QAbstractItemView::setAutoScroll(bool enable) Python specific notes:The object exposes a writable attribute 'autoScroll'. This is the setter. void setAutoScrollMargin(int margin)Description: Method void QAbstractItemView::setAutoScrollMargin(int margin) Python specific notes:The object exposes a writable attribute 'autoScrollMargin'. This is the setter. void setCurrentIndex(const QModelIndex index)Description: Method void QAbstractItemView::setCurrentIndex(const QModelIndex &index) Python specific notes:The object exposes a writable attribute 'currentIndex'. This is the setter. void setDefaultDropAction(const Qt_DropAction dropAction)Description: Method void QAbstractItemView::setDefaultDropAction(Qt::DropAction dropAction) Python specific notes:The object exposes a writable attribute 'defaultDropAction'. This is the setter. void setDirtyRegion(const QRegion region)Description: Method void QAbstractItemView::setDirtyRegion(const QRegion ®ion) This method is protected and can only be called from inside a derived class. void setDragDropMode(const QAbstractItemView_DragDropMode behavior)Description: Method void QAbstractItemView::setDragDropMode(QAbstractItemView::DragDropMode behavior) Python specific notes:The object exposes a writable attribute 'dragDropMode'. This is the setter. void setDragDropOverwriteMode(bool overwrite)Description: Method void QAbstractItemView::setDragDropOverwriteMode(bool overwrite) Python specific notes:The object exposes a writable attribute 'dragDropOverwriteMode'. This is the setter. void setDragEnabled(bool enable)Description: Method void QAbstractItemView::setDragEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'dragEnabled'. This is the setter. void setDropIndicatorShown(bool enable)Description: Method void QAbstractItemView::setDropIndicatorShown(bool enable) void setEditTriggers(const QAbstractItemView_QFlags_EditTrigger triggers)Description: Method void QAbstractItemView::setEditTriggers(QFlags<QAbstractItemView::EditTrigger> triggers) Python specific notes:The object exposes a writable attribute 'editTriggers'. This is the setter. void setHorizontalScrollMode(const QAbstractItemView_ScrollMode mode)Description: Method void QAbstractItemView::setHorizontalScrollMode(QAbstractItemView::ScrollMode mode) Python specific notes:The object exposes a writable attribute 'horizontalScrollMode'. This is the setter. void setHorizontalStepsPerItem(int steps)Description: Method void QAbstractItemView::setHorizontalStepsPerItem(int steps) This method is protected and can only be called from inside a derived class. void setIconSize(const QSize size)Description: Method void QAbstractItemView::setIconSize(const QSize &size) Python specific notes:The object exposes a writable attribute 'iconSize'. This is the setter. void setIndexWidget(const QModelIndex index,QWidget ptr widget)Description: Method void QAbstractItemView::setIndexWidget(const QModelIndex &index, QWidget *widget) void setItemDelegate(QAbstractItemDelegate ptr delegate)Description: Method void QAbstractItemView::setItemDelegate(QAbstractItemDelegate *delegate) Python specific notes:The object exposes a writable attribute 'itemDelegate'. This is the setter. void setItemDelegateForColumn(int column,QAbstractItemDelegate ptr delegate)Description: Method void QAbstractItemView::setItemDelegateForColumn(int column, QAbstractItemDelegate *delegate) void setItemDelegateForRow(int row,QAbstractItemDelegate ptr delegate)Description: Method void QAbstractItemView::setItemDelegateForRow(int row, QAbstractItemDelegate *delegate) [virtual] void setModel(QAbstractItemModel ptr model)Description: Virtual method void QAbstractItemView::setModel(QAbstractItemModel *model) This method can be reimplemented in a derived class. [virtual] void setRootIndex(const QModelIndex index)Description: Virtual method void QAbstractItemView::setRootIndex(const QModelIndex &index) This method can be reimplemented in a derived class. [virtual] void setSelection(const QRect rect,const QItemSelectionModel_QFlags_SelectionFlag command)Description: Virtual method void QAbstractItemView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command) This method can be reimplemented in a derived class. void setSelectionBehavior(const QAbstractItemView_SelectionBehavior behavior)Description: Method void QAbstractItemView::setSelectionBehavior(QAbstractItemView::SelectionBehavior behavior) Python specific notes:The object exposes a writable attribute 'selectionBehavior'. This is the setter. void setSelectionMode(const QAbstractItemView_SelectionMode mode)Description: Method void QAbstractItemView::setSelectionMode(QAbstractItemView::SelectionMode mode) Python specific notes:The object exposes a writable attribute 'selectionMode'. This is the setter. [virtual] void setSelectionModel(QItemSelectionModel ptr selectionModel)Description: Virtual method void QAbstractItemView::setSelectionModel(QItemSelectionModel *selectionModel) This method can be reimplemented in a derived class. void setState(unsigned int state)Description: Method void QAbstractItemView::setState(QAbstractItemView::State state) This method is protected and can only be called from inside a derived class. void setTabKeyNavigation(bool enable)Description: Method void QAbstractItemView::setTabKeyNavigation(bool enable) Python specific notes:The object exposes a writable attribute 'tabKeyNavigation'. This is the setter. void setTextElideMode(const Qt_TextElideMode mode)Description: Method void QAbstractItemView::setTextElideMode(Qt::TextElideMode mode) Python specific notes:The object exposes a writable attribute 'textElideMode'. This is the setter. void setVerticalScrollMode(const QAbstractItemView_ScrollMode mode)Description: Method void QAbstractItemView::setVerticalScrollMode(QAbstractItemView::ScrollMode mode) Python specific notes:The object exposes a writable attribute 'verticalScrollMode'. This is the setter. void setVerticalStepsPerItem(int steps)Description: Method void QAbstractItemView::setVerticalStepsPerItem(int steps) This method is protected and can only be called from inside a derived class. void setViewportMargins(int left,int top,int right,int bottom)Description: Method void QAbstractItemView::setViewportMargins(int left, int top, int right, int bottom) This method is protected and can only be called from inside a derived class. void setViewportMargins(const QMargins margins)Description: Method void QAbstractItemView::setViewportMargins(const QMargins &margins) This method is protected and can only be called from inside a derived class. [virtual] void setVisible(bool visible)Description: Virtual method void QAbstractItemView::setVisible(bool visible) This method can be reimplemented in a derived class. void setupViewport(QWidget ptr viewport)Description: Method void QAbstractItemView::setupViewport(QWidget *viewport) This method is protected and can only be called from inside a derived class. [const] bool showDropIndicatorDescription: Method bool QAbstractItemView::showDropIndicator() Python specific notes:The object exposes a readable attribute 'showDropIndicator'. This is the getter. [virtual] void showEvent(QShowEvent ptr arg1)Description: Virtual method void QAbstractItemView::showEvent(QShowEvent *) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QAbstractItemView::sizeHint() This method can be reimplemented in a derived class. [virtual,const] int sizeHintForColumn(int column)Description: Virtual method int QAbstractItemView::sizeHintForColumn(int column) This method can be reimplemented in a derived class. [const] QSize sizeHintForIndex(const QModelIndex index)Description: Method QSize QAbstractItemView::sizeHintForIndex(const QModelIndex &index) [virtual,const] int sizeHintForRow(int row)Description: Virtual method int QAbstractItemView::sizeHintForRow(int row) This method can be reimplemented in a derived class. void startAutoScrollDescription: Method void QAbstractItemView::startAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void startDrag(const Qt_QFlags_DropAction supportedActions)Description: Virtual method void QAbstractItemView::startDrag(QFlags<Qt::DropAction> supportedActions) This method can be reimplemented in a derived class. [const] unsigned int stateDescription: Method QAbstractItemView::State QAbstractItemView::state() This method is protected and can only be called from inside a derived class. [static] QMetaObject staticMetaObjectDescription: Obtains the static MetaObject for this class. void stopAutoScrollDescription: Method void QAbstractItemView::stopAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QAbstractItemView::styleChange(QStyle &) This method can be reimplemented in a derived class. [const] bool tabKeyNavigationDescription: Method bool QAbstractItemView::tabKeyNavigation() Python specific notes:The object exposes a readable attribute 'tabKeyNavigation'. This is the getter. void tabKeyNavigation=(bool enable)Description: Method void QAbstractItemView::setTabKeyNavigation(bool enable) Python specific notes:The object exposes a writable attribute 'tabKeyNavigation'. This is the setter. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QAbstractItemView::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [const] Qt_TextElideMode textElideModeDescription: Method Qt::TextElideMode QAbstractItemView::textElideMode() Python specific notes:The object exposes a readable attribute 'textElideMode'. This is the getter. void textElideMode=(const Qt_TextElideMode mode)Description: Method void QAbstractItemView::setTextElideMode(Qt::TextElideMode mode) Python specific notes:The object exposes a writable attribute 'textElideMode'. This is the setter. [virtual] void timerEvent(QTimerEvent ptr event)Description: Virtual method void QAbstractItemView::timerEvent(QTimerEvent *event) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QAbstractItemView::tr(const char *s, const char *c) This method is static and can be called without an instance. [static] string tr(string s,string c,int n)Description: Static method QString QAbstractItemView::tr(const char *s, const char *c, int n) This method is static and can be called without an instance. [static] string trUtf8(string s,string c = 0)Description: Static method QString QAbstractItemView::trUtf8(const char *s, const char *c) This method is static and can be called without an instance. [static] string trUtf8(string s,string c,int n)Description: Static method QString QAbstractItemView::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. void update(const QRegion arg1)Description: Method void QAbstractItemView::update(const QRegion &) void update(const QModelIndex index)Description: Method void QAbstractItemView::update(const QModelIndex &index) [virtual] void updateEditorDataDescription: Virtual method void QAbstractItemView::updateEditorData() This method can be reimplemented in a derived class. [virtual] void updateEditorGeometriesDescription: Virtual method void QAbstractItemView::updateEditorGeometries() This method can be reimplemented in a derived class. [virtual] void updateGeometriesDescription: Virtual method void QAbstractItemView::updateGeometries() This method can be reimplemented in a derived class. void updateMicroFocusDescription: Method void QAbstractItemView::updateMicroFocus() This method is protected and can only be called from inside a derived class. [virtual,const] int verticalOffsetDescription: Virtual method int QAbstractItemView::verticalOffset() This method can be reimplemented in a derived class. [const] QAbstractItemView_ScrollMode verticalScrollModeDescription: Method QAbstractItemView::ScrollMode QAbstractItemView::verticalScrollMode() Python specific notes:The object exposes a readable attribute 'verticalScrollMode'. This is the getter. void verticalScrollMode=(const QAbstractItemView_ScrollMode mode)Description: Method void QAbstractItemView::setVerticalScrollMode(QAbstractItemView::ScrollMode mode) Python specific notes:The object exposes a writable attribute 'verticalScrollMode'. This is the setter. [virtual] void verticalScrollbarAction(int action)Description: Virtual method void QAbstractItemView::verticalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void verticalScrollbarValueChanged(int value)Description: Virtual method void QAbstractItemView::verticalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int verticalStepsPerItemDescription: Method int QAbstractItemView::verticalStepsPerItem() This method is protected and can only be called from inside a derived class. [virtual,const] QStyleOptionViewItem viewOptionsDescription: Virtual method QStyleOptionViewItem QAbstractItemView::viewOptions() This method can be reimplemented in a derived class. [event] void viewportEnteredDescription: Signal declaration for QAbstractItemView::viewportEntered() You can bind a procedure to this signal. [virtual] bool viewportEvent(QEvent ptr event)Description: Virtual method bool QAbstractItemView::viewportEvent(QEvent *event) This method can be reimplemented in a derived class. [virtual,const] QRect visualRect(const QModelIndex index)Description: Virtual method QRect QAbstractItemView::visualRect(const QModelIndex &index) This method can be reimplemented in a derived class. [virtual,const] QRegion visualRegionForSelection(const QItemSelection selection)Description: Virtual method QRegion QAbstractItemView::visualRegionForSelection(const QItemSelection &selection) This method can be reimplemented in a derived class. [virtual] void wheelEvent(QWheelEvent ptr arg1)Description: Virtual method void QAbstractItemView::wheelEvent(QWheelEvent *) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QAbstractItemView::windowActivationChange(bool) This method can be reimplemented in a derived class. |