API reference - Class QTreeViewNotation used in Ruby API documentation Description: Binding of QTreeView Class hierarchy: QTreeView » QAbstractItemView » QAbstractScrollArea » QFrame » QWidget » QObject
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 descriptionvoid _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 QTreeView::actionEvent(QActionEvent *) This method can be reimplemented in a derived class. [event] void activated(const QModelIndex index)Description: Signal declaration for QTreeView::activated(const QModelIndex &index) You can bind a procedure to this signal. [const] bool allColumnsShowFocusDescription: Method bool QTreeView::allColumnsShowFocus() Python specific notes:The object exposes a readable attribute 'allColumnsShowFocus'. This is the getter. void allColumnsShowFocus=(bool enable)Description: Method void QTreeView::setAllColumnsShowFocus(bool enable) Python specific notes:The object exposes a writable attribute 'allColumnsShowFocus'. This is the setter. [const] bool animatedDescription: Method bool QTreeView::isAnimated() Python specific notes:The object exposes a readable attribute 'animated'. This is the getter. void animated=(bool enable)Description: Method void QTreeView::setAnimated(bool enable) Python specific notes:The object exposes a writable attribute 'animated'. This is the setter. [const] int autoExpandDelayDescription: Method int QTreeView::autoExpandDelay() Python specific notes:The object exposes a readable attribute 'autoExpandDelay'. This is the getter. void autoExpandDelay=(int delay)Description: Method void QTreeView::setAutoExpandDelay(int delay) Python specific notes:The object exposes a writable attribute 'autoExpandDelay'. This is the setter. [virtual] void changeEvent(QEvent ptr arg1)Description: Virtual method void QTreeView::changeEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void childEvent(QChildEvent ptr arg1)Description: Virtual method void QTreeView::childEvent(QChildEvent *) This method can be reimplemented in a derived class. [event] void clicked(const QModelIndex index)Description: Signal declaration for QTreeView::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 QTreeView::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 QTreeView::closeEvent(QCloseEvent *) This method can be reimplemented in a derived class. void collapse(const QModelIndex index)Description: Method void QTreeView::collapse(const QModelIndex &index) void collapseAllDescription: Method void QTreeView::collapseAll() [event] void collapsed(const QModelIndex index)Description: Signal declaration for QTreeView::collapsed(const QModelIndex &index) You can bind a procedure to this signal. [const] int columnAt(int x)Description: Method int QTreeView::columnAt(int x) void columnCountChanged(int oldCount,int newCount)Description: Method void QTreeView::columnCountChanged(int oldCount, int newCount) This method is protected and can only be called from inside a derived class. void columnMovedDescription: Method void QTreeView::columnMoved() This method is protected and can only be called from inside a derived class. void columnResized(int column,int oldSize,int newSize)Description: Method void QTreeView::columnResized(int column, int oldSize, int newSize) This method is protected and can only be called from inside a derived class. [const] int columnViewportPosition(int column)Description: Method int QTreeView::columnViewportPosition(int column) [const] int columnWidth(int column)Description: Method int QTreeView::columnWidth(int column) [virtual] void commitData(QWidget ptr editor)Description: Virtual method void QTreeView::commitData(QWidget *editor) This method can be reimplemented in a derived class. [virtual] void contextMenuEvent(QContextMenuEvent ptr arg1)Description: Virtual method void QTreeView::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 QTreeView::currentChanged(const QModelIndex ¤t, const QModelIndex &previous) This method can be reimplemented in a derived class. [event] void customContextMenuRequested(const QPoint pos)Description: Signal declaration for QTreeView::customContextMenuRequested(const QPoint &pos) You can bind a procedure to this signal. [virtual] void customEvent(QEvent ptr arg1)Description: Virtual method void QTreeView::customEvent(QEvent *) This method can be reimplemented in a derived class. [virtual] void dataChanged(const QModelIndex topLeft,const QModelIndex bottomRight)Description: Virtual method void QTreeView::dataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight) This method can be reimplemented in a derived class. 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 QTreeView::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 QTreeView::dirtyRegionOffset() This method is protected and can only be called from inside a derived class. [virtual] void disconnectNotify(string signal)Description: Virtual method void QTreeView::disconnectNotify(const char *signal) This method can be reimplemented in a derived class. void doAutoScrollDescription: Method void QTreeView::doAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void doItemsLayoutDescription: Virtual method void QTreeView::doItemsLayout() This method can be reimplemented in a derived class. [event] void doubleClicked(const QModelIndex index)Description: Signal declaration for QTreeView::doubleClicked(const QModelIndex &index) You can bind a procedure to this signal. [virtual] void dragEnterEvent(QDragEnterEvent ptr event)Description: Virtual method void QTreeView::dragEnterEvent(QDragEnterEvent *event) This method can be reimplemented in a derived class. [virtual] void dragLeaveEvent(QDragLeaveEvent ptr event)Description: Virtual method void QTreeView::dragLeaveEvent(QDragLeaveEvent *event) This method can be reimplemented in a derived class. [virtual] void dragMoveEvent(QDragMoveEvent ptr event)Description: Virtual method void QTreeView::dragMoveEvent(QDragMoveEvent *event) This method can be reimplemented in a derived class. [virtual,const] void drawBranches(QPainter ptr painter,const QRect rect,const QModelIndex index)Description: Virtual method void QTreeView::drawBranches(QPainter *painter, const QRect &rect, const QModelIndex &index) This method can be reimplemented in a derived class. void drawFrame(QPainter ptr arg1)Description: Method void QTreeView::drawFrame(QPainter *) This method is protected and can only be called from inside a derived class. [virtual,const] void drawRow(QPainter ptr painter,const QStyleOptionViewItem options,const QModelIndex index)Description: Virtual method void QTreeView::drawRow(QPainter *painter, const QStyleOptionViewItem &options, const QModelIndex &index) This method can be reimplemented in a derived class. [const] void drawTree(QPainter ptr painter,const QRegion region)Description: Method void QTreeView::drawTree(QPainter *painter, const QRegion ®ion) This method is protected and can only be called from inside a derived class. [virtual] void dropEvent(QDropEvent ptr event)Description: Virtual method void QTreeView::dropEvent(QDropEvent *event) This method can be reimplemented in a derived class. [const] unsigned int dropIndicatorPositionDescription: Method QAbstractItemView::DropIndicatorPosition QTreeView::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 QTreeView::edit(const QModelIndex &index, QAbstractItemView::EditTrigger trigger, QEvent *event) This method can be reimplemented in a derived class. [virtual] void editorDestroyed(QObject ptr editor)Description: Virtual method void QTreeView::editorDestroyed(QObject *editor) This method can be reimplemented in a derived class. [virtual] void enabledChange(bool arg1)Description: Virtual method void QTreeView::enabledChange(bool) This method can be reimplemented in a derived class. [virtual] void enterEvent(QEvent ptr arg1)Description: Virtual method void QTreeView::enterEvent(QEvent *) This method can be reimplemented in a derived class. [event] void entered(const QModelIndex index)Description: Signal declaration for QTreeView::entered(const QModelIndex &index) You can bind a procedure to this signal. [virtual] bool event(QEvent ptr event)Description: Virtual method bool QTreeView::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 QTreeView::eventFilter(QObject *, QEvent *) This method can be reimplemented in a derived class. void executeDelayedItemsLayoutDescription: Method void QTreeView::executeDelayedItemsLayout() This method is protected and can only be called from inside a derived class. void expand(const QModelIndex index)Description: Method void QTreeView::expand(const QModelIndex &index) void expandAllDescription: Method void QTreeView::expandAll() void expandToDepth(int depth)Description: Method void QTreeView::expandToDepth(int depth) [event] void expanded(const QModelIndex index)Description: Signal declaration for QTreeView::expanded(const QModelIndex &index) You can bind a procedure to this signal. [const] bool expandsOnDoubleClickDescription: Method bool QTreeView::expandsOnDoubleClick() Python specific notes:The object exposes a readable attribute 'expandsOnDoubleClick'. This is the getter. void expandsOnDoubleClick=(bool enable)Description: Method void QTreeView::setExpandsOnDoubleClick(bool enable) Python specific notes:The object exposes a writable attribute 'expandsOnDoubleClick'. This is the setter. [virtual] void focusInEvent(QFocusEvent ptr event)Description: Virtual method void QTreeView::focusInEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusNextChildDescription: Method bool QTreeView::focusNextChild() This method is protected and can only be called from inside a derived class. [virtual] bool focusNextPrevChild(bool next)Description: Virtual method bool QTreeView::focusNextPrevChild(bool next) This method can be reimplemented in a derived class. [virtual] void focusOutEvent(QFocusEvent ptr event)Description: Virtual method void QTreeView::focusOutEvent(QFocusEvent *event) This method can be reimplemented in a derived class. bool focusPreviousChildDescription: Method bool QTreeView::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 QTreeView::fontChange(const QFont &) This method can be reimplemented in a derived class. [const] QHeaderView ptr headerDescription: Method QHeaderView *QTreeView::header() Python specific notes:The object exposes a readable attribute 'header'. This is the getter. void header=(QHeaderView ptr header)Description: Method void QTreeView::setHeader(QHeaderView *header) Python specific notes:The object exposes a writable attribute 'header'. This is the setter. [const] bool headerHiddenDescription: Method bool QTreeView::isHeaderHidden() Python specific notes:The object exposes a readable attribute 'headerHidden'. This is the getter. void headerHidden=(bool hide)Description: Method void QTreeView::setHeaderHidden(bool hide) Python specific notes:The object exposes a writable attribute 'headerHidden'. This is the setter. [virtual,const] int heightForWidth(int arg1)Description: Virtual method int QTreeView::heightForWidth(int) This method can be reimplemented in a derived class. void hideColumn(int column)Description: Method void QTreeView::hideColumn(int column) [virtual] void hideEvent(QHideEvent ptr arg1)Description: Virtual method void QTreeView::hideEvent(QHideEvent *) This method can be reimplemented in a derived class. [virtual,const] int horizontalOffsetDescription: Virtual method int QTreeView::horizontalOffset() This method can be reimplemented in a derived class. [virtual] void horizontalScrollbarAction(int action)Description: Virtual method void QTreeView::horizontalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void horizontalScrollbarValueChanged(int value)Description: Virtual method void QTreeView::horizontalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int horizontalStepsPerItemDescription: Method int QTreeView::horizontalStepsPerItem() This method is protected and can only be called from inside a derived class. [const] int indentationDescription: Method int QTreeView::indentation() Python specific notes:The object exposes a readable attribute 'indentation'. This is the getter. void indentation=(int i)Description: Method void QTreeView::setIndentation(int i) Python specific notes:The object exposes a writable attribute 'indentation'. This is the setter. [const] QModelIndex indexAbove(const QModelIndex index)Description: Method QModelIndex QTreeView::indexAbove(const QModelIndex &index) [virtual,const] QModelIndex indexAt(const QPoint p)Description: Virtual method QModelIndex QTreeView::indexAt(const QPoint &p) This method can be reimplemented in a derived class. [const] QModelIndex indexBelow(const QModelIndex index)Description: Method QModelIndex QTreeView::indexBelow(const QModelIndex &index) [const] int indexRowSizeHint(const QModelIndex index)Description: Method int QTreeView::indexRowSizeHint(const QModelIndex &index) This method is protected and can only be called from inside a derived class. [virtual] void inputMethodEvent(QInputMethodEvent ptr event)Description: Virtual method void QTreeView::inputMethodEvent(QInputMethodEvent *event) This method can be reimplemented in a derived class. [virtual,const] QVariant inputMethodQuery(const Qt_InputMethodQuery query)Description: Virtual method QVariant QTreeView::inputMethodQuery(Qt::InputMethodQuery query) This method can be reimplemented in a derived class. [const] bool isAnimated?Description: Method bool QTreeView::isAnimated() Python specific notes:The object exposes a readable attribute 'animated'. This is the getter. [const] bool isColumnHidden?(int column)Description: Method bool QTreeView::isColumnHidden(int column) [const] bool isExpanded?(const QModelIndex index)Description: Method bool QTreeView::isExpanded(const QModelIndex &index) [const] bool isFirstColumnSpanned?(int row,const QModelIndex parent)Description: Method bool QTreeView::isFirstColumnSpanned(int row, const QModelIndex &parent) [const] bool isHeaderHidden?Description: Method bool QTreeView::isHeaderHidden() Python specific notes:The object exposes a readable attribute 'headerHidden'. This is the getter. [virtual,const] bool isIndexHidden(const QModelIndex index)Description: Virtual method bool QTreeView::isIndexHidden(const QModelIndex &index) This method can be reimplemented in a derived class. [const] bool isRowHidden?(int row,const QModelIndex parent)Description: Method bool QTreeView::isRowHidden(int row, const QModelIndex &parent) [const] bool isSortingEnabled?Description: Method bool QTreeView::isSortingEnabled() Python specific notes:The object exposes a readable attribute 'sortingEnabled'. This is the getter. [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] bool itemsExpandableDescription: Method bool QTreeView::itemsExpandable() Python specific notes:The object exposes a readable attribute 'itemsExpandable'. This is the getter. void itemsExpandable=(bool enable)Description: Method void QTreeView::setItemsExpandable(bool enable) Python specific notes:The object exposes a writable attribute 'itemsExpandable'. This is the setter. [virtual] void keyPressEvent(QKeyEvent ptr event)Description: Virtual method void QTreeView::keyPressEvent(QKeyEvent *event) This method can be reimplemented in a derived class. [virtual] void keyReleaseEvent(QKeyEvent ptr arg1)Description: Virtual method void QTreeView::keyReleaseEvent(QKeyEvent *) This method can be reimplemented in a derived class. [virtual] void keyboardSearch(string search)Description: Virtual method void QTreeView::keyboardSearch(const QString &search) This method can be reimplemented in a derived class. [virtual] void languageChangeDescription: Virtual method void QTreeView::languageChange() This method can be reimplemented in a derived class. [virtual] void leaveEvent(QEvent ptr arg1)Description: Virtual method void QTreeView::leaveEvent(QEvent *) This method can be reimplemented in a derived class. [virtual,const] int metric(const QPaintDevice_PaintDeviceMetric arg1)Description: Virtual method int QTreeView::metric(QPaintDevice::PaintDeviceMetric) This method can be reimplemented in a derived class. [virtual,const] QSize minimumSizeHintDescription: Virtual method QSize QTreeView::minimumSizeHint() This method can be reimplemented in a derived class. void model=(QAbstractItemModel ptr model)Description: Method void QTreeView::setModel(QAbstractItemModel *model) This is a reimplementation of QAbstractItemView::setModel Python specific notes:The object exposes a writable attribute 'model'. This is the setter. [virtual] void mouseDoubleClickEvent(QMouseEvent ptr event)Description: Virtual method void QTreeView::mouseDoubleClickEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseMoveEvent(QMouseEvent ptr event)Description: Virtual method void QTreeView::mouseMoveEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mousePressEvent(QMouseEvent ptr event)Description: Virtual method void QTreeView::mousePressEvent(QMouseEvent *event) This method can be reimplemented in a derived class. [virtual] void mouseReleaseEvent(QMouseEvent ptr event)Description: Virtual method void QTreeView::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 QTreeView::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 QTreeView::moveEvent(QMoveEvent *) This method can be reimplemented in a derived class. [static] new QTreeView new(QWidget ptr parent = 0)Description: Constructor QTreeView::QTreeView(QWidget *parent) This method creates an object of class QTreeView. Python specific notes:This method is the default initializer of the object [virtual,const] QPaintEngine ptr paintEngineDescription: Virtual method QPaintEngine *QTreeView::paintEngine() This method can be reimplemented in a derived class. [virtual] void paintEvent(QPaintEvent ptr event)Description: Virtual method void QTreeView::paintEvent(QPaintEvent *event) This method can be reimplemented in a derived class. [virtual] void paletteChange(const QPalette arg1)Description: Virtual method void QTreeView::paletteChange(const QPalette &) This method can be reimplemented in a derived class. [event] void pressed(const QModelIndex index)Description: Signal declaration for QTreeView::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 QTreeView::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 QTreeView::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 QTreeView::receivers(const char *signal) This method is protected and can only be called from inside a derived class. void reexpandDescription: Method void QTreeView::reexpand() This method is protected and can only be called from inside a derived class. [virtual] void resetDescription: Virtual method void QTreeView::reset() This method can be reimplemented in a derived class. void resetInputContextDescription: Method void QTreeView::resetInputContext() This method is protected and can only be called from inside a derived class. void resizeColumnToContents(int column)Description: Method void QTreeView::resizeColumnToContents(int column) [virtual] void resizeEvent(QResizeEvent ptr event)Description: Virtual method void QTreeView::resizeEvent(QResizeEvent *event) This method can be reimplemented in a derived class. void rootIndex=(const QModelIndex index)Description: Method void QTreeView::setRootIndex(const QModelIndex &index) This is a reimplementation of QAbstractItemView::setRootIndex Python specific notes:The object exposes a writable attribute 'rootIndex'. This is the setter. [const] bool rootIsDecoratedDescription: Method bool QTreeView::rootIsDecorated() Python specific notes:The object exposes a readable attribute 'rootIsDecorated'. This is the getter. void rootIsDecorated=(bool show)Description: Method void QTreeView::setRootIsDecorated(bool show) Python specific notes:The object exposes a writable attribute 'rootIsDecorated'. This is the setter. [const] int rowHeight(const QModelIndex index)Description: Method int QTreeView::rowHeight(const QModelIndex &index) This method is protected and can only be called from inside a derived class. [virtual] void rowsAboutToBeRemoved(const QModelIndex parent,int start,int end)Description: Virtual method void QTreeView::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 QTreeView::rowsInserted(const QModelIndex &parent, int start, int end) This method can be reimplemented in a derived class. void rowsRemoved(const QModelIndex parent,int first,int last)Description: Method void QTreeView::rowsRemoved(const QModelIndex &parent, int first, int last) This method is protected and can only be called from inside a derived class. void scheduleDelayedItemsLayoutDescription: Method void QTreeView::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 QTreeView::scrollContentsBy(int dx, int dy) This method can be reimplemented in a derived class. void scrollDirtyRegion(int dx,int dy)Description: Method void QTreeView::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 QTreeView::scrollTo(const QModelIndex &index, QAbstractItemView::ScrollHint hint) This method can be reimplemented in a derived class. [virtual] void selectAllDescription: Virtual method void QTreeView::selectAll() This method can be reimplemented in a derived class. [virtual,const] QModelIndex[] selectedIndexesDescription: Virtual method QList<QModelIndex> QTreeView::selectedIndexes() This method can be reimplemented in a derived class. [virtual] void selectionChanged(const QItemSelection selected,const QItemSelection deselected)Description: Virtual method void QTreeView::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> QTreeView::selectionCommand(const QModelIndex &index, const QEvent *event) This method can be reimplemented in a derived class. void selectionModel=(QItemSelectionModel ptr selectionModel)Description: Method void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel) This is a reimplementation of QAbstractItemView::setSelectionModel Python specific notes:The object exposes a writable attribute 'selectionModel'. This is the setter. [const] QObject ptr senderDescription: Method QObject *QTreeView::sender() This method is protected and can only be called from inside a derived class. void setAllColumnsShowFocus(bool enable)Description: Method void QTreeView::setAllColumnsShowFocus(bool enable) Python specific notes:The object exposes a writable attribute 'allColumnsShowFocus'. This is the setter. void setAnimated(bool enable)Description: Method void QTreeView::setAnimated(bool enable) Python specific notes:The object exposes a writable attribute 'animated'. This is the setter. void setAutoExpandDelay(int delay)Description: Method void QTreeView::setAutoExpandDelay(int delay) Python specific notes:The object exposes a writable attribute 'autoExpandDelay'. This is the setter. void setColumnHidden(int column,bool hide)Description: Method void QTreeView::setColumnHidden(int column, bool hide) void setColumnWidth(int column,int width)Description: Method void QTreeView::setColumnWidth(int column, int width) void setDirtyRegion(const QRegion region)Description: Method void QTreeView::setDirtyRegion(const QRegion ®ion) This method is protected and can only be called from inside a derived class. void setExpanded(const QModelIndex index,bool expand)Description: Method void QTreeView::setExpanded(const QModelIndex &index, bool expand) void setExpandsOnDoubleClick(bool enable)Description: Method void QTreeView::setExpandsOnDoubleClick(bool enable) Python specific notes:The object exposes a writable attribute 'expandsOnDoubleClick'. This is the setter. void setFirstColumnSpanned(int row,const QModelIndex parent,bool span)Description: Method void QTreeView::setFirstColumnSpanned(int row, const QModelIndex &parent, bool span) void setHeader(QHeaderView ptr header)Description: Method void QTreeView::setHeader(QHeaderView *header) Python specific notes:The object exposes a writable attribute 'header'. This is the setter. void setHeaderHidden(bool hide)Description: Method void QTreeView::setHeaderHidden(bool hide) Python specific notes:The object exposes a writable attribute 'headerHidden'. This is the setter. void setHorizontalStepsPerItem(int steps)Description: Method void QTreeView::setHorizontalStepsPerItem(int steps) This method is protected and can only be called from inside a derived class. void setIndentation(int i)Description: Method void QTreeView::setIndentation(int i) Python specific notes:The object exposes a writable attribute 'indentation'. This is the setter. void setItemsExpandable(bool enable)Description: Method void QTreeView::setItemsExpandable(bool enable) Python specific notes:The object exposes a writable attribute 'itemsExpandable'. This is the setter. [virtual] void setModel(QAbstractItemModel ptr model)Description: Virtual method void QTreeView::setModel(QAbstractItemModel *model) This method can be reimplemented in a derived class. [virtual] void setRootIndex(const QModelIndex index)Description: Virtual method void QTreeView::setRootIndex(const QModelIndex &index) This method can be reimplemented in a derived class. void setRootIsDecorated(bool show)Description: Method void QTreeView::setRootIsDecorated(bool show) Python specific notes:The object exposes a writable attribute 'rootIsDecorated'. This is the setter. void setRowHidden(int row,const QModelIndex parent,bool hide)Description: Method void QTreeView::setRowHidden(int row, const QModelIndex &parent, bool hide) [virtual] void setSelection(const QRect rect,const QItemSelectionModel_QFlags_SelectionFlag command)Description: Virtual method void QTreeView::setSelection(const QRect &rect, QFlags<QItemSelectionModel::SelectionFlag> command) This method can be reimplemented in a derived class. [virtual] void setSelectionModel(QItemSelectionModel ptr selectionModel)Description: Virtual method void QTreeView::setSelectionModel(QItemSelectionModel *selectionModel) This method can be reimplemented in a derived class. void setSortingEnabled(bool enable)Description: Method void QTreeView::setSortingEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'sortingEnabled'. This is the setter. void setState(unsigned int state)Description: Method void QTreeView::setState(QAbstractItemView::State state) This method is protected and can only be called from inside a derived class. void setUniformRowHeights(bool uniform)Description: Method void QTreeView::setUniformRowHeights(bool uniform) Python specific notes:The object exposes a writable attribute 'uniformRowHeights'. This is the setter. void setVerticalStepsPerItem(int steps)Description: Method void QTreeView::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 QTreeView::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 QTreeView::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 QTreeView::setVisible(bool visible) This method can be reimplemented in a derived class. void setWordWrap(bool on)Description: Method void QTreeView::setWordWrap(bool on) Python specific notes:The object exposes a writable attribute 'wordWrap'. This is the setter. void setupViewport(QWidget ptr viewport)Description: Method void QTreeView::setupViewport(QWidget *viewport) This method is protected and can only be called from inside a derived class. void showColumn(int column)Description: Method void QTreeView::showColumn(int column) [virtual] void showEvent(QShowEvent ptr arg1)Description: Virtual method void QTreeView::showEvent(QShowEvent *) This method can be reimplemented in a derived class. [virtual,const] QSize sizeHintDescription: Virtual method QSize QTreeView::sizeHint() This method can be reimplemented in a derived class. [virtual,const] int sizeHintForColumn(int column)Description: Virtual method int QTreeView::sizeHintForColumn(int column) This method can be reimplemented in a derived class. [virtual,const] int sizeHintForRow(int row)Description: Virtual method int QTreeView::sizeHintForRow(int row) This method can be reimplemented in a derived class. void sortByColumn(int column,const Qt_SortOrder order)Description: Method void QTreeView::sortByColumn(int column, Qt::SortOrder order) void sortByColumn(int column)Description: Method void QTreeView::sortByColumn(int column) [const] bool sortingEnabledDescription: Method bool QTreeView::isSortingEnabled() Python specific notes:The object exposes a readable attribute 'sortingEnabled'. This is the getter. void sortingEnabled=(bool enable)Description: Method void QTreeView::setSortingEnabled(bool enable) Python specific notes:The object exposes a writable attribute 'sortingEnabled'. This is the setter. void startAutoScrollDescription: Method void QTreeView::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 QTreeView::startDrag(QFlags<Qt::DropAction> supportedActions) This method can be reimplemented in a derived class. [const] unsigned int stateDescription: Method QAbstractItemView::State QTreeView::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 QTreeView::stopAutoScroll() This method is protected and can only be called from inside a derived class. [virtual] void styleChange(QStyle arg1)Description: Virtual method void QTreeView::styleChange(QStyle &) This method can be reimplemented in a derived class. [virtual] void tabletEvent(QTabletEvent ptr arg1)Description: Virtual method void QTreeView::tabletEvent(QTabletEvent *) This method can be reimplemented in a derived class. [virtual] void timerEvent(QTimerEvent ptr event)Description: Virtual method void QTreeView::timerEvent(QTimerEvent *event) This method can be reimplemented in a derived class. [static] string tr(string s,string c = 0)Description: Static method QString QTreeView::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 QTreeView::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 QTreeView::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 QTreeView::trUtf8(const char *s, const char *c, int n) This method is static and can be called without an instance. [const] bool uniformRowHeightsDescription: Method bool QTreeView::uniformRowHeights() Python specific notes:The object exposes a readable attribute 'uniformRowHeights'. This is the getter. void uniformRowHeights=(bool uniform)Description: Method void QTreeView::setUniformRowHeights(bool uniform) Python specific notes:The object exposes a writable attribute 'uniformRowHeights'. This is the setter. [virtual] void updateEditorDataDescription: Virtual method void QTreeView::updateEditorData() This method can be reimplemented in a derived class. [virtual] void updateEditorGeometriesDescription: Virtual method void QTreeView::updateEditorGeometries() This method can be reimplemented in a derived class. [virtual] void updateGeometriesDescription: Virtual method void QTreeView::updateGeometries() This method can be reimplemented in a derived class. void updateMicroFocusDescription: Method void QTreeView::updateMicroFocus() This method is protected and can only be called from inside a derived class. [virtual,const] int verticalOffsetDescription: Virtual method int QTreeView::verticalOffset() This method can be reimplemented in a derived class. [virtual] void verticalScrollbarAction(int action)Description: Virtual method void QTreeView::verticalScrollbarAction(int action) This method can be reimplemented in a derived class. [virtual] void verticalScrollbarValueChanged(int value)Description: Virtual method void QTreeView::verticalScrollbarValueChanged(int value) This method can be reimplemented in a derived class. [const] int verticalStepsPerItemDescription: Method int QTreeView::verticalStepsPerItem() This method is protected and can only be called from inside a derived class. [virtual,const] QStyleOptionViewItem viewOptionsDescription: Virtual method QStyleOptionViewItem QTreeView::viewOptions() This method can be reimplemented in a derived class. [event] void viewportEnteredDescription: Signal declaration for QTreeView::viewportEntered() You can bind a procedure to this signal. [virtual] bool viewportEvent(QEvent ptr event)Description: Virtual method bool QTreeView::viewportEvent(QEvent *event) This method can be reimplemented in a derived class. [virtual,const] QRect visualRect(const QModelIndex index)Description: Virtual method QRect QTreeView::visualRect(const QModelIndex &index) This method can be reimplemented in a derived class. [virtual,const] QRegion visualRegionForSelection(const QItemSelection selection)Description: Virtual method QRegion QTreeView::visualRegionForSelection(const QItemSelection &selection) This method can be reimplemented in a derived class. [virtual] void wheelEvent(QWheelEvent ptr arg1)Description: Virtual method void QTreeView::wheelEvent(QWheelEvent *) This method can be reimplemented in a derived class. [virtual] void windowActivationChange(bool arg1)Description: Virtual method void QTreeView::windowActivationChange(bool) This method can be reimplemented in a derived class. [const] bool wordWrapDescription: Method bool QTreeView::wordWrap() Python specific notes:The object exposes a readable attribute 'wordWrap'. This is the getter. void wordWrap=(bool on)Description: Method void QTreeView::setWordWrap(bool on) Python specific notes:The object exposes a writable attribute 'wordWrap'. This is the setter. |