Hello, <div><br></div><div>I have derived my own class from QVTKwidget class. In the constructor of the class I am creating a combo box whose parent will be QVTKwidget. Example:</div><div><br></div><div>Class mywidget : public QVTKwidget</div><div>{</div><div>   public:</div><div>      mywidget ();</div><div>};</div><div><br></div><div>mywidget::mywidget ()</div><div>{</div><div>  ...</div><div>  ...</div><div><br></div><div>  mycombo = new QCombobox (this);</div><div>  mycombo->setGeometry (0, 0, width, height);</div><div>  ...</div><div>}</div><div><br></div><div>on MAC, the combo box appears below QVTKwidget and all vtk objects are rendered on top of the combo box, thus hiding it behind QVTKwidget. I need the combo box to appear above(on top of) QVTKwidget at top left corner. Can anyone help me to overcome this problem. ?</div><div><br></div><div>Thanks</div>