diff options
author | David Robillard <d@drobilla.net> | 2008-09-15 04:15:03 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-09-15 04:15:03 +0000 |
commit | fccfce4b1e9c9f80b38d20dd8f0e90fe83a93068 (patch) | |
tree | a2c81600ac907662f84912fa5375bfd14450811c /src/libs/gui/PatchWindow.cpp | |
parent | 966b1446fcc3fc5a4cdda778c259bb24ed59539a (diff) | |
download | ingen-fccfce4b1e9c9f80b38d20dd8f0e90fe83a93068.tar.gz ingen-fccfce4b1e9c9f80b38d20dd8f0e90fe83a93068.tar.bz2 ingen-fccfce4b1e9c9f80b38d20dd8f0e90fe83a93068.zip |
Make view togglable between symbols and human names (just LV2 plugins for now).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@1502 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/gui/PatchWindow.cpp')
-rw-r--r-- | src/libs/gui/PatchWindow.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/libs/gui/PatchWindow.cpp b/src/libs/gui/PatchWindow.cpp index 01f74436..e0dc4b06 100644 --- a/src/libs/gui/PatchWindow.cpp +++ b/src/libs/gui/PatchWindow.cpp @@ -73,6 +73,7 @@ PatchWindow::PatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glad xml->get_widget("patch_view_engine_window_menuitem", _menu_view_engine_window); xml->get_widget("patch_properties_menuitem", _menu_view_patch_properties); xml->get_widget("patch_fullscreen_menuitem", _menu_fullscreen); + xml->get_widget("patch_human_names_menuitem", _menu_human_names); xml->get_widget("patch_arrange_menuitem", _menu_arrange); xml->get_widget("patch_clear_menuitem", _menu_clear); xml->get_widget("patch_destroy_menuitem", _menu_destroy_patch); @@ -106,6 +107,8 @@ PatchWindow::PatchWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glad sigc::mem_fun(this, &PatchWindow::event_quit)); _menu_fullscreen->signal_activate().connect( sigc::mem_fun(this, &PatchWindow::event_fullscreen_toggled)); + _menu_human_names->signal_activate().connect( + sigc::mem_fun(this, &PatchWindow::event_human_names_toggled)); _menu_arrange->signal_activate().connect( sigc::mem_fun(this, &PatchWindow::event_arrange)); _menu_view_engine_window->signal_activate().connect( @@ -527,5 +530,12 @@ PatchWindow::event_fullscreen_toggled() } +void +PatchWindow::event_human_names_toggled() +{ + _view->canvas()->show_human_names(_menu_human_names->get_active()); +} + + } // namespace GUI } // namespace Ingen |