Windows XP. If the window has list widget, tree widget then it is fine if you click inside them, you can't move the window around.

I just basically create a form derived from QWidget, I then add it to QWorkspace.

Qt Code:
  1. m_pPlotterView = new PlotterView( this );
  2. m_pworkspace->addWindow( m_pPlotterView );
  3. m_pPlotterView->show();
To copy to clipboard, switch view to plain text mode 

Where m_pPlotterView is the derived QWidget class and 'this' is derived QMainWindow.

Regards,
Steve