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 -3
View File
@@ -6,7 +6,7 @@
#include "component/Component.h"
#include "component/ComponentFactory.h"
#include "data/access/CodeAccess.h"
#include "data/access/LocationAccess.h"
#include "data/access/GraphAccess.h"
class GuiFactory;
@@ -18,7 +18,7 @@ public:
static std::shared_ptr<ComponentManager> create(
GuiFactory* guiFactory,
ViewLayout* viewLayout,
std::shared_ptr<CodeAccess> codeAccess,
std::shared_ptr<LocationAccess> locationAccess,
std::shared_ptr<GraphAccess> graphAccess);
~ComponentManager();
@@ -34,5 +34,4 @@ private:
std::vector<std::shared_ptr<Component> > m_components;
};
#endif // COMPONENT_MANAGER_H