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.
This type of
QHeaderView
does not exist, but we can create it for it we must create a class that inherits fromQHeaderView
and rewrite mainly the methodpaintSection
which is the method in charge of drawing the sections of theQHeaderView
.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:
TableHeaderItem
: It is responsible for saving the information of each item, mainly rowspan and columnspan in addition to the label.GridTableHeaderModel
: Model class that provides access to each item so that we can edit and read each itemGridTableHeaderView
: This class is the customQHeaderView
where the main methods are overwritten to get the desired look.GridTableView
(optional): is a TableView that has methods to work directly with GridTableHeaderView.Output:
Note: to hide the vertical header it is only necessary to use the
hide()
method: