UI: ProjectSettingsUI

ProjectSettingsUI for creation of new Projects + StartScreen design update
This commit is contained in:
Andreas Stallinger
2015-08-03 17:24:24 +02:00
parent f823d0ddb4
commit e7a977dd5c
28 changed files with 764 additions and 91 deletions
+9
View File
@@ -100,3 +100,12 @@ void ApplicationSettings::setCodeSnippetExpandRange(int range)
ApplicationSettings::ApplicationSettings()
{
}
std::vector<std::string> ApplicationSettings::getRecentProjects() const {
std::vector<std::string> recentProjects;
return getValues("recentProjects/projectFilePath", recentProjects);
}
bool ApplicationSettings::setRecentProjects(const std::vector<std::string> &recentProjects) {
return setValues("recentProjects/projectFilePath", recentProjects);
}