summaryrefslogtreecommitdiffstats
path: root/src/gui/PropertiesWindow.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/PropertiesWindow.hpp
parentfd474306945c58b24a022ab557ea24832758cb20 (diff)
downloadingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.gz
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.tar.bz2
ingen-59397df614d6fb8af29f7e576ecad3feba3f9ed3.zip
Clean up includes in gui
Diffstat (limited to 'src/gui/PropertiesWindow.hpp')
-rw-r--r--src/gui/PropertiesWindow.hpp37
1 files changed, 27 insertions, 10 deletions
diff --git a/src/gui/PropertiesWindow.hpp b/src/gui/PropertiesWindow.hpp
index 6bd14340..780c2ba1 100644
--- a/src/gui/PropertiesWindow.hpp
+++ b/src/gui/PropertiesWindow.hpp
@@ -19,22 +19,39 @@
#include "Window.hpp"
-#include "ingen/client/BlockModel.hpp"
-
-#include <gtkmm/alignment.h>
-#include <gtkmm/box.h>
-#include <gtkmm/builder.h>
-#include <gtkmm/button.h>
-#include <gtkmm/checkbutton.h>
-#include <gtkmm/combobox.h>
+#include "ingen/Atom.hpp"
+#include "ingen/URI.hpp"
+#include "lv2/urid/urid.h"
+
+#include <glibmm/refptr.h>
#include <gtkmm/liststore.h>
-#include <gtkmm/scrolledwindow.h>
-#include <gtkmm/table.h>
+#include <gtkmm/treemodel.h>
+#include <gtkmm/treemodelcolumn.h>
+#include <gtkmm/window.h>
+#include <sigc++/connection.h>
#include <map>
+#include <memory>
#include <set>
#include <string>
+namespace Glib {
+class ustring;
+} // namespace Glib
+
+namespace Gtk {
+class Alignment;
+class Bin;
+class Builder;
+class Button;
+class CheckButton;
+class ComboBox;
+class ScrolledWindow;
+class Table;
+class VBox;
+class Widget;
+} // namespace Gtk
+
namespace ingen {
namespace client { class ObjectModel; }