Any way to implement/derive a QDialog or QMainWindow without a title bar, i.e. no icon, no title, no [?] or [x].
I need the dialog to be resizable and movable by the user, so
Qt Code:
  1. setWindowFlags( Qt::FramelessWindowHint );
  2. // or
  3. setWindowFlags( Qt::SplashScreen );
To copy to clipboard, switch view to plain text mode 
don't do the trick.

Thx for any hints.