summaryrefslogtreecommitdiffstats
path: root/src/gui/WindowFactory.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-05-13 02:57:36 +0000
committerDavid Robillard <d@drobilla.net>2011-05-13 02:57:36 +0000
commit198560d5fd499ab14eb4e130ee74e21fa86674a4 (patch)
treeeb7bd2ae2d19b6db2c28c79d1c7663fe5b1f49de /src/gui/WindowFactory.hpp
parent981c7950a6f5fc9f22decaee261556d20b641d5c (diff)
downloadingen-198560d5fd499ab14eb4e130ee74e21fa86674a4.tar.gz
ingen-198560d5fd499ab14eb4e130ee74e21fa86674a4.tar.bz2
ingen-198560d5fd499ab14eb4e130ee74e21fa86674a4.zip
Make models const in client code.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3259 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/WindowFactory.hpp')
-rw-r--r--src/gui/WindowFactory.hpp34
1 files changed, 18 insertions, 16 deletions
diff --git a/src/gui/WindowFactory.hpp b/src/gui/WindowFactory.hpp
index d07c7dba..46445ffb 100644
--- a/src/gui/WindowFactory.hpp
+++ b/src/gui/WindowFactory.hpp
@@ -60,26 +60,26 @@ public:
size_t num_open_patch_windows();
- PatchWindow* patch_window(SharedPtr<PatchModel> patch);
- PatchWindow* parent_patch_window(SharedPtr<NodeModel> node);
- NodeControlWindow* control_window(SharedPtr<NodeModel> node);
+ PatchWindow* patch_window(SharedPtr<const PatchModel> patch);
+ PatchWindow* parent_patch_window(SharedPtr<const NodeModel> node);
+ NodeControlWindow* control_window(SharedPtr<const NodeModel> node);
- void present_patch(SharedPtr<PatchModel> model,
+ void present_patch(SharedPtr<const PatchModel> model,
PatchWindow* preferred = NULL,
SharedPtr<PatchView> view = SharedPtr<PatchView>());
- void present_controls(SharedPtr<NodeModel> node);
+ void present_controls(SharedPtr<const NodeModel> node);
typedef GraphObject::Properties Properties;
- void present_load_plugin(SharedPtr<PatchModel> patch, Properties data=Properties());
- void present_load_patch(SharedPtr<PatchModel> patch, Properties data=Properties());
- void present_load_subpatch(SharedPtr<PatchModel> patch, Properties data=Properties());
- void present_load_remote_patch(SharedPtr<PatchModel> patch, Properties data=Properties());
- void present_upload_patch(SharedPtr<PatchModel> patch);
- void present_new_subpatch(SharedPtr<PatchModel> patch, Properties data=Properties());
- void present_rename(SharedPtr<ObjectModel> object);
- void present_properties(SharedPtr<ObjectModel> object);
+ void present_load_plugin(SharedPtr<const PatchModel> patch, Properties data=Properties());
+ void present_load_patch(SharedPtr<const PatchModel> patch, Properties data=Properties());
+ void present_load_subpatch(SharedPtr<const PatchModel> patch, Properties data=Properties());
+ void present_load_remote_patch(SharedPtr<const PatchModel> patch, Properties data=Properties());
+ void present_upload_patch(SharedPtr<const PatchModel> patch);
+ void present_new_subpatch(SharedPtr<const PatchModel> patch, Properties data=Properties());
+ void present_rename(SharedPtr<const ObjectModel> object);
+ void present_properties(SharedPtr<const ObjectModel> object);
bool remove_patch_window(PatchWindow* win, GdkEventAny* ignored = NULL);
@@ -89,10 +89,12 @@ private:
typedef std::map<Raul::Path, PatchWindow*> PatchWindowMap;
typedef std::map<Raul::Path, NodeControlWindow*> ControlWindowMap;
- PatchWindow* new_patch_window(SharedPtr<PatchModel> patch, SharedPtr<PatchView> view);
+ PatchWindow* new_patch_window(SharedPtr<const PatchModel> patch,
+ SharedPtr<PatchView> view);
- NodeControlWindow* new_control_window(SharedPtr<NodeModel> node);
- bool remove_control_window(NodeControlWindow* win, GdkEventAny* ignored);
+ NodeControlWindow* new_control_window(SharedPtr<const NodeModel> node);
+ bool remove_control_window(NodeControlWindow* win,
+ GdkEventAny* ignored);
PatchWindowMap _patch_windows;
ControlWindowMap _control_windows;