in any window (gui ) there appears a menubar and minimize, maximize and close icons. How is it possible to hide this bar.
Brgds,
kNish
in any window (gui ) there appears a menubar and minimize, maximize and close icons. How is it possible to hide this bar.
Brgds,
kNish
You can use Window flags to do this : http://doc.trolltech.com/4.6/qt.html#WindowType-enum
You can make a window frameless by calling:
setWindowFlags(Qt::FramelessWindowHint);
See the window flags documentation to see how else you can change the appearance of windows.