summaryrefslogtreecommitdiffstats
path: root/src/Patchage.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-06-07 03:34:19 +0000
committerDavid Robillard <d@drobilla.net>2011-06-07 03:34:19 +0000
commit07f12de4656cfa2c835637d5d3c657ac0f0ddaf2 (patch)
tree6d56c3b46fd9f48bd21e4925d82cbf83c482b58e /src/Patchage.hpp
parent00f2ad0069fe4e51e40e6a3b3d41f125b67f89cf (diff)
downloadpatchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.tar.gz
patchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.tar.bz2
patchage-07f12de4656cfa2c835637d5d3c657ac0f0ddaf2.zip
Avoid including gtkmm.h (which brings several megs of header into the compilation).
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3367 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/Patchage.hpp')
-rw-r--r--src/Patchage.hpp18
1 files changed, 16 insertions, 2 deletions
diff --git a/src/Patchage.hpp b/src/Patchage.hpp
index ed9cff3..4d6a11d 100644
--- a/src/Patchage.hpp
+++ b/src/Patchage.hpp
@@ -22,8 +22,22 @@
#include <string>
#include <boost/shared_ptr.hpp>
-#include <gtkmm.h>
-#include <libgnomecanvasmm.h>
+
+#include <gtkmm/aboutdialog.h>
+#include <gtkmm/builder.h>
+#include <gtkmm/button.h>
+#include <gtkmm/checkmenuitem.h>
+#include <gtkmm/dialog.h>
+#include <gtkmm/imagemenuitem.h>
+#include <gtkmm/label.h>
+#include <gtkmm/main.h>
+#include <gtkmm/menuitem.h>
+#include <gtkmm/progressbar.h>
+#include <gtkmm/scrolledwindow.h>
+#include <gtkmm/statusbar.h>
+#include <gtkmm/textview.h>
+#include <gtkmm/viewport.h>
+#include <gtkmm/window.h>
#include "patchage-config.h"
#include "Widget.hpp"