From b44d35c0f062737f434ada8af4ec2499b827c469 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 20 Aug 2011 21:43:37 +0000 Subject: Fix port and node menus git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3439 a436a847-0d15-0410-975c-d299462d15a1 --- src/gui/NodeMenu.cpp | 14 +- src/gui/NodeModule.cpp | 2 +- src/gui/ObjectMenu.cpp | 3 +- src/gui/PatchWindow.cpp | 8 +- src/gui/PatchWindow.hpp | 2 +- src/gui/Port.cpp | 2 +- src/gui/PortMenu.cpp | 6 +- src/gui/ingen_gui.ui | 4281 +++++++++++++++++++++++++---------------------- 8 files changed, 2330 insertions(+), 1988 deletions(-) (limited to 'src') diff --git a/src/gui/NodeMenu.cpp b/src/gui/NodeMenu.cpp index fb8556e0..b3c78789 100644 --- a/src/gui/NodeMenu.cpp +++ b/src/gui/NodeMenu.cpp @@ -37,14 +37,12 @@ NodeMenu::NodeMenu(BaseObjectType* cobject, , _controls_menuitem(NULL) , _presets_menu(NULL) { - Glib::RefPtr nxml = WidgetFactory::create("node_menu"); - Gtk::Menu* node_menu = NULL; - nxml->get_widget("node_menu", node_menu); - nxml->get_widget("node_controls_menuitem", _controls_menuitem); - nxml->get_widget("node_popup_gui_menuitem", _popup_gui_menuitem); - nxml->get_widget("node_embed_gui_menuitem", _embed_gui_menuitem); - nxml->get_widget("node_randomize_menuitem", _randomize_menuitem); + xml->get_widget("node_controls_menuitem", _controls_menuitem); + xml->get_widget("node_popup_gui_menuitem", _popup_gui_menuitem); + xml->get_widget("node_embed_gui_menuitem", _embed_gui_menuitem); + xml->get_widget("node_randomize_menuitem", _randomize_menuitem); + /* items().push_front(Gtk::Menu_Helpers::SeparatorElem()); node_menu->remove(*_randomize_menuitem); @@ -58,6 +56,7 @@ NodeMenu::NodeMenu(BaseObjectType* cobject, node_menu->remove(*_controls_menuitem); insert(*_controls_menuitem, 0); + */ } void @@ -120,7 +119,6 @@ NodeMenu::init(SharedPtr node) string(lilv_node_as_string(uri)))); } } - items().push_front(Gtk::Menu_Helpers::SeparatorElem()); items().push_front(Gtk::Menu_Helpers::ImageMenuElem("_Presets", *(manage(new Gtk::Image(Gtk::Stock::INDEX, Gtk::ICON_SIZE_MENU))))); Gtk::MenuItem* presets_menu_item = &(items().front()); diff --git a/src/gui/NodeModule.cpp b/src/gui/NodeModule.cpp index ab282714..f178a6c7 100644 --- a/src/gui/NodeModule.cpp +++ b/src/gui/NodeModule.cpp @@ -77,7 +77,7 @@ NodeModule::~NodeModule() bool NodeModule::show_menu(GdkEventButton* ev) { - WidgetFactory::get_widget_derived("node_menu", _menu); + WidgetFactory::get_widget_derived("object_menu", _menu); _menu->init(_node); _menu->signal_embed_gui.connect( sigc::mem_fun(this, &NodeModule::embed_gui)); diff --git a/src/gui/ObjectMenu.cpp b/src/gui/ObjectMenu.cpp index b97aa412..c2dd370a 100644 --- a/src/gui/ObjectMenu.cpp +++ b/src/gui/ObjectMenu.cpp @@ -34,7 +34,7 @@ namespace Ingen { namespace GUI { ObjectMenu::ObjectMenu(BaseObjectType* cobject, - const Glib::RefPtr& deriv_xml) + const Glib::RefPtr& xml) : Gtk::Menu(cobject) , _polyphonic_menuitem(NULL) , _disconnect_menuitem(NULL) @@ -43,7 +43,6 @@ ObjectMenu::ObjectMenu(BaseObjectType* cobject, , _properties_menuitem(NULL) , _enable_signal(false) { - Glib::RefPtr xml = WidgetFactory::create("object_menu"); xml->get_widget("object_learn_menuitem", _learn_menuitem); xml->get_widget("object_unlearn_menuitem", _unlearn_menuitem); xml->get_widget("object_polyphonic_menuitem", _polyphonic_menuitem); diff --git a/src/gui/PatchWindow.cpp b/src/gui/PatchWindow.cpp index b06c3fb5..5c045612 100644 --- a/src/gui/PatchWindow.cpp +++ b/src/gui/PatchWindow.cpp @@ -62,7 +62,7 @@ PatchWindow::PatchWindow(BaseObjectType* cobject, property_visible() = false; xml->get_widget("patch_win_vbox", _vbox); - xml->get_widget("patch_win_viewport", _viewport); + xml->get_widget("patch_win_alignment", _alignment); xml->get_widget("patch_win_status_bar", _status_bar); //xml->get_widget("patch_win_status_bar", _status_bar); //xml->get_widget("patch_open_menuitem", _menu_open); @@ -228,12 +228,12 @@ PatchWindow::set_patch(SharedPtr patch, assert(_view); - // Add view to our viewport + // Add view to our alignment if (_view->get_parent()) _view->get_parent()->remove(*_view.get()); - _viewport->remove(); - _viewport->add(*_view.get()); + _alignment->remove(); + _alignment->add(*_view.get()); if (_breadcrumbs->get_parent()) _breadcrumbs->get_parent()->remove(*_breadcrumbs); diff --git a/src/gui/PatchWindow.hpp b/src/gui/PatchWindow.hpp index 65725e06..4ba9d123 100644 --- a/src/gui/PatchWindow.hpp +++ b/src/gui/PatchWindow.hpp @@ -149,7 +149,7 @@ private: Gtk::MenuItem* _menu_help_about; Gtk::VBox* _vbox; - Gtk::Viewport* _viewport; + Gtk::Alignment* _alignment; BreadCrumbs* _breadcrumbs; Gtk::Statusbar* _status_bar; diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index ab48f30b..25edf685 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -122,7 +122,7 @@ bool Port::show_menu(GdkEventButton* ev) { PortMenu* menu = NULL; - WidgetFactory::get_widget_derived("port_menu", menu); + WidgetFactory::get_widget_derived("object_menu", menu); menu->init(model(), _flipped); menu->popup(ev->button, ev->time); return true; diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp index c496d675..8dafd83f 100644 --- a/src/gui/PortMenu.cpp +++ b/src/gui/PortMenu.cpp @@ -34,7 +34,7 @@ PortMenu::PortMenu(BaseObjectType* cobject, : ObjectMenu(cobject, xml) , _patch_port(NULL) { - xml->get_widget("port_menu", _port_menu); + xml->get_widget("object_menu", _port_menu); xml->get_widget("port_set_min_menuitem", _set_min_menuitem); xml->get_widget("port_set_max_menuitem", _set_max_menuitem); xml->get_widget("port_reset_range_menuitem", _reset_range_menuitem); @@ -64,10 +64,6 @@ PortMenu::init(SharedPtr port, bool patch_port) if (port->is_a(PortType::EVENTS)) _polyphonic_menuitem->hide(); - items().push_back( - Gtk::Menu_Helpers::MenuElem( - "Disconnect All", sigc::mem_fun(this, &PortMenu::on_menu_disconnect))); - const bool is_control = App::instance().can_control(port.get()) && port->is_numeric(); diff --git a/src/gui/ingen_gui.ui b/src/gui/ingen_gui.ui index 3945ee1c..2f163ead 100644 --- a/src/gui/ingen_gui.ui +++ b/src/gui/ingen_gui.ui @@ -1,777 +1,711 @@ - + - - - Ingen - 776 - 480 + + False + True + normal + Ingen + @INGEN_VERSION@ + Copyright 2005-2011 David Robillard <http://drobilla.net> + http://drobilla.net/software/ingen + Licensed under the GNU GPL, Version 2. + +See COPYING file included with this distribution, or http://www.gnu.org/licenses/gpl.txt for more information + Author: + David Robillard <d@drobilla.net> + +Contributors: + Lars Luthman - DSSI enhancements, bugfixes + Mario Lang - SuperCollider bindings, bugfixes + Leonard Ritter - Python bindings + + translator-credits + Usability / UI Design: + Thorsten Wilms + True + + + False + + + False + + + False + True + end + 0 + + + + + + + True + False - + True - vertical - - - True + False + False + _Edit + True + True + + + + + True + False + + + + + _Input + True + False + False + True + False + + + False - + True - _File + False + False + _Audio True - - - - - _Import... - True - True - False - - - - - - - Import _Location... - True - True - False - - - - - - - True - - - - - gtk-save - True - True - True - - - - - - Save _As... - True - True - False - - - - - - - _Upload... - True - True - False - - - - - - - _Draw... - True - True - False - - - - - - - True - - - - - gtk-close - True - True - True - - - - - - True - - - - - gtk-quit - True - True - True - - - - - + - + True - _Edit + False + False + _Control True - - - - - True - _Edit connections - True - True - - - - - - True - - - - - gtk-cut - True - False - True - True - - - - - - gtk-copy - True - True - True - - - - - - gtk-paste - True - False - True - True - - - - - - gtk-delete - True - True - True - - - - - - - gtk-select-all - True - True - True - - - - - - - True - - - - - Arrange - True - True - False - - - - - - True - - - - - C_ontrols... - True - True - False - - - - - - - gtk-properties - True - True - True - - - - - - + - + True - _View + False + False + _Event True - - - - - True - _Human names - True - True - - - - - - True - Port _Names - True - True - - - - - - True - _Status Bar - True - True - - - - - - True - - - - - gtk-zoom-in - True - True - True - - - - - - gtk-zoom-out - True - True - True - - - - - - gtk-zoom-100 - True - True - True - - - - - - True - - - - - gtk-fullscreen - True - True - True - - - - - - + + + + + + + + + + _Output + True + False + False + True + False + + + False + + + True + False + False + _Audio + True + + + + + + True + False + False + _Control + True + + + + + + True + False + False + _Event + True + + + + + + + + + + _Find Plugin... + True + False + False + True + False + + + + + + True + False + + + + + _Load Patch... + True + False + False + True + False + + + + + + _New Patch... + True + False + False + True + False + + + + + + False + 8 + Configuration - Ingen + + + True + False + 6 + + + True + False + 2 + 2 + + + True + False + <b>Patch Search Path: </b> + True + + GTK_FILL + + - + True - _Windows - True - - - - - - _Engine - True - True - False - - - - - - - _Patch Tree - True - True - False - - - - - - - _Messages - True - True - False - - - - - - + True + + 1 + 2 + + - + True - _Help - True - - - - - - Right-click the canvas to add objects - True - True - False - - - - - Press 'e' to toggle edit mode - True - True - False - - - - - True - - - - - gtk-about - True - True - True - - - - - + False + <i>Example: /foo/bar:/home/john/patches:/usr/share/om/patches</i> + True + + + 1 + 2 + 1 + 2 + GTK_FILL + + + + + + True + False + 0 + + 1 + 2 + GTK_FILL + + - False + True False 0 - + True - True + False + 6 + end - + + gtk-save True True - automatic - automatic - - - True - queue - none - - - - - + False + False + True - True - False + False + False + 0 - + + gtk-cancel True True - False - word - False + False + False + True - False - True + False + False + 1 + + + + + gtk-ok + True + True + False + False + True + + + False + False + 2 - - - 1 - - - - - True - 2 False - 2 + True + 1 - - 8 - Load Plugin - Ingen - center-on-parent - True + + False + 6 + Engine - Ingen + False dialog - - + + True - 1 - - + False + 6 + + True - True - 2 - automatic - automatic + False + end - + + gtk-quit True True - 2 - True - True - - - - - 0 - - - - - True - 3 - 3 - 12 - - - True - 1 - Node _Symbol: - True - True - load_plugin_name_entry - - - 2 - 3 - GTK_FILL - - - - - - True + True + False + False + True - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL + False + False + 0 - + + gtk-disconnect True + False + True + True + False + False + True - 1 - 2 - GTK_FILL - GTK_FILL + False + False + 1 - + + gtk-connect True + True + True + True + False + False + True - 2 - 3 - 1 - 2 - GTK_FILL - GTK_FILL + False + False + 2 + + + False + False + end + 0 + + + + + True + False - + True + False - + True - True + False + 12 + gtk-disconnect + 3 + False + True 0 - - _Polyphonic + True - True - False - True - True - True + False + 5 + True + + + True + False + 0.10000000149 + + + False + False + 0 + + + + + True + False + 0 + Not Connected + + + False + True + 1 + + - False - False - 8 + True + True 1 - 1 - 2 - 2 - 3 - GTK_FILL - 6 - - - - - True - True - True - gtk-clear - True - True - - - 1 - 3 - GTK_FILL + True + False + 0 - + True + False - GTK_FILL - + False + True + 4 + 1 - + True - 4 + False + 3 + 2 + 8 - - gtk-close + + True + False + + + True + False + True + 1 + True + + + False + False + 0 + + + + + 1 + 2 + 1 + 2 + GTK_FILL + 8 + + + + + True + False + + + True + True + True + 28 + osc.udp://localhost:16180 + + + True + True + 0 + + + + + 1 + 2 + GTK_FILL + GTK_FILL + 8 + + + + + _Connect to running server at: True True - True - True + False + False + True + True - False - False - 0 + GTK_FILL + - - gtk-add + + _Launch and connect to server on port: True True - True - True + False + False + True + True + connect_server_radiobutton - False - False - 1 + 1 + 2 + GTK_FILL + + + + + + Use _internal engine + True + False + True + False + False + True + True + connect_server_radiobutton + + + 2 + 3 + GTK_FILL + + + + + + True + False + 0 + + + 1 + 2 + 2 + 3 + GTK_FILL + - 2 - 3 - 2 - 3 - GTK_FILL - GTK_FILL - - - - - False - False - 1 - - - - - - - 320 - 8 - Create Subpatch - Ingen - False - center-on-parent - dialog - - - True - vertical - - - True - 2 - 2 - - - True - 0 - _Symbol: - True - new_subpatch_name_entry - - - GTK_FILL - GTK_EXPAND - 5 - - - - - True - 0 - _Polyphony: - True - new_subpatch_polyphony_spinbutton - - - 1 - 2 - GTK_FILL - GTK_EXPAND - 5 + True + True + 2 - + True - True - - True - 1 + False - 1 - 2 - 1 - 2 - GTK_FILL - - 4 + False + True + 3 - + True - True - - True + False + 6 + start + + + D_eactivate + True + True + True + False + True + + + False + False + 0 + + + + + _Activate + True + True + True + False + True + + + False + False + 1 + + - 1 - 2 - - 4 + True + True + 6 + 4 - - 0 - - - - - True - True - False - False - 1 + True + 2 - - + + + + connect_quit_button + connect_disconnect_button + connect_connect_button + + + + False + Load Patch - Ingen + center-on-parent + dialog + + + False + 24 + + True - 4 + False end - + gtk-cancel True True - True + True + False + False True @@ -781,13 +715,14 @@ - - gtk-ok + + gtk-open True True True True - True + False + False True @@ -798,27 +733,22 @@ - 2 + False + True + end + 0 - - - - - Load Patch - Ingen - center-on-parent - dialog - - - 24 True + False 0 0 True + False 3 3 12 @@ -826,6 +756,7 @@ True + False 0 Polyphony: True @@ -844,6 +775,7 @@ True False True + False True True load_patch_poly_voices_radio @@ -860,6 +792,7 @@ True + False 0 Ports: True @@ -877,6 +810,7 @@ True False True + False True True load_patch_merge_ports_radio @@ -896,6 +830,7 @@ True False True + False True True True @@ -911,6 +846,7 @@ True + False 6 @@ -919,6 +855,7 @@ True False True + False True True True @@ -933,440 +870,248 @@ True True - + 1 False + True 1 - 1 - 2 - 1 - 2 - GTK_FILL - GTK_FILL - - - - - True - 0 - _Symbol: - True - True - load_patch_symbol_entry - - - GTK_FILL - - - - - - True - True - - True - - - 1 - 3 - GTK_FILL - - - - - - - False - False - 2 - - - - - True - end - - - gtk-cancel - True - True - True - False - True - - - False - False - 0 - - - - - gtk-open - True - True - True - True - False - True - - - False - False - 1 - - - - - False - end - 0 - - - - - - load_patch_cancel_button - load_patch_ok_button - - - - Warehouse - Ingen - - - True - 6 - 12 - 12 - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - 0 - 4 - <b>Name</b> - True - True - - - False - False - 0 + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL - + True - 1 - 0 - 1 - 1 - 4 - - - True - - + False + 0 + _Symbol: + True + True + load_patch_symbol_entry - 1 + GTK_FILL + - + True True - False - True + + True - False - 2 + 1 + 3 + GTK_FILL - - False - False - 0 - - 4 - 5 - 8 + False + False + 2 + + + + load_patch_cancel_button + load_patch_ok_button + + + + False + 8 + Load Plugin - Ingen + center-on-parent + True + dialog + + + True + False + 1 - + True + True + 2 - + True - 0 - - - True - True - never - automatic - - - True - none - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - - - + True + 2 + True + True + + - - 0 - + + True + True + 0 + - + True - - - True - - - True - icons - 1 - - - True - - - - - - False - - - - - 0 - - - - - True - icons - False - 1 - - - True - True - gtk-execute - True - - - False - True - - - - - True - - - True - 4 - gtk-copy - - - - - False - - - - - True - - - True - True - 1 - True - - - - - False - - - - - True - - - False - - - - - True - gtk-save - - - False - True - - - - - True - - - False - - - - - True - gtk-refresh - - - False - True - - - - - True - True - gtk-zoom-100 - - - False - True - - - - - True - True - gtk-zoom-fit - - - False - True - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - False - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - Edit - gtk-connect - True - - - False - True - - + False + 3 + 3 + 12 + + + True + False + 1 + Node _Symbol: + True + True + load_plugin_name_entry + + + 2 + 3 + GTK_FILL + + + + + + True + False + + + 1 + 2 + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + + + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + + + 2 + 3 + 1 + 2 + GTK_FILL + GTK_FILL + + + + + True + False + + + True + True + + + True + True + 0 + + + + + _Polyphonic + True + True + False + False + True + True + True False + False + 8 1 - False - False - 0 + 1 + 2 + 2 + 3 + GTK_FILL + 6 - + True True True - True - True - True - GDK_EXPOSURE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON1_MOTION_MASK | GDK_BUTTON2_MOTION_MASK | GDK_BUTTON3_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_FOCUS_CHANGE_MASK | GDK_STRUCTURE_MASK | GDK_PROPERTY_CHANGE_MASK | GDK_VISIBILITY_NOTIFY_MASK | GDK_PROXIMITY_IN_MASK | GDK_PROXIMITY_OUT_MASK | GDK_SUBSTRUCTURE_MASK | GDK_SCROLL_MASK - 1 - in - - - + gtk-clear - 1 + 1 + 3 + GTK_FILL - - - 2 - 3 - GTK_FILL - - - - - True - - - 1 - 2 - GTK_FILL - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - + True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + + + GTK_FILL + + + + + + True + False + 4 - + + gtk-close True - 0 - 1 - 4 - <b>Name</b> - True - True + True + True + False + True False @@ -1375,38 +1120,65 @@ - - True - 1 - 0 - 1 - 1 - 4 - - - True - - - - - 1 - - - - + + gtk-add True True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 12 - 4 - True + True + False + True False - 2 + False + 1 + + 2 + 3 + 2 + 3 + GTK_FILL + GTK_FILL + + + + + False + False + 1 + + + + + + + False + 8 + Download Patch - Ingen + dialog + + + True + False + 8 + + + True + False + end + + + gtk-cancel + True + True + True + False + False + True + False False @@ -1414,42 +1186,67 @@ - + + gtk-open True + False True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - 63 - False + True + True + False + False + True False + False 1 - 3 - 4 - 8 + False + True + end + 0 - + True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - vertical + False + 8 + + + True + True + True + in + + + True + True + + + + + + + + True + True + 0 + + - + True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False - + True - 0 - 4 - <b>Name</b> - True - True + False + URI: False @@ -1458,48 +1255,53 @@ - + True True - - False + 78 + True + True 1 False - False - 0 + True + 1 - 5 - 6 - 8 + False + True + 2 + + load_remote_patch_cancel_button + load_remote_patch_open_button + 400 180 + False 8 Messages - Ingen True + False 6 True True - automatic - automatic in @@ -1517,12 +1319,15 @@ + True + True 0 True + False 6 end @@ -1533,6 +1338,7 @@ True True False + False True @@ -1547,6 +1353,7 @@ True True False + False True @@ -1558,229 +1365,127 @@ False + True 1 - + + 320 + False 8 - Configuration - Ingen + Create Subpatch - Ingen + False + center-on-parent + dialog - + True - 6 + False - + True + False 2 2 - - True - <b>Patch Search Path: </b> - True - - - GTK_FILL - - - - - - True - True - - - 1 - 2 - - - - - + True - <i>Example: /foo/bar:/home/john/patches:/usr/share/om/patches</i> - True + False + 0 + _Symbol: + True + new_subpatch_name_entry - 1 - 2 - 1 - 2 GTK_FILL - + GTK_EXPAND + 5 - + True + False 0 + _Polyphony: + True + new_subpatch_polyphony_spinbutton 1 2 GTK_FILL - - - - - - False - 0 - - - - - True - 6 - end - - - gtk-save - True - True - False - True - - - False - False - 0 - - - - - gtk-cancel - True - True - False - True - - - False - False - 1 - - - - - gtk-ok - True - True - False - True - - - False - False - 2 - - - - - False - 1 - - - - - - - 250 - Rename - center-on-parent - True - dialog - - - True - 5 - vertical - - - True - 2 - 2 - 8 - - - True - _Symbol: - True - rename_symbol_entry - - - GTK_FILL + GTK_EXPAND + 5 - + True True - + True + 1 1 2 1 2 - - - - - True - _Label: - True - rename_label_entry - - - 1 - 2 GTK_FILL + + 4 - + True True - True - + True 1 2 + + 4 + True + True 0 - + True + False + True - 12 + False + False 1 - + True - 8 + False + 4 end - + gtk-cancel True True - True True + False True @@ -1790,68 +1495,167 @@ - + gtk-ok True - True - True - True - False - True - - - False - False - 1 - - - - - False - 2 - - - - - - - True - normal - Ingen - @INGEN_VERSION@ - Copyright 2005-2011 David Robillard <http://drobilla.net> - http://drobilla.net/software/ingen - Licensed under the GNU GPL, Version 2. - -See COPYING file included with this distribution, or http://www.gnu.org/licenses/gpl.txt for more information - Author: - David Robillard <d@drobilla.net> - -Contributors: - Lars Luthman - DSSI enhancements, bugfixes - Mario Lang - SuperCollider bindings, bugfixes - Leonard Ritter - Python bindings - - translator-credits - Usability / UI Design: - Thorsten Wilms - True - - - - + True + True + True + True + False + True + + + False + False + 1 + + + - False - end - 0 + True + True + 2 + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + P_olyphonic + True + + + + + True + False + False + _Learn + True + + + + + True + False + False + _Unlearn + True + + + + + Dis_connect + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + True + False + + + + + _Rename... + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + True + False + + + + + gtk-delete + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + True + True + + + + + gtk-properties + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + True + True + + + + + True + False + + + + + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + False + + + + + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + False + + + + + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + + + + + False + False + False + + + + + False + False + + + + + False + False + + + + + False + False + + + 320 340 + False 8 Patches - Ingen @@ -1859,536 +1663,766 @@ Contributors: True True 3 - automatic - automatic in True True True + + + - - 6 - Engine - Ingen - False - dialog - - + + False + Ingen + 776 + 480 + + True - 6 + False - + True + False - + True - - - True - 12 - gtk-disconnect - 3 + False + False + _File + True + + + False + + + _Import... + True + False + False + True + False + + + + + + + Import _Location... + True + False + False + True + False + + + + + + + True + False + + + + + gtk-save + True + False + False + True + True + + + + + + Save _As... + True + False + False + True + False + + + + + + + _Upload... + True + False + False + True + False + + + + + + + _Draw... + True + False + False + True + False + + + + + + + True + False + + + + + gtk-close + True + False + False + True + True + + + + + + True + False + + + + + gtk-quit + True + False + False + True + True + + + - - False - 0 - - - - True - 5 - True + + + + + True + False + False + _Edit + True + + + False + + + True + False + False + _Edit connections + True + True + + + - + True - 0.10000000149 + False - - False - False - 0 - - + + gtk-cut True - 0 - Not Connected + False + False + False + True + True + + + + + + gtk-copy + True + False + False + True + True + + + + + + gtk-paste + True + False + False + False + True + True + + + + + + gtk-delete + True + False + False + True + True + + + + + + + gtk-select-all + True + False + False + True + True + + + + + + + True + False + + + + + Arrange + True + False + False + True + False + + + + + + True + False + + + + + C_ontrols... + True + False + False + True + False + + + + + + + gtk-properties + True + False + False + True + True + + - - False - 1 - - - 1 - - - False - 0 - - - - - True - - - False - 4 - 1 - - + True - 3 - 2 - 8 - - - True + False + False + _View + True + + + False - + True - False - True - 1 - True + False + False + _Human names + True + True + - - False - False - 0 - - - - 1 - 2 - 1 - 2 - GTK_FILL - 8 - - - - - True - + True - True - True - 28 - osc.udp://localhost:16180 + False + False + Port _Names + True + True + + + + + + True + False + False + _Status Bar + True + True + + + + + + True + False + + + + + gtk-zoom-in + True + False + False + True + True + + + + + + gtk-zoom-out + True + False + False + True + True + + + + + + gtk-zoom-100 + True + False + False + True + True + + + + + + True + False + + + + + gtk-fullscreen + True + False + False + True + True + + - - 0 - - - 1 - 2 - GTK_FILL - GTK_FILL - 8 - - - - - _Connect to running server at: - True - True - False - True - True - - - GTK_FILL - - - - - - _Launch and connect to server on port: - True - True - False - True - True - connect_server_radiobutton - - - 1 - 2 - GTK_FILL - - - - - - Use _internal engine - True - False - True - False - True - True - connect_server_radiobutton - - - 2 - 3 - GTK_FILL - - - - - - True - 0 - - - 1 - 2 - 2 - 3 - GTK_FILL - - - - 2 - - + True + False + False + _Windows + True + + + + False + + + _Engine + True + False + False + True + False + + + + + + + _Patch Tree + True + False + False + True + False + + + + + + + _Messages + True + False + False + True + False + + + + + + - - False - 3 - - + True - 6 - start - - - D_eactivate - True - True - True - True - - - False - False - 0 - - - - - _Activate - True - True - True - True + False + False + _Help + True + + + + False + + + Right-click the canvas to add objects + True + False + False + True + False + + + + + Press 'e' to toggle edit mode + True + False + False + True + False + + + + + True + False + + + + + gtk-about + True + False + False + True + True + + + - - False - False - 1 - - - 6 - 4 - - 2 + False + False + 0 - - + + True - end - - - gtk-quit - True - True - True - False - True - - - False - False - 0 - - + True - - gtk-disconnect + True - False - True - True - False - True + False + + + - False - False - 1 + False + True - - gtk-connect + True True - True - True - False - True + False + word + False - False - False - 2 + False + True + + True + True + 1 + + + + + True + False + 2 + False - False - end - 0 + True + 2 - - connect_quit_button - connect_disconnect_button - connect_connect_button - - - True + + False - + + gtk-properties True - _Edit + False + False True - True - - - - - True + True + + + + False + 8 + Port Properties - Ingen + False + mouse - - _Input + True - True - False - - + False + 8 + + + True + False + end - + + gtk-cancel True - _Audio - True - + True + True + False + False + True + + False + False + 0 + - + + gtk-ok True - _Control - True - + True + True + True + False + False + True + + False + False + 1 + + + + False + True + end + 0 + + + + + True + False + 2 + 2 + 2 + 4 - + True - _Event - True - + True + 1 + 5 + True + + 1 + 2 + + - - - - - - - _Output - True - True - False - - - + True - _Audio - True - + True + 1 + 5 + True + + 1 + 2 + 1 + 2 + + - + True - _Control - True - + False + 0 + Minimum Value: + + GTK_FILL + + - + True - _Event - True - + False + 0 + Maximum Value: + + 1 + 2 + GTK_FILL + + + + True + True + 2 + - - - _Find Plugin... - True - True - False - - - - - - True - - - - - _Load Patch... - True - True - False - - - - - - _New Patch... - True - True - False - - - - - 8 - Download Patch - Ingen - dialog - - + + False + 12 + center-on-parent + + True - 8 + False + 12 - + True - 8 - - - True - True - True - automatic - automatic - in - - - True - True - - - - - 0 - - + True - + True + False + queue + none - - True - URI: - - - False - False - 0 - - - - + True - True - 78 + False + 3 + 12 + 6 + + + + + + + + + - - 1 - - - False - 1 - - 2 + True + True + 0 - - + + True + False + 6 end - + gtk-cancel True True True - False + True + False True @@ -2398,67 +2432,84 @@ Contributors: - - gtk-open + + gtk-apply + True + True + True + False + True + + + False + False + 1 + + + + + gtk-ok True - False True True True - False + True + False True False False - 1 + 2 False + True end - 0 + 1 - - load_remote_patch_cancel_button - load_remote_patch_open_button - - - 8 - Upload Patch - Ingen - False + + 250 + False + Rename + center-on-parent + True dialog - - + + True - 9 + False + 5 - + True + False 2 2 8 - - True - True - True + + True + False + _Symbol: + True + rename_symbol_entry - 1 - 2 - + GTK_FILL - + True True + True @@ -2466,69 +2517,118 @@ Contributors: 2 1 2 - - + True - 0 - Symbol: + False + _Label: + True + rename_label_entry + 1 + 2 GTK_FILL - - + True - 0 - Short Name: + True + True + + True - 1 - 2 - GTK_FILL - + 1 + 2 - 2 + True + True + 0 - + True - 4 - Succesfully uploaded patches will be available immediately in the remote patch browser. - -By uploading patches, you agree to license them under the Creative Commons Attribution-Share Alike 3.0 License. - -Thank you for contributing. - True + False - False - False - 3 + True + True + 12 + 1 - + True - 0.10000000149 + False + 8 + end + + + gtk-cancel + True + True + True + True + False + True + + + False + False + 0 + + + + + gtk-ok + True + True + True + True + False + False + True + + + False + False + 1 + + False - False - 4 + True + 2 + + + + + False + 8 + Upload Patch - Ingen + False + dialog + + + True + False + 9 - + True + False end @@ -2537,6 +2637,7 @@ Thank you for contributing. True True False + False True @@ -2553,18 +2654,22 @@ Thank you for contributing. True True False + False True + False 0 0 True + False 2 True + False gtk-ok @@ -2576,6 +2681,7 @@ Thank you for contributing. True + False Upload True @@ -2599,51 +2705,23 @@ Thank you for contributing. False + True end 0 - - - - upload_patch_cancel_button - upload_patch_upload_button - - - - - - gtk-properties - True - True - True - - - - - - 8 - Port Properties - Ingen - False - mouse - - - True - 8 - + True + False 2 2 - 2 - 4 + 8 - + True True - 1 - 5 - True + True 1 @@ -2652,12 +2730,10 @@ Thank you for contributing. - + True True - 1 - 5 - True + True 1 @@ -2668,10 +2744,11 @@ Thank you for contributing. - + True + False 0 - Minimum Value: + Symbol: GTK_FILL @@ -2679,10 +2756,11 @@ Thank you for contributing. - + True + False 0 - Maximum Value: + Short Name: 1 @@ -2693,215 +2771,474 @@ Thank you for contributing. - 2 + False + True + 2 + + + + + True + False + 4 + Succesfully uploaded patches will be available immediately in the remote patch browser. + +By uploading patches, you agree to license them under the Creative Commons Attribution-Share Alike 3.0 License. + +Thank you for contributing. + True + + + False + False + 3 + + + + + True + False + 0.10000000149 + + + False + False + 4 + + + + + + upload_patch_cancel_button + upload_patch_upload_button + + + + False + Warehouse - Ingen + + + True + False + 6 + 12 + 12 + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + False + 0 + 4 + <b>Name</b> + True + True + + + False + False + 0 + + + + + True + False + 1 + 0 + 1 + 1 + 4 + + + True + False + + + + + True + True + 1 + + + + + True + True + False + False + True + + + False + True + 2 + + + + + False + False + 0 + + + + + 4 + 5 + 8 - + True - end + False - - gtk-cancel + True - True - True - False - True + False + 0 + + + True + True + never + + + True + False + none + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + + + + - False - False + True + True 0 - - - gtk-ok - True - True - True - True - False - True - - - False - False - 1 - - - - False - end - 0 - - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - P_olyphonic - True - - - - - True - _Learn - True - - - - - True - _Unlearn - True - - - - - Dis_connect - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - False - - - - - _Rename... - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - False - - - - - gtk-delete - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - True - - - - - True - - - - - gtk-properties - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - True - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - Con_trols... - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - False - - - - - _GUI... - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - True - False - - - - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - _Embed GUI - True - - - - - R_andomize - True - True - False - - - - - 12 - center-on-parent - - - True - vertical - 12 - + True - True - automatic - automatic + False - + True - queue - none + False - + True - 3 - 12 - 6 + False + icons + 1 + + + True + False + False + + + + + + False + + + + + True + True + 0 + + + + + True + False + icons + False + 1 + + + True + False + False + True + gtk-execute + True + + + False + True + + + + + True + False + False + + + True + False + 4 + gtk-copy + + + + + False + + + + + True + False + False + + + True + True + 1 + True + + + + + False + + + + + True + False + + + False + + - + + True + False + False + gtk-save + + + False + True + - + + True + False + + + False + - + + True + False + False + gtk-refresh + + + False + True + + + + + True + False + False + True + gtk-zoom-100 + + + False + True + + + + + True + False + False + True + gtk-zoom-fit + + + False + True + + + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + False + + + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + False + Edit + gtk-connect + True + + + False + True + + + False + True + 1 + + + + + False + False + 0 + + + + + True + True + True + True + True + True + GDK_EXPOSURE_MASK | GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_MOTION_MASK | GDK_BUTTON1_MOTION_MASK | GDK_BUTTON2_MOTION_MASK | GDK_BUTTON3_MOTION_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK | GDK_KEY_PRESS_MASK | GDK_KEY_RELEASE_MASK | GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK | GDK_FOCUS_CHANGE_MASK | GDK_STRUCTURE_MASK | GDK_PROPERTY_CHANGE_MASK | GDK_VISIBILITY_NOTIFY_MASK | GDK_PROXIMITY_IN_MASK | GDK_PROXIMITY_OUT_MASK | GDK_SUBSTRUCTURE_MASK | GDK_SCROLL_MASK + 1 + in + + + + True + True + 1 + - 0 + 2 + 3 + GTK_FILL - + True - 6 - end + False + + + 1 + 2 + GTK_FILL + + + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - gtk-cancel + True - True - True - True - True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + False + 0 + 1 + 4 + <b>Name</b> + True + True + + + False + False + 0 + + + + + True + False + 1 + 0 + 1 + 1 + 4 + + + True + False + + + + + True + True + 1 + + + + + True + True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 12 + 4 + True + + + False + True + 2 + + False @@ -2910,68 +3247,80 @@ Thank you for contributing. - - gtk-apply + True True - True - True + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + 63 + False False - False + True 1 + + + 3 + 4 + 8 + + + + + True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - gtk-ok + True - True - True - True - True - True + False + GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK + + + True + False + 0 + 4 + <b>Name</b> + True + True + + + False + False + 0 + + + + + True + True + + False + + + True + True + 1 + + False False - 2 + 0 - False - end - 1 + 5 + 6 + 8 - - True - GDK_POINTER_MOTION_MASK | GDK_POINTER_MOTION_HINT_MASK | GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK - - - True - Set m_inimum to current value - True - - - - - True - Set m_aximum to current value - True - - - - - True - R_eset Range - True - - - -- cgit v1.2.1