summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphCanvas.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-12-15 00:40:08 +0100
committerDavid Robillard <d@drobilla.net>2020-12-15 00:47:37 +0100
commit59397df614d6fb8af29f7e576ecad3feba3f9ed3 (patch)
treefdcabac5ed7735747f2e14c0d11321ba1b9d1832 /src/gui/GraphCanvas.hpp
parentfd474306945c58b24a022ab557ea24832758cb20 (diff)
downloadingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.gz
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.bz2
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.zip
Clean up includes in gui
Diffstat (limited to 'src/gui/GraphCanvas.hpp')
-rw-r--r--src/gui/GraphCanvas.hpp35
1 files changed, 28 insertions, 7 deletions
diff --git a/src/gui/GraphCanvas.hpp b/src/gui/GraphCanvas.hpp
index ffeac64d..e413c194 100644
--- a/src/gui/GraphCanvas.hpp
+++ b/src/gui/GraphCanvas.hpp
@@ -17,27 +17,48 @@
#ifndef INGEN_GUI_GRAPHCANVAS_HPP
#define INGEN_GUI_GRAPHCANVAS_HPP
-#include "NodeModule.hpp"
-
#include "ganv/Canvas.hpp"
-#include "ganv/Module.hpp"
-#include "ingen/Node.hpp"
-#include "ingen/client/ArcModel.hpp"
+#include "ingen/Properties.hpp"
+#include "ingen/Resource.hpp"
+#include "ingen/URI.hpp"
#include "lilv/lilv.h"
#include "raul/Path.hpp"
+#include <gdk/gdk.h>
+
+#include <cstdint>
#include <map>
#include <memory>
#include <set>
#include <string>
+#include <utility>
+
+namespace Ganv {
+class Module;
+class Node;
+class Port;
+} // namespace Ganv
+
+namespace Gtk {
+class CheckMenuItem;
+class Menu;
+class MenuItem;
+} // namespace Gtk
namespace ingen {
-namespace client { class GraphModel; }
+namespace client {
+class ArcModel;
+class BlockModel;
+class GraphModel;
+class ObjectModel;
+class PluginModel;
+class PortModel;
+} // namespace client
namespace gui {
-class NodeModule;
+class App;
class PluginMenu;
/** Graph canvas widget.