summaryrefslogtreecommitdiffstats
path: root/src/gui/ObjectMenu.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/ObjectMenu.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/ObjectMenu.hpp')
-rw-r--r--src/gui/ObjectMenu.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/gui/ObjectMenu.hpp b/src/gui/ObjectMenu.hpp
index ffac870d..8bd5fc97 100644
--- a/src/gui/ObjectMenu.hpp
+++ b/src/gui/ObjectMenu.hpp
@@ -19,10 +19,13 @@
#define INGEN_GUI_OBJECTMENU_HPP
#include <string>
+
#include <gtkmm.h>
-#include <libglademm/xml.h>
+
#include "raul/SharedPtr.hpp"
+
#include "client/ObjectModel.hpp"
+
using Ingen::Client::ObjectModel;
namespace Ingen {
@@ -39,7 +42,8 @@ class PatchCanvas;
class ObjectMenu : public Gtk::Menu
{
public:
- ObjectMenu(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml);
+ ObjectMenu(BaseObjectType* cobject,
+ const Glib::RefPtr<Gtk::Builder>& xml);
void init(SharedPtr<const ObjectModel> object);