|
|
|
@ -242,6 +242,8 @@ void ActiveLayout::loadConfig()
|
|
|
|
|
emit activitiesChanged();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//! OVERRIDES
|
|
|
|
|
|
|
|
|
|
void ActiveLayout::saveConfig()
|
|
|
|
|
{
|
|
|
|
|
qDebug() << "active layout is saving... for layout:" << m_layoutName;
|
|
|
|
@ -272,6 +274,18 @@ const QStringList ActiveLayout::appliedActivities()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
QList<Latte::View *> ActiveLayout::latteViews()
|
|
|
|
|
{
|
|
|
|
|
if (m_topLayout) {
|
|
|
|
|
QList<Latte::View *> views = Layout::GenericLayout::latteViews();
|
|
|
|
|
views << m_topLayout->latteViews();
|
|
|
|
|
|
|
|
|
|
return views;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Layout::GenericLayout::latteViews();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|