I'm trying to make a subclass of QTableView
that has an embedded QLineEdit
at the top for filtering the results as-you-type. I need my table to have the same API as a normal QTableView
, so I want to subclass it rather than subclassing QWidget
and adding a QLineEdit
and QTableView
to it.
I thought I could just re-implement paintEvent(QPaintEvent*)
, alter the QPaintEvent
's rect()
to start a bit lower (the height of a QLineEdit
, so it draws under it) and then pass it thru to QTableView::paintEvent()
, but the QPaintEvent
argument only dictates what region needs to be repainted, not the region where the widget should be painted.