Hello friends,
I am trying to use my screen in FullScreen in the taskbar, however I am trying the following one:
QObject::connect( fullSreenAction, SIGNAL( toggled(bool) ), this, SLOT( windowFullScreen(bool) ) );
void AcompanhamentoForm::windowFullScreen(bool setModeScreen)
{
if (setModeScreen)
QMainWindow::showFullScreen();
else
QMainWindow::showNormal();
}
More when clic in icon nothing does not happen, somebody could say what it is made a mistake.
Ederson de Moura
Bookmarks