QTableView add Rows renders wrong
-
wrote on 23 Aug 2017, 00:03 last edited by Fuel
Maybe thats better, but i dont want to rewrite all my Code. Im fine with that Solution. Im just more interested now why the TableView renders outside its content.
update: finally i found out that one line is causing the problem.
void DoctorContactDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { if (index.column() == 0) { painter->fillRect(option.rect, QBrush(QColor(215, 215, 215, 84))); QStyledItemDelegate::paint(painter, option, index); } else if (index.data().canConvert<DoctorComboBox*>()) { DoctorComboBox *cbox = qvariant_cast<DoctorComboBox*>(index.data()); cbox->setGeometry(option.rect); cbox->render(painter, painter->deviceTransform().map(option.rect.topLeft())); //<--- this line } else QStyledItemDelegate::paint(painter, option, index); }
-
wrote on 23 Aug 2017, 18:12 last edited by
Nobody has an Idea? It seems like that the TableView has generally Problems with ComboBoxes. I added a normal QComboBox to that Cell and the Problem still exists.
-
Do you really need to do custom painting for your DoctorComboBox ? Can't it be painted like classic QComboBox ?
-
wrote on 23 Aug 2017, 22:31 last edited by
What do you mean with that?
-
The thing is, it seems that you want to show your custom combo box like it was a permanent editor, is that the case ?
If not, I was just wondering why you were rendering the widget itself. Your model could return the data for the different roles needed to show the data the way you want it (i.e. background role, decoration role etc.).
-
wrote on 24 Aug 2017, 09:05 last edited by
It would be nice to show the Data in a ComboBox permanently. I tried to render a QLineEdit and have the same Problem as with the ComboBox. I dont know why i cant render an Element without having that Problem.
I want that the User can see that the Data is changeable and because of that i picked directly a ComboBox. You have an Idea how i can solve that different?
-
wrote on 25 Aug 2017, 19:10 last edited by
Nobody can help me? I cant render any Element in this Table without having this Problem. Is that a Bug?
-
First, I'd check with a delegate like the Star Delegate sample to see if everything goes well with custom painting. Then I'd check with just a rendering a combo box without any modification to the painter.
-
wrote on 28 Aug 2017, 02:57 last edited by Fuel
I tested it now with another Widgets and the Problem is still existing. So its not a Problem with only QComboBox. So it seems its a generally Problem with rendering. I have a similar Widget like in the StarDelegate Example and the Problem occurs. I tried not to modiy the QPainter but the Problem still exists. I also deleted the QTableView and created a new One.
Any other Ideas?
-
Hi
I newer say such issue with
https://wiki.qt.io/Combo_Boxes_in_Item_ViewsI think you ask it to draw in wrong position with
painter->deviceTransform().map(option.rect.topLeft()))You should check the y pos when its drawing wrongly.
Else it look ok from fast glance.
-
wrote on 28 Aug 2017, 11:27 last edited by Fuel
@mrjj said in QTableView add Rows renders wrong:
painter->deviceTransform().map(option.rect.topLeft()))
If i delete this part the Problem still exists. I took a look at your Link. In this Example there is no paint Event and im wondering. How does the Delegate know how to paint the Element?
If i remove the render Part the ComboBox isnt shown.
I think its a Problem with the Painter or the Renderfunction. Or perhaps something in my Layout.
Update:
It looks like its a Layout Problem. When i switch the Buttons to the Upper i dont have that Problem.
But why? Its a normal Gridlayout with a normal Row under the QTableView.
-
Can you show the code that setup everything including the buttons ?
-
wrote on 29 Aug 2017, 07:16 last edited by
-
wrote on 20 Sept 2017, 21:16 last edited by
still have the problem. the rows renders outside of the tableview.
-
Then can you provide a minimal compilable example so people can test that locally to help find the problem ?
-
wrote on 21 Sept 2017, 07:40 last edited by Fuel
I have made the Project Public in my Repository for some Days.
https://git.kubitox.com/Ben/KT
The Problem is in "Medikamentenplan" the below part. The Problem occurs in DoctorContact
-
I can't reproduce the defect you have on macOS.
On a side note, you should review that code base, I had to fix several errors before being able to run your application.
-
wrote on 22 Sept 2017, 00:05 last edited by
I installed a Virtual Machine with Linux and tested it. You are right, on other OS it isnt there. Maybe a Problem with Windows. But i dont know how to fix that now. Im using QT 5.9.1 and MSVC 2015 with 64-bit.
Could it be that the Problem is a Driver Problem?
-
Maybe a glitch in the Windows style.
-
wrote on 27 Sept 2017, 05:34 last edited by
I have totally no Answer for that. Anyone has the Time to Check my Project over Teamviewer? If yes please write me a Message. We can do that with Teamspeak or Discord. Would be nice if you speak German.