ui: removed 'Save Project' and 'Save Project As' actions

* removed save actions from menu in QtMainWindow
* removed MessageSaveProject and all Listeners
* updated project loading to ask whether old project and db file should be kept at old location
* fixed crash for missing include files
* fixed simple header search within source paths was broken
This commit is contained in:
Eberhard Graether
2016-06-28 15:59:22 +02:00
parent 2cf033d43a
commit 8ca54f2091
16 changed files with 123 additions and 202 deletions
@@ -1,12 +1,14 @@
#ifndef MESSAGE_LOAD_PROJECT_H
#define MESSAGE_LOAD_PROJECT_H
#include "utility/file/FilePath.h"
#include "utility/messaging/Message.h"
class MessageLoadProject: public Message<MessageLoadProject>
class MessageLoadProject
: public Message<MessageLoadProject>
{
public:
MessageLoadProject(const std::string& filePath, bool forceRefresh)
MessageLoadProject(const FilePath& filePath, bool forceRefresh)
: projectSettingsFilePath(filePath)
, forceRefresh(forceRefresh)
{
@@ -19,10 +21,10 @@ public:
virtual void print(std::ostream& os) const
{
os << projectSettingsFilePath << ", forceRefresh: " << std::boolalpha << forceRefresh;
os << projectSettingsFilePath.str() << ", forceRefresh: " << std::boolalpha << forceRefresh;
}
const std::string projectSettingsFilePath;
const FilePath projectSettingsFilePath;
const bool forceRefresh;
};
@@ -1,27 +0,0 @@
#ifndef MESSAGE_SAVE_PROJECT_H
#define MESSAGE_SAVE_PROJECT_H
#include "utility/messaging/Message.h"
class MessageSaveProject: public Message<MessageSaveProject>
{
public:
MessageSaveProject(const std::string& filePath)
: projectSettingsFilePath(filePath)
{
}
static const std::string getStaticType()
{
return "MessageSaveProject";
}
virtual void print(std::ostream& os) const
{
os << projectSettingsFilePath;
}
const std::string projectSettingsFilePath;
};
#endif // MESSAGE_SAVE_PROJECT_H