Qt 6.11 is out! See what's new in the release
blog
Should I create my own view
-
Say that I have a SQLite database like this

and I want to show them to my user like this

Should I create my own view ? What is the logical way to do it ? I want the data to be shown like this because I find it much prettier than putting them in a QTableView
-
Yes, you will just be responsible to trigger the editor yourself.
-
In the doc I found this sentence :
The view classes that inherit QAbstractItemView only need to implement their own view-specific functionality, such as drawing items, returning the geometry of items, finding items, etc.What are those functionnality in term of methods ??? Does it mean I have to reimplement every virtual method in the class for my View ?
-
