Hi,
I actually try to repaint a widget with an other widget, but it seems that not work. So, perhaps I'm in a wrong way about how to use that.
The code is really simple
Qt Code:
  1. void
  2. QpulsarPopupEditorContainer::paintEvent(QPaintEvent *event)
  3. {
  4. // m_waitEditor, QWidget that contain a QLabel with text
  5. if(m_waitEditor)
  6. {
  7. QPaintEngine *l_paintEngine =m_waitEditor->paintEngine();
  8. QPainter *l_painter = l_paintEngine->painter();
  9. }
  10. else
  11. QWidget::paintEvent(event);
  12. }
To copy to clipboard, switch view to plain text mode 

Does anyone have a solution ?

Thanks in advance

Philippe