Changeset 2093
- Timestamp:
- 06/06/09 15:41:50 (15 months ago)
- Location:
- trunk/ingen/src/gui
- Files:
-
- 5 modified
-
NodeControlWindow.cpp (modified) (2 diffs)
-
NodeModule.cpp (modified) (1 diff)
-
NodePropertiesWindow.cpp (modified) (1 diff)
-
PatchWindow.cpp (modified) (1 diff)
-
PortPropertiesWindow.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ingen/src/gui/NodeControlWindow.cpp
r2033 r2093 46 46 set_border_width(5); 47 47 48 set_title(_node->path(). str() + " Controls");48 set_title(_node->path().chop_scheme() + " Controls - Ingen"); 49 49 50 50 Glib::RefPtr<Gnome::Glade::Xml> xml = GladeFactory::new_glade_reference("warehouse_win"); … … 74 74 set_border_width(5); 75 75 76 set_title(_node->path(). str() + " Controls");76 set_title(_node->path().chop_scheme() + " Controls - Ingen"); 77 77 78 78 _control_panel->reparent(*this); -
trunk/ingen/src/gui/NodeModule.cpp
r2056 r2093 301 301 302 302 _gui_window = new Gtk::Window(); 303 _gui_window->set_title(_node->path().chop_scheme() + " UI - Ingen"); 303 304 _gui_window->set_role("plugin_ui"); 304 305 _gui_window->add(*_gui_widget); -
trunk/ingen/src/gui/NodePropertiesWindow.cpp
r2000 r2093 50 50 _node_model = node_model; 51 51 52 set_title(node_model->path().str() + " Properties ");52 set_title(node_model->path().str() + " Properties - Ingen"); 53 53 54 54 _node_path_label->set_text(node_model->path().str()); -
trunk/ingen/src/gui/PatchWindow.cpp
r2073 r2093 254 254 ((int)_view->canvas()->height() - height)/2); 255 255 256 set_title(_patch->path(). str() + " - Ingen");256 set_title(_patch->path().chop_scheme() + " - Ingen"); 257 257 258 258 new_port_connection = patch->signal_new_port.connect( -
trunk/ingen/src/gui/PortPropertiesWindow.cpp
r2023 r2093 65 65 _port_model = pm; 66 66 67 set_title(pm->path(). str() + " Properties");67 set_title(pm->path().chop_scheme() + " Properties - Ingen"); 68 68 69 69 float min = 0.0f, max = 1.0f;
