c++qtqt4qt5qheaderview

How to make a QheaderView multilevel?


I am creating an application that saves the data of an object sending service.

I created that with Qt, a model of type QStandardItemModel that I want to display with QtableView.

But QtableView shows me the line level on the left. I want to delete it or hide it if possible.

I also have a problem with a header that I want to divide into two horizontally then divide the corresponding part of the bottom in two vertically. The reason for these division is that I have two headers with similar beginnings (date of correspondence and correspondence number)

Thank you for your reply because it is really important for me.

enter image description here


Solution

  • This type of QHeaderView does not exist, but we can create it for it we must create a class that inherits from QHeaderView and rewrite mainly the method paintSection which is the method in charge of drawing the sections of the QHeaderView.

    But to do the generic project for any type of visual design we have to keep the information of the position and size of each section, for this we will create a model, to understand why of the overwritten classes I recommend you read content of the following link.

    Explain the logic of each method is extensive so only place the link of the project that implements the above and describe the task of each class:

    Output:

    enter image description here

    Note: to hide the vertical header it is only necessary to use the hide() method:

    horizontalHeader()->hide();