Top "Qtreewidget" questions

QTreeWidget is a class in Qt that provides a tree-like view of data.

Multiple Columns in PyQt4 (potentially using QTreeWidget)

I'm trying to get QTreeWidget working exactly similar to this one. In python! I don't care about multiple tabs but …

python pyqt4 qtreewidget
How to delete QTreeWidgetItem

Several webpages say that QTreeWidgetItem can be deleted by deleting or QTreeWidget.clearing. But my code sample below doesn't seem …

python qt pyside qtreewidget qtreewidgetitem
How to get the number of items of a QTreeWidget

I have created a QTreeWidget, I'm trying to list all the items displayed. I do not want to go inside …

c++ qt qtreewidget qtreewidgetitem
Iterating through QTreeWidget Nodes

As I posted several times over the past few months, I'm writing a journal/diary application in Qt. Entries are …

c++ qt qtreewidget
QTreeView or QTreeWidget

I want to implement in my program a tree with nested sub-levels, and I'm looking for which of those two …

qt design-patterns treeview qtreewidget model-view
How to insert child into QTreeWidget hierarchy?

Consider I have QTreeWidget with following items hierarchy: top_item |--child Every item has assigned with setItemWidget() widget. I need …

c++ qt hierarchy qtreewidget qtreewidgetitem
Delete QTreeWidgetItem in PyQt?

I'm finding it frustratingly hard to find a simple way to delete my selected QTreeWidgetItem. My patchwork method involves setting …

python pyqt qtreewidget
QTreeWidget reordering child items by dragging

I have a QTreeWidget which displays a single root node and one level of child nodes only. I need to …

c++ qt drag-and-drop qtreewidget qtreewidgetitem
Set column width for QTreeWidget

Is there any way to set column width for QTreeWidget from code? I want to chage default width of first …

qt pyqt pyside qtreewidget
QTreeWidget to Mirror python Dictionary

Is there a way to make a QTreeWidget mirror the changes made to an internal data structure such as dictionary? …

python qt pyqt qtreewidget