logic: code controller communication

- Replaced CodeAccess with LocationAccess.
- Implemented basic functionality for CodeController.
- Added messaging to the project.
- Added QtThreadedFunctor to enable our Messaging thread to invoke calls on the QtThread.
- Added GraphController.

fortune cookie message = Good news from someone dear is coming soon.
This commit is contained in:
malte_langkabel
2014-07-02 16:42:33 +02:00
parent a8e32af5dd
commit 400e2629d2
37 changed files with 441 additions and 78 deletions
+2 -5
View File
@@ -4,12 +4,11 @@
#include <memory>
#include "component/ComponentManager.h"
#include "data/access/CodeAccess.h"
#include "data/access/GraphAccess.h"
#include "Project.h"
class GuiFactory;
class MainView;
class Storage;
class Application
{
@@ -24,9 +23,7 @@ private:
Application();
std::shared_ptr<Project> m_project;
std::shared_ptr<CodeAccess> m_codeAccess;
std::shared_ptr<GraphAccess> m_graphAccess;
std::shared_ptr<Storage> m_storage;
std::shared_ptr<MainView> m_mainView;
std::shared_ptr<ComponentManager> m_componentManager;