Tagged Questions

QAbstractItemModel is a class in the Qt framework. It provides the abstract interface for item model classes.

learn more… | top users | synonyms

5
votes
1answer
160 views

Incorrect view of custom hierarchical model when set proxy model that swap columns

I have custom hierarchical model, inherited from QAbstractModelItem. Also, I implement MySortFilterProxyModel subclassed from QSortFilterProxyModel. MySortFilterProxyModel can remove and swap columns. ...
3
votes
2answers
310 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 ...
2
votes
1answer
51 views

How to update QAbstractTableModel and QTableView after sorting the data source?

I have a custom data structure that I want to display in a PyQt application using a QTableView. I'm using a subclass of QAbstractTableModel to communicate with the data. The data structure itself is ...
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
740 views

QTableView sorting signal?

I use QTableView + QStandardItemModel to show some data (data stored in some other data structure), and this table view is sortable. Since it is sortable, when sorting this model, I also need to sort ...
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
2answers
799 views

Supporting multi-add/delete (and undo/redo) with a QAbstractItemModel (C++)

Greetings, I've been writing some nasty code to support the undo/redo of deletion of an arbitrary set of objects from my model. I feel like I'm going about this correctly, as all the other mutators ...
1
vote
2answers
30 views

QAbstractListModel and QList Adapter

My application stores a few objects of a type that inherits from QAbstractListModel objects. This generates quite a lot of duplicated code when wrapping a simple std::vector<T> or a ...
1
vote
0answers
94 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
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
1answer
48 views

QAbstractItemModel + ModelTest::rowsInserted ASSERTion problem

I'm trying to debug my model (QAbstractItemModel) with ModelTest. And I can't understand one assertion. There are two slots in ModelTest that intercept signals generated by my model. ...
1
vote
1answer
121 views

QAbstractItemModel testing using modeltest

I'm looking for a good tutorial on how to use modeltest to test models based on QAbstractItemModel. I don't know how to interpret debug messages that are displayed. Also I'm having trouble ...
1
vote
1answer
560 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
1answer
525 views

How do I keep my QAbstractTableModel in sync with my data store?

In my app, I have a class for keeping a list of items: class Database : public QObject { Q_OBJECT public: Database(QObject *parent, const QString &name); const Entry& item(int ...
1
vote
1answer
88 views

How to make Qt delegate editors 'sticky'

I'm migrating an application from a homegrown UI to Qt. One of the most important controls is the property panel, which takes an object that implements my reflection api's interface and spits out a ...
1
vote
1answer
1k views

QAbstractItemModel and QTreeView

I need working examples (c++) of show own data model in QtreeView.
1
vote
1answer
749 views

pyqt: Trying to understand insertrows for QAbstractDataModel and QTreeView

I am using PyQt to manage a tree view using a QAbstractItemModel. So far I have successfully implemented it such that I can load the data, expand and collapse it, and edit values. One thing I am not ...
1
vote
2answers
734 views

How do I get my python object back from a QVariant in PyQt4?

I am creating a subclass of QAbstractItemModel to be displayed in an QTreeView. My index() and parent() function creates the QModelIndex using the QAbstractItemModel inherited function createIndex ...
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
258 views

Can I declare a root item for a QAbstractItemModel?

I know there is the possibility of setting the parent model index for the item view, but I'd like to do this for the model. The reason is quite simple, I want to get rid of those constructs: # PyQt ...
1
vote
2answers
500 views

Help getting inserted data after Qt's rowInserted signal

I have a onText method that connects to a QAbstractItemModel's rowsInserted SIGNAL so I can be notified when new rows have been inserted: QObject::connect(model, SIGNAL(rowsInserted ( const ...
1
vote
3answers
731 views

QObject::connect issues with QAbstractItemModel

I have a QListView from which I obtain a QAbstractItemModel with list->model(); After this, I want to connect the dataChanged signal to a custom QObject of mine: if( QObject::connect(model, ...
0
votes
0answers
17 views

Modifying an external model

I have a tree (scene graph) that I want to display through QTreeView. SceneGraphModel is a sub-class of QAbstractItemModel and implements all methods necessary to display the tree and hands out ...
0
votes
1answer
36 views

Returning flags via source model makes my items inactive (greyed out)

In my proxy model with base QSortFilterProxyModel in the flags virtual method: Qt::ItemFlags File_List_Proxy::flags(const QModelIndex& index) const { if(index.isValid()) { return ...
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 ...
0
votes
0answers
93 views

HowTo create connection between QAbstractItemModel and my std::map<> data?

I've some data, example Company Name | Person Field ----------------------- (Company1) | [Company1 Descr] L | [Person1] (Company2) | [Company2 Descr] L | [Person2] L ...
0
votes
2answers
274 views

Qt QAbstractItemModel data() is NEVER called

I'm attempting to create a QTreeView and use a custom model for it. I have placed qDebug() statements at various places, and I have determined that data() is never being called. How can I fix this ...
0
votes
2answers
196 views

Displaying QAbstractListModel items in QTableView columns

I've been toying around with Qt and ran into a small issue. I want to display a list of pictures as a table of icons. Right now, I'm doing this by subclassing QAbstractTableModel, and plugging it ...
0
votes
1answer
486 views

QTreeView and QSqlQueryModel — loading children as needed from sql database

I have a following problem. I'm trying to implement a model for my QTreeView that would load dynamically data from sql table. Table looks like this: CREATE TABLE xcmObjects ( id ...
0
votes
1answer
195 views

Create a proxy of QAbstractModelItem

I'm writing a Qt application to allow the visualization of very heavy data sets. So, I have a SourceDataModel class, inheriting from QAbstractItemModel that seems to work properly (currently, I only ...
0
votes
1answer
496 views

How do I get the column names of a QSqlTableModel?

I would like to have something like QString QSqlTableModel::getColumnName(int col).
0
votes
2answers
2k views

HowTo combine QAbstractTableModel and QItemDelegate to one working source?

I have a QTableView defines in UI file. Here is the figure: I'd like to make month change (where the red array points) with QComboBox widget, dealing with delegates, but for me, for my custom ...
0
votes
1answer
1k views

HowTo find Subitem in QAbstractItemModel and QTreeView class?

Question: how to find sub item, in a QTreeView loaded QAbstractItemModel model with model->match() method? Problem: model->match() can't find sub items, wtf?! Here is the example: As you ...