Hello all,

in my project im using another layout system other than QLayout.
there is a layout algorithm which triggers a size calculation when QWidget::resize() happens.

i read the doc of QWidget::resize() only when the widget is visible he sends a resizeevent immediately.
is there any way to let a widget always send a resizeevent when resize happens?

ps: currently im using the trick with flag WA_WState_Visible, since this flag is even not documented i assume it is not supposed to use.

Thank you.