Top "Qtreeview" questions

QTreeView is a class in Qt framework.

QTreeView multiple column, possible?

I'm using QStandardItemModel with a QTreeView, I wanted the left pane to show the nodes, and the right pane to …

qt4 qtreeview qt4.7
Custom text color for certain indexes in QTreeView

I would like to draw texts in one of the columns in a QTreeView widget using a custom color (depending …

c++ qt qtreeview
QFileSystemModel setRootPath

I am attempting to create a Qt application which shows the contents of a folder (“Users” folder in Mac OS). …

c++ macos qt qtreeview qfilesystemmodel
QTreeView with custom items

I'm writing my first Qt application with PySide and am having some trouble creating a custom tree view. I'd like …

python pyside qtreeview qabstractitemmodel
Insert and delete rows in QTreeView

Good day, I Have base model inherited from QAbstractItemModel, and some background threads which notify this model from time to …

c++ qt qtreeview qabstractitemmodel
Get and set the active row in QTreeview programmatically (PyQt)

Is there a way to get and change the active row in a QTreeView (not QTreeWidget)? By active, I mean …

python qt pyqt qtreeview qabstractitemmodel
How to hide some columns in a QTreeView?

I have a QTreeView model, that model has four columns as the following (Name, Size, Type, Data Modified). I want …

c++ qt qt5 qtreeview
To set widgets on children items on QTreeView

Thanks to this thread, I'm able to add widgets to 2nd or later column of QAbstractItemView (in my example QTreeView) …

qt4 pyqt qtreeview qabstractitemmodel
Qt: set columns in treeView

How can I implement this code I have for a qTreeWidget for a qTreeView? for (const auto & i : names) { …

c++ qt qtreeview
QTreeView & QAbstractItemModel & insertRow

I'm trying to implement QAbstractItemModel for QTreeView. I have problem with inserting rows. I noticed that if I insert at …

qt insertion qtreeview qabstractitemmodel