Use in the constructor of your window/dialog:
Qt Code:
setWindowFlags(windowFalgs() | Qt::FramelessWindowHint );To copy to clipboard, switch view to plain text mode
Or you can do it from Designer, if that's how you created your window.
Use in the constructor of your window/dialog:
Qt Code:
setWindowFlags(windowFalgs() | Qt::FramelessWindowHint );To copy to clipboard, switch view to plain text mode
Or you can do it from Designer, if that's how you created your window.
nleverin (5th October 2007)
Hi Marcel,
thanks for the reply, i got this working with Qt4,
is there an equivalent function using Qt3?
Take a look at QWidget docs. Especially its constructor and setWFlags().
J-P Nurmi
Bookmarks