ui: Errorview

Tabbed view with errorview as tab
This commit is contained in:
Andreas Stallinger
2016-10-13 12:37:10 +02:00
parent 97b151371b
commit dc064e4756
82 changed files with 1641 additions and 197 deletions
+12 -2
View File
@@ -45,12 +45,22 @@ void QtMainView::removeView(View* view)
void QtMainView::showView(View* view)
{
m_window->showView(view);
m_onQtThread(
[=]()
{
m_window->showView(view);
}
);
}
void QtMainView::hideView(View* view)
{
m_window->hideView(view);
m_onQtThread(
[=]()
{
m_window->hideView(view);
}
);
}
void QtMainView::loadLayout()