QTreeView is a class in Qt framework. It provides a default model/view implementation of a tree view.

learn more… | top users | synonyms

1
vote
1answer
62 views

When to emit dataChanged from a QAbstractItemModel

In Qt, I have a model subclassing QAbstractItemModel - it's a tree displayed in a QTreeView. The model supports various forms of change which all work OK. The two of relevance are: 1) Some data in ...
0
votes
0answers
29 views

QTreeview Custom model and QSortFilterProxyModel - changing data

I have data Displayed as a Tree using QTreeView + subclassed QSortFilterProxyModel and subclassed QAbstractItemModel which is a Dom hierarchy of data. I have overriden the SetData Method in my DOM ...
0
votes
1answer
33 views

QT SqlQueryModel, TreeView and SortFilterProxyModel how to get selected row

I have a TreeView that is feeded by a SortFilterProxyModel that is feeded by a SqlQueryModel. Now I want to add double click event so that an edit dialog is loaded with data from the selected row and ...
0
votes
2answers
75 views

QTreeView with columns

I have these messages received on the can bus which need to be displayed on a suitable Qt Widget (Please refer attached picture). It seems I can use QTreeView for it. I need to show a tree which ...
1
vote
1answer
43 views

QTreeView remove decoration/expand button for all items

I want to have my QTreeView always expanded all of the items. In that case, all expand button / decoration are unnecessary and I want get rid of them. How can I delete all of them? setRootIsDecorated ...
0
votes
2answers
76 views

How can i hide the border for qtreeview?

I want to hide the border of the QTreeWidget i´m customizing. I want it to be the same when i select an item inside. But this special outline doesn´t work at all. I want it to be the same as the ...
0
votes
0answers
107 views

QT: QtreeView and custom QSortFilterProxyModel

I have a custom Hierarchical model Implemented which is basically displayed in a QtreeView. My requirement is to filter data on multiple columns. The code of the model is as follows: namespace { ...
0
votes
0answers
71 views

Change size columns custom QTreeView doesn´t work

I want to have a QTreeView with two columns. The first contains the normal elements with the branches. It works. The other has just a button for delete (or whatever action) at the rightmost position ...
0
votes
1answer
71 views

Area of tree displayed by QTreeView not expands to its parent widget?

I use QTreeView and QStandardItemModel to display its contents (read from xml file) in a tree view. The file parser works just OK, but when I use the view to display the data, the sizePolicy just ...
0
votes
1answer
106 views

qtreeview: drag and drop of a subtree results in bad selections

I've been trying to drag and drop a subtree in qtreeview. The tree correctly re-orders when I execute the drop and the underlying model is updated, however, item selection is then screwed up ...
1
vote
0answers
67 views

Qt GLWidget + Tree = crash

I'm a Qt newbie and I'm trying to create a Qt app with QGLWidget and some other UI controls. It crashes after short time after start. Below are steps to reproduce the problem. Qt 5.0.1 on Mac. ...
0
votes
0answers
38 views

QCombobox that shows nodes from treeview

I'm a newbie on PyQt/Qt. My question is how can I get a combobox widget to show the "names" of a certain type of nodes of a treeview. For example, if I have three type of nodes on my treeview model ...
0
votes
1answer
165 views

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) of top level items of a view. But is it possible to add widgets to the children ...
1
vote
1answer
235 views

python/pyside using a custom widget in a qtreewidget

Using Python3 and pyside. I have a python dictionary which I want to display as a tree using Qt. I want the values to be editable but not the keys. I have managed to achieve this using setItemWidget ...
1
vote
3answers
83 views

How to remove widget from QAbstractItemView

