diff options
author | David Robillard <d@drobilla.net> | 2007-10-06 23:12:15 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-10-06 23:12:15 +0000 |
commit | f2d5d172ff5f0ff02e6dfe0d0bd472b068192244 (patch) | |
tree | f6a03e0fdec83af952fb51112d3ecbaea210f2bf /src/libs/gui/WindowFactory.hpp | |
parent | 25fd375c074c45929f71d6b9ca4841882c832b05 (diff) | |
download | ingen-f2d5d172ff5f0ff02e6dfe0d0bd472b068192244.tar.gz ingen-f2d5d172ff5f0ff02e6dfe0d0bd472b068192244.tar.bz2 ingen-f2d5d172ff5f0ff02e6dfe0d0bd472b068192244.zip |
Access to object properties window via context menu (most importantly the port one, for control ranges).
git-svn-id: http://svn.drobilla.net/lad/ingen@833 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/WindowFactory.hpp')
-rw-r--r-- | src/libs/gui/WindowFactory.hpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/libs/gui/WindowFactory.hpp b/src/libs/gui/WindowFactory.hpp index 0227f728..91fb27ab 100644 --- a/src/libs/gui/WindowFactory.hpp +++ b/src/libs/gui/WindowFactory.hpp @@ -31,8 +31,9 @@ namespace GUI { class PatchWindow; class NodeControlWindow; -class NodePropertiesWindow; class PatchPropertiesWindow; +class NodePropertiesWindow; +class PortPropertiesWindow; class LoadPatchWindow; class LoadRemotePatchWindow; class UploadPatchWindow; @@ -68,7 +69,7 @@ public: void present_new_subpatch(SharedPtr<PatchModel> patch, MetadataMap data = MetadataMap()); void present_load_subpatch(SharedPtr<PatchModel> patch, MetadataMap data = MetadataMap()); void present_rename(SharedPtr<ObjectModel> object); - void present_properties(SharedPtr<NodeModel> node); + void present_properties(SharedPtr<ObjectModel> object); bool remove_patch_window(PatchWindow* win, GdkEventAny* ignored = NULL); @@ -93,8 +94,9 @@ private: UploadPatchWindow* _upload_patch_win; NewSubpatchWindow* _new_subpatch_win; LoadSubpatchWindow* _load_subpatch_win; - NodePropertiesWindow* _node_properties_win; PatchPropertiesWindow* _patch_properties_win; + NodePropertiesWindow* _node_properties_win; + PortPropertiesWindow* _port_properties_win; RenameWindow* _rename_win; }; |