Top "Qtreeview" questions

QTreeView is a class in Qt framework.

Python: PyQt QTreeview example - selection

I'm using Python 2.7 and Qt designer and I'm new to MVC: I have a View completed within Qt to give …

python qt tree qtreeview
Adding a right-click menu for specific items in QTreeView

I'm writing a Qt desktop application in c++ with Qt Creator. I declared in my main window a treeView, and …

qt right-click qtreeview qstandarditem
How to make item view render rich (html) text in Qt

Suppose my model has items with the following string for Qt::DisplayRole <span>blah-blah <b>some …

qt rendering richtext qtreeview qlistview
Selecting a row in QTreeView programmatically

I have a QTreeView with QFileSystemModel as model. The QTreeView has SelectionBehavior set to SelectRows. In my code I read …

c++ qt qt4 qtreeview
QAbstractItemModel and QTreeView

I need working examples (c++) of show own data model in QtreeView.

c++ qt qtreeview qabstractitemmodel
How do you set the column width on a QTreeView?

Bear with me, I'm still new to QT and am having trouble wrapping my brain around how it does things. …

python pyqt pyqt4 qtreeview
How to get details about the selected items using QTreeView?

I'm using QTreeView with QDirModel like this: QDirModel * model = new QDirModel; ui->treeView->setModel(model); ui->treeView-&…

c++ qt qtreeview
PyQt Tree Widget, adding check boxes for dynamic removal

I am attempting to create a tree widget that will essentially allow the user to view various breakdowns of data …

python checkbox pyqt qtreeview qtreewidgetitem
Is it possible to deselect in a QTreeView by clicking off an item?

I'd like to be able to deselect items in my QTreeView by clicking in a part of the QTreeView with …

qt pyqt qtreeview
HowTo restore QTreeView last expanded state?

What I have: QTreeView class with table data And connected QAbstractTableModel model Question: how to save expanded state of items? …

qt qt4 qtreeview