QAbstractItemView has `setIndexWidget but doesn't have "remove" function. I tried to work it around by storing widgets that are passed to QAbstractItemView and hide / delete them when I want to ...
0
votes
2answers
105 views

How to make a (not all) tree item always expanded in a QTreeView?

How can I make a (not all) tree item always expanded in a QTreeView? I cannot find a good way to do it.
0
votes
0answers
111 views

Make QTreeView automatically resize to contents

I am trying to make a QTreeView automatically resize to its contents. This is my setup: I am trying to create a "smart" tool tip which is a QWidget with Qt.Tool | Qt.FramelessWindowHint as its ...
2
votes
0answers
58 views

Styling checked item in QTreeView

How can I style checked item in QTreeView. I Have this code: QTreeView::indicator:checked, QTableView::indicator:checked { image: none; } QTreeView::item:checked, QTableView::item:checked { ...
0
votes
1answer
37 views

no matching function for call to QTreeView::setModel(modelClass (*)())'

I am new to QT. I am trying to create a simple file system browser. I have created a separate class for the model and the view class. Here they are: //modelClass.h #ifndef MODELCLASS_H #define ...
0
votes
0answers
122 views

QModelIndex values unexpectedly alternates

Edit 2/15/2013) I simplified question for clarification. I'm getting inconsistent index address (QModelIndex) from QTreeview. Working code is at the bottom. My widget looks like: When I repeated ...
0
votes
1answer
258 views

QFileSystemModel and QTreeView showing dirs only. How to hide expansion marks against the empty dirs?

I'm building somewhat like standard file explorer - left pane is for folders tree, and the right one to display files within selected folder. QTreeView with QFileSystemModel is used to display ...
0
votes
0answers
128 views

Qt + QSortFilterProxyModel + QStandardItemModel + QTreeView + crush when remove rows

I have a problem when using QTreeView with QStandardItemModel and QSortFilterProxyModel. My program crushes when I trying remove rows from source model. In this place ...
0
votes
1answer
71 views

Inserting QTable in QTree

I would like to design a particular layout using QTable inside of QTree. See the followng wireframe : Is it possible to do this, knowing that in number : The first node under Dialog 1 is ...
1
vote
2answers
252 views

Qt model/view vs standard widget

I am currently reading model/view tutorial from Qt, but I am still not sure if I should use model/view or widget for my Qt program : I need to do a logger application that will monitor all ...
0
votes
1answer
68 views

How should I respond to text being changed in a QTreeView?

I have a QTreeView populated with some QStandardItems. The items are editable, and I want to program to react whenever the text of an item is changed, either by way of a signal or an event filter. I ...
0
votes
1answer
379 views

PyQt and QtreeView : How get the path from the selected file

I'am a beginner with PyQt. All is in the title :I don't understand how can I get the path (and the name) from the selected file? I wish later update a QListView with this path. Here my script : # ...
1
vote
0answers
79 views

QDockWidget::setWidget() calling QAbstractItemModel::rowCount on Windows but not on Linux

Considering the following QAbstractItemModel subclass: class MyItemModel : public QAbstractItemModel { Q_OBJECT public: (...) virtual int rowCount(const QModelIndex& parentIdx = ...
3
votes
3answers
610 views

Changing the row background color of a QTreeView does not work

I have a QTreeView and want different background colors for rows, depending on their content. To achieve this, I derived a class MyTreeView from QTreeView and implemented the paint method as follows: ...
0
votes
1answer
116 views

Filter items in QStandardItemModel or QTreeView

I represent same data in QTreeView with QStandardItemModel. Data is table - I have rows and columns, I get it from DB with QSqlQuery. How can I filter rows based on some column value? For example I ...
0
votes
1answer
44 views

How to display a QForm inside the MainWindow with Qt?

I am trying to code a tree explorer GUI in Qt. On the left side, I have a tree view system which is handled by a Qt component QTreeView, but I would like that a form depending on the selected tree ...
0
votes
0answers
390 views

Qt - QTreeView and custom model with checkbox columns

I wanted to have a tree view which shows the item name, the item description, and two related Boolean values in respective columns. I started by modifying the Editable Tree Mode example, so there's a ...
0
votes
0answers
76 views

Getting the directory from the currently selected item in a QTreeView

I am from Honduras and I don't speak English, but I need to ask something. I would like to know the path of the selected item in a QTreeView, using Python and PyQt. When I click on an item, I can ...
1
vote
1answer
432 views

PySide (PyQt) QAbstractItemModel

I am trying to implement a simple model for a treeview and I can't figure out why it isn't working.. It seems that all my nodes are children of my root node although three of them should be children ...
1
vote
0answers
50 views

Fails to display drives in QtreeView using QSystemStorageInfo

I am working on displaying all Local and removable drives of my system using QSystemStorageInfo in a QTreeView. I have written a code where all drives like C:, D: etc come under Local Drive section ...
0
votes
2answers
366 views

qt stylesheets with qtreeview::item only applies to child items?

I want to style the items of a QTreeView, namely increase their top/bottom padding a bit. This is my snippet: QTreeView::item { padding-top: 8px; padding-bottom: 8px; color: red; } ...
1
vote
1answer
82 views

QTreeView Border/Frame Color

I'm currently working with QTreeView and I would like to change widgets's border/frame when control has focus. I tried already different settings, but as far none of them worked. Does anybody have ...
1
vote
1answer
107 views

how to add line number to QTreeView?

I'm trying to code a simple c++ IDE based on Qt. Like any language IDE, a line number is very useful in the code editor. I'm using QTreeView for the editor and I'd like to add this line number ...
0
votes
0answers
147 views

Display enabled QCheckBox as disabled

I use a QTreeView with a TreeModel (that inherits QAbstractItemModel). The TreeModel::flags() function returns Qt::ItemIsUserCheckable and therefore a checkbox is displayed besides every item in the ...
1
vote
0answers
188 views

Qt StyleSheet for a QTreeView

I'm currently facing a problem about stylesheets of Qt and QTreeView. I simply want the current item selected in the tree to be written in bold. I did research before and the solutions given in many ...
0
votes
2answers
219 views

QTreeView / QFileSystemModel set header labels

Pretty simple task but I didn't manage to find anything useful in documentation. I want a QTreeView to contain a single column called "Files" with data from QFileSystemView. Here's what I've got: ...
0
votes
0answers
85 views

recursive delete of directory failed in QTreeView

I want to delete a directory in a QTreeView which is not empty, when i do it recursively the children are deleted but the parent is not. I noticed that if the parent file isn't expended the delete ...
0
votes
1answer
147 views

QAbstractItemModel->setItemData returns false when inserting Qt::UserRole

I have no idea why when I try to insert Qt::UserRole into QTreeView item it returns false always but not when i enter Qt::EditRole this is the code: void TreeVieweX::insertRow(QString& slink) { ...
1
vote
2answers
114 views

How to know exactly when a user expands a QTreeView item?

Is there a way to know exactly when an expand operation begins when a user, lets say clicks the expand arrow in a QTreeView? For the case when he double clicks I can catch the double-click event. I ...
0
votes
1answer
145 views

QTreeWidget (Applying Styles for items)

I have a tree widget and there are three levels in the tree as follows Example Tree ============================ LEVEL1 LEVEL2 LEVEL2 LEVEL3 LEVEL3 LEVEL2 LEVEL2 LEVEL1 ...
1
vote
1answer
83 views

QTreeView: how to be inform of the beginning/end of item expansion?

I have a QtreeView that is displaying file lists (using a model derived from QFileSystemModel). As the building of the file list needs a lot of time (I must read the content of each file to determine ...
0
votes
0answers
108 views

QTreeView custom cell style

I have a QSqlQueryModel attached to a QTreeView. My query return X fields. One of these fields is a flag. This field should be invisible and this flag tells me which field I have to highlight in ...
1
vote
0answers
106 views

qtreeview root colored

I have a QTreeView with a colored background but I need to have also the root colored.. I'm not able to do so. Someone can help me? This is the code.. Thanks from PyQt4 import QtGui, QtCore ...
2
votes
1answer
378 views

Qt proxy model usage example

I am using a Qt 4's QFileSystemModel and QTreeView. I am writing a Windows Explorer like file manager, and want to make a tree more similar to Windows', where tree consist some shortcut paths like ...
0
votes
1answer
557 views

Developing pyqt4 tree widget

i need to write a tree?, in pyqt. It looks like this: Clients(this is text) Type A (this is a Clients child and has a checkbox) Type B (this is a Clients child and has a checkbox) ...
-1
votes
1answer
262 views

get child from parent in Qtreeview

I am developing a Qt application using QTreeView and QFileSystemModel. I am able to get the parent's child till one level but I am not able to get the parent's child's child. For eg: C is child of B, ...

1 2 3 4