summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchTreeWindow.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
committerDavid Robillard <d@drobilla.net>2011-05-20 03:27:08 +0000
commit4999a7199470ee751d710cfca2a39b4fdc561a82 (patch)
tree9c3d83689ec89037c3ba22f3f5940857513ae189 /src/gui/PatchTreeWindow.hpp
parentb5bbad8f77e65f8fc8655287f0d2004ebee7c787 (diff)
downloadingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.gz
ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.tar.bz2
ingen-4999a7199470ee751d710cfca2a39b4fdc561a82.zip
Remove dependency on glade and glademm (migrate to GtkBuilder).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3295 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/PatchTreeWindow.hpp')
-rw-r--r--src/gui/PatchTreeWindow.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/gui/PatchTreeWindow.hpp b/src/gui/PatchTreeWindow.hpp
index aed181b5..861913c2 100644
--- a/src/gui/PatchTreeWindow.hpp
+++ b/src/gui/PatchTreeWindow.hpp
@@ -19,7 +19,7 @@
#define INGEN_GUI_PATCHTREEWINDOW_HPP
#include <gtkmm.h>
-#include <libglademm.h>
+
#include "Window.hpp"
namespace Raul { class Path; }
@@ -40,7 +40,8 @@ class PatchTreeView;
class PatchTreeWindow : public Window
{
public:
- PatchTreeWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& refGlade);
+ PatchTreeWindow(BaseObjectType* cobject,
+ const Glib::RefPtr<Gtk::Builder>& xml);
void init(Client::ClientStore& store);
@@ -85,7 +86,8 @@ protected:
class PatchTreeView : public Gtk::TreeView
{
public:
- PatchTreeView(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
+ PatchTreeView(BaseObjectType* cobject,
+ const Glib::RefPtr<Gtk::Builder>& xml)
: Gtk::TreeView(cobject)
, _window(NULL)
{}