I am creating an application that has its own chrome. I disabled the default window border by setting a flag:
this->setWindowFlags(Qt::FramelessWindowHint);
After this flag is set, and the window border is disabled by default, any calls:
this->showMaximized();
will lead to a window that occupies the entire screen, overlapping the taskbar. Is there any general work for this or another method that I should call instead of showMaximized ()?
Win7 / Qt4.6
qt qt4
greggreg
source share