If anyone is paying attention, NcFramelessHelper worked great.
I didn't actually need a frame-less window, yet I got what I needed with:
mFh = new NcFramelessHelper;
mFh->setWidgetMovable( true );
mFh->setWidgetResizable( true );
mFh->activateOn( this );
setWindowFlags( Qt::CustomizeWindowHint ); // This along with NcFramelessHelper allows no title bar yet
// a dialog frame and the dialog is movable and resizable
mFh = new NcFramelessHelper;
mFh->setWidgetMovable( true );
mFh->setWidgetResizable( true );
mFh->activateOn( this );
setWindowFlags( Qt::CustomizeWindowHint ); // This along with NcFramelessHelper allows no title bar yet
// a dialog frame and the dialog is movable and resizable
To copy to clipboard, switch view to plain text mode
Bookmarks