Tagged Questions
QTreeView is a class in Qt framework. It provides a default model/view implementation of a tree view.
6
votes
4answers
4k views
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 text</b> other blah</span>
I want QTreeView (actually, any item view) to ...
4
votes
1answer
283 views
QTreeView memory consumption
I'm testing QTreeView functionality right now, and i was amazed by one thing. It seems that QTreeView memory consumption depends on items count O_O. This is highly unusual, since model-view containers ...
3
votes
2answers
312 views
QAbstractItemModel + QTreeView what could couse item to become unselectable?
I'm trying to create my own model based on QAbstractItemModel. It seems to work fine. It passes modeltest assertions.
I've this strange problem when I remove a row. Removal operation works ok.
But ...
3
votes
1answer
241 views
QTreeView / QAbstractItemModel - adding items and using beginInsertRows
I'm implementing my model based on QAbstractItemModel and I'm using it with QTreeView to display hierachical data. Data are stored in sqlite table.
My question is how should I call beginInsertRows ...
3
votes
1answer
2k views
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 on the data related to each row). I tried to overload the drawRow() protected method and change ...
2
votes
1answer
215 views
Qt error “persistent model indexes corrupted” why?
I've a problem with my Qt/interview application. I use QTreeView to display tree data. I implemented my own model based on QAbstractItemModel.
I get a following error prior to application crash. It ...
2
votes
1answer
180 views
Maintaining checkedstatus inheritance in a QTreeView
I'm trying to do something basic : you have a QTreeView. 1st depth are folders only, 2nd depth are files only. I want to have a check box with the checked status next to each item. Files are either ...
2
votes
1answer
2k views
QTreeView with drag and drop support in PyQt
In PyQt 4 I would like to create a QTreeView with possibility to reorganize its structure with drag and drop manipulation.
I have implemented my own model(QAbstractItemModel) for QTreeView so my ...
2
votes
1answer
233 views
qt: I would like to disable the key bindings automatically set for a QTreeView
I am using PyQt4 and a QTreeView (although this could just as easily apply to qt directly).
Right now there are default key bindings that control the expanding/collapsing of branches using the right ...
2
votes
1answer
380 views
QT: QFileSystemModel _q_fileSystemChanged slot is executed on the UI thread which contradicts documentation
My UI is using QTreeView with QFileSystemModel to be able to select folders and files. The documentation for QFileSystemModel says that file structure update is done on a seperate thread which would ...
2
votes
1answer
455 views
background color for certain items(rows) in QFileSystemModel QTreeView
How do i set a custom background color for certain rows in a QFileSystemModel applied on a QTreeView?
2
votes
1answer
220 views
QFileDialog for directories that have certain content
I would like to build a dialog similar to QFileDialog::getExistingDirectory() for which the OK-button only is enabled when the selected directory contains certain files.
I know I cannot achieve this ...
2
votes
2answers
1k views
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? Is some one have finished solutions?
PS: I know, that I can do ...
2
votes
4answers
944 views
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 no items in, but I can't seem to find anyway of doing this. I'd intercept a click that's not on an ...
2
votes
2answers
673 views
How to create artificial nodes in QAbstractItemModel for QTreeView
my question is about Qt and its QAbstractItemModel.
I have a map of strings and doubles (std::map<stringclass, double>) which I would like to present in a Qt widget. While I could use ...
2
votes
1answer
750 views
Adding Vertical headers to a QTreeView
I have a QTreeView subclass (and QAbstractItemModel subclass) which has a nice horizontal header. I would like to add vertical headers (going down the left side) to match. But unlike QTableView which ...
1
vote
2answers
38 views
Disable sorting of child items in QTreeView
my name is Andrey and this is stackoverflow question about Qt, MVC.
I'am using pyQt, and want to disable child items sorting in QTreeView/StandardItemModel. Is there way to do it? And how?
1
vote
1answer
29 views
QTreeView middle column fill width space instead of last column
How can do this:
I already tried this way:
view->header()->setResizeMode(INDEX_COLUMN_SKU, QHeaderView::Interactive);
view->header()->setResizeMode(INDEX_COLUMN_NAME, ...
1
vote
1answer
29 views
QTreeView: Show “loading” message when expanding item
With PyQT and a QTreeView, I need to display a "loading" message or a "spinning wheel" when the user expands an item, because the childs are retrieved by making a http request.
Any ideas on how to ...
1
vote
1answer
55 views
PyQT and QTreeView: Need to ask for childrens when user clicks on an item
I need to create a QTreeView based on requests.
So, when the user open the application, it should make a request to get the root item for the tree. Once the user clicks on that item, it should ask ...
1
vote
0answers
95 views
Painting a QTreeView - but with headers
I'm writing a QAbstractItemDelegate that renders arbitrary QWidgets (using Jambi, not that this matters). When my delegate tries to render a QTreeView (by calling paint) the data of the treeview is ...
1
vote
1answer
153 views
PyQt4 : Drag and Drop in QTreeView
I make a UI with PyQt4. It has a treeView and I want to deal with it.
The treeView is made up with model-base. I create a data in .py file and import it.
So, I can see the data tree in my treeView.
...
1
vote
1answer
76 views
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.
I've created and populated a QTreeView with two columns:
class AppForm(QMainWindow):
def ...
1
vote
1answer
196 views
Qt: Example of QAbstractItemModel implementation using QtSql (to use with QTreeView)
I'm looking for an example implementation of QAbstractItemModel to use with QTreeView.
The model should load data from QSqlQuery and should do it in a "lazy" way. In other words I only want to load ...
1
vote
2answers
100 views
QT what needs to be done for a custom model to enable drop?
I'm trying to enable drop on a custom model I have hooked up to QTreeView.
I've done the following:
Ensured that acceptDrops is enabled on the QTreeView
Implemented on my custom model ...
1
vote
1answer
257 views
QTreeView Horizontal Scrollbar problems
I've a problem with QTreeView horizontal scrollbar, it doesn't appear. I've set horizontal scrollbar policy to ScrollBarAsNeeded, but it doesn't appear if needed. Have tried to connect expanded and ...
1
vote
1answer
562 views
QTreeView & QAbstractItemModel & insertRow
I'm trying to implement QAbstractItemModel for QTreeView. I have problem with inserting rows.
I noticed that if I insert at the beginning of my application all works fine. But If I insert rows later - ...
1
vote
2answers
372 views
QTreeView show only parent directory, rather than parent and all its siblings
I'm trying to get QTreeView (using an underlying QFileSystemModel) to show a directory tree. If I set the RootPath to the parent directory, then I see all the children, but not the parent. If I set ...
1
vote
2answers
874 views
How to select child's items checkBoxs in QTreeView when select their parent's checkbox
I want to select/unselect all child's items QCheckBoxs when I select/unselect their parent's item QCheckBox.
i inherit from QTreeView and detect when the QCheckBox is selected then i call function to ...
1
vote
1answer
233 views
PyQt: removing unnecessary columns
I am using QTreeView with QFileSystemModel. It displays columns like Size, Type, Modification Date, which I don't need. How can I remove them from the view? I can't find any removeColumn in model or ...
1
vote
1answer
1k views
1
vote
1answer
750 views
qt: pyqt: QTreeView internal drag and drop almost working… dragged item disappears
I almost have a completely working drag and drop re-order within a QTreeView. Everything seems to be ok except the dropped object never appears (though I can reference it numerous different ways that ...
1
vote
1answer
1k views
PyQt QTreeView: Trying to connect to the selectionChanged signal
I am trying to connect to the selectionChanged signal of a QTreeView using PyQt. I have done this in the past (for a QTableView) and was successful. But now I cannot get similar code to work.
In the ...
1
vote
1answer
300 views
how can i remove item from Qtreeview?
basically i want to remove item from Qtreeview on the dropEvent(QDropEvent *event) inherited
in a qtreeview subclass.
what is the best way to do this?
1
vote
1answer
375 views
how can i paint row with different color in QTreeWidget (Qt)
i have in my application that when i click on row i have the default blue row marked
but beside this blue color i what to paint the row in different color via function not depending on user clicked ...
1
vote
0answers
126 views
Qtreeview, resizing a line when it's been selected
I'm using Qt 4.7.0, a Qtreeview with multiple columns.
What I want to do is "simple" : I want a line to increase its height, when it's selected.
Will delegates be enough to do this ?
I've been ...
1
vote
2answers
1k views
Set bold rows in a QTreeView
I have a custom subclass of a QTreeView in a pyqt application. I'm trying to give the user the ability to highlight and "lowlight" (for lack of a better term) rows. Highlighted rows should have bold ...
1
vote
1answer
741 views
QT: I've inherited from QTreeView. I've inherited from QStandardItem. How do i Style the items?
My Google skills must be failing me today.
I've inherited from QTreeView to create a TreeView that stores a QStandardItemModel instead of a QAbstractItemModel. I have also inherited from ...
1
vote
1answer
3k views
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->setSelectionMode(QTreeView::ExtendedSelection);
...
1
vote
2answers
169 views
Most elegant/safe/easy solution to store and edit (GUI) a directory-like tree structure?
I've got a slightly tricky problem to solve; imagine this:
One of my applications needs to make heavy use of scripting, so my idea was to provide the user a way to write script snippets and organize ...
1
vote
1answer
771 views
Is there a bug in my code for populating a QTreeView?
I'm using PyQt 4.4.
It's best shown using some pictures. All nodes should have leafs from 0 to 99. They are being incrementally loaded using canFetchMore() and fetchMore(). But for some reason ...
0
votes
1answer
25 views
Can the selection model of a QTreeview be accessed from a delegate?
I'm displaying a model in a QTreeView. The data displayed consists of text. The behaviour I'm trying to achieve is to show only a single line of text in rows that are not selected and all lines ...
0
votes
0answers
28 views
How to add custom row in QFileSystemModel?
I am using QFileSystemModel to represent file structure through the QTreView. Everything works fine, but I need to add an additional row at some level of the tree. For example for now is:
-root
...
0
votes
0answers
33 views
Why does QModelIndex lack of a Pointer to its Parent?
The method QModelIndex::parent() calls virtual QAbstractItemModel::parent( const QModelIndex& ) = 0 [1]. Since it's pure virtual, I have to implement it and have to provide the parent QModelIndex ...
0
votes
1answer
71 views
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 show value of the node, which is column 0 and column 1 in this case.
Construction of ...
0
votes
1answer
160 views
Qt QTreeView editable DOM model
I have a QTreeView to which I set a subclassed DomModel:QAbstractItemModel. Each item is a DomItem which deals mostly with QDomNode. I set QDomDocument to this model. I think I've derived this system ...
0
votes
1answer
273 views
Need example about nodes in QAbstractItemModel for QTreeView?
Problem: I'm looking example about creating model ( based on QAbstractItemModel ) to QTreeView, but can't find sane codes. Qt examples are based on QStandardModel, which is not very useful and ...
0
votes
0answers
100 views
QTreeView draw drop indicator
I need to implement rows moving via drag-n-drop in QTreeView and show the drop indicator between rows. I am wondering if there is a way to override indicator drawing, so it is displayed for all levels ...
0
votes
2answers
179 views
How to use QSortFilterProxyModel to filter a tree model that only display children nodes with their parents?
I have a working tree model derived from QAbstractItemModel and I wish to filter it using a QSortFilterProxyModel subclass to display only children nodes of certain criteria. For example I have the ...
0
votes
2answers
159 views
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 the row with the focus highlight, not the selected row. In the paint event, I can use ...