refs #347, CMainWindow for frameless main windows

This commit is contained in:
Klaus Basan
2014-11-22 18:51:00 +01:00
committed by Roland Winklmeier
parent facbefeeea
commit 42a4e0b48b
15 changed files with 266 additions and 112 deletions

View File

@@ -33,12 +33,12 @@ CIntroWindow::~CIntroWindow() { }
/*
* Window mode
*/
GuiModes::WindowMode CIntroWindow::getWindowMode() const
BlackGui::CEnableForFramelessWindow::WindowMode CIntroWindow::getWindowMode() const
{
if (this->ui->rb_WindowFrameless->isChecked())
return GuiModes::WindowFrameless;
return BlackGui::CEnableForFramelessWindow::WindowFrameless;
else
return GuiModes::WindowNormal;
return BlackGui::CEnableForFramelessWindow::WindowNormal;
}
/*