summaryrefslogtreecommitdiffstats
path: root/src/gui/GraphBox.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-01-12 23:38:03 +0000
committerDavid Robillard <d@drobilla.net>2013-01-12 23:38:03 +0000
commitdf1447c665e6c3631961297a9d3e9aff4e94c47f (patch)
treec0ff117c362e6d571f430f886ab62f372b59af08 /src/gui/GraphBox.hpp
parentbb335dca695273622b7a4ebbefbe9e089edb9ab4 (diff)
downloadingen-df1447c665e6c3631961297a9d3e9aff4e94c47f.tar.gz
ingen-df1447c665e6c3631961297a9d3e9aff4e94c47f.tar.bz2
ingen-df1447c665e6c3631961297a9d3e9aff4e94c47f.zip
Remove Raul::SharedPtr and switch to std::shared_ptr.
Use project local short type aliases for shared_ptr and friends. Move Raul::Disposable and Raul::Manageable into Raul::Maid. Use sets to store machina nodes and edges to avoid O(n) searches. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4939 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/GraphBox.hpp')
-rw-r--r--src/gui/GraphBox.hpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/GraphBox.hpp b/src/gui/GraphBox.hpp
index f78d8a2b..663a3c14 100644
--- a/src/gui/GraphBox.hpp
+++ b/src/gui/GraphBox.hpp
@@ -28,7 +28,7 @@
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/statusbar.h>
-#include "raul/SharedPtr.hpp"
+#include "ingen/types.hpp"
#include "Window.hpp"
@@ -67,33 +67,33 @@ public:
const Glib::RefPtr<Gtk::Builder>& xml);
~GraphBox();
- static SharedPtr<GraphBox> create(
- App& app, SharedPtr<const Client::GraphModel> graph);
+ static SPtr<GraphBox> create(
+ App& app, SPtr<const Client::GraphModel> graph);
void init_box(App& app);
- void set_graph(SharedPtr<const Client::GraphModel> graph,
- SharedPtr<GraphView> view);
+ void set_graph(SPtr<const Client::GraphModel> graph,
+ SPtr<GraphView> view);
void set_window(GraphWindow* win) { _window = win; }
bool documentation_is_visible() { return _doc_scrolledwindow->is_visible(); }
void set_documentation(const std::string& doc, bool html);
- SharedPtr<const Client::GraphModel> graph() const { return _graph; }
- SharedPtr<GraphView> view() const { return _view; }
+ SPtr<const Client::GraphModel> graph() const { return _graph; }
+ SPtr<GraphView> view() const { return _view; }
void show_port_status(const Client::PortModel* model,
const Raul::Atom& value);
- void set_graph_from_path(const Raul::Path& path, SharedPtr<GraphView> view);
+ void set_graph_from_path(const Raul::Path& path, SPtr<GraphView> view);
void object_entered(const Client::ObjectModel* model);
void object_left(const Client::ObjectModel* model);
private:
- void graph_port_added(SharedPtr<const Client::PortModel> port);
- void graph_port_removed(SharedPtr<const Client::PortModel> port);
+ void graph_port_added(SPtr<const Client::PortModel> port);
+ void graph_port_removed(SPtr<const Client::PortModel> port);
void show_status(const Client::ObjectModel* model);
int message_dialog(const Glib::ustring& message,
@@ -124,10 +124,10 @@ private:
void event_show_engine();
void event_clipboard_changed(GdkEventOwnerChange* ev);
- App* _app;
- SharedPtr<const Client::GraphModel> _graph;
- SharedPtr<GraphView> _view;
- GraphWindow* _window;
+ App* _app;
+ SPtr<const Client::GraphModel> _graph;
+ SPtr<GraphView> _view;
+ GraphWindow* _window;
sigc::connection new_port_connection;
sigc::connection removed_port_connection;