X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Fbundle_manager.cc;h=3ae74d3a2c818dffdfefee3110ad2d4c3e29ea35;hb=52275254a7adb9a446c104cc7dcfde82d1792786;hp=e9cddbd7540265cdefee778955d3d62acf6df0b3;hpb=85c2fd2b692e37dd1c5049229fb5733e0e262cc3;p=ardour.git diff --git a/gtk2_ardour/bundle_manager.cc b/gtk2_ardour/bundle_manager.cc index e9cddbd754..3ae74d3a2c 100644 --- a/gtk2_ardour/bundle_manager.cc +++ b/gtk2_ardour/bundle_manager.cc @@ -29,11 +29,12 @@ #include "ardour/user_bundle.h" #include "bundle_manager.h" #include "gui_thread.h" -#include "i18n.h" +#include "pbd/i18n.h" #include "utils.h" using namespace std; using namespace ARDOUR; +using namespace ARDOUR_UI_UTILS; BundleEditorMatrix::BundleEditorMatrix (Gtk::Window* parent, Session* session, boost::shared_ptr bundle) : PortMatrix (parent, session, DataType::NIL) @@ -115,7 +116,6 @@ BundleEditorMatrix::add_channel (boost::shared_ptr b, DataType t) if (b == _bundle) { NameChannelDialog d; - d.set_position (Gtk::WIN_POS_MOUSE); if (d.run () != Gtk::RESPONSE_ACCEPT) { return; @@ -162,7 +162,6 @@ void BundleEditorMatrix::rename_channel (BundleChannel bc) { NameChannelDialog d (bc.bundle, bc.channel); - d.set_position (Gtk::WIN_POS_MOUSE); if (d.run () != Gtk::RESPONSE_ACCEPT) { return; @@ -204,13 +203,13 @@ BundleEditor::BundleEditor (Session* session, boost::shared_ptr bund a = new Gtk::Alignment (0, 0.5, 0, 1); a->add (_input_or_output); t->attach (*Gtk::manage (a), 1, 2, 1, 2); - _input_or_output.append_text (_("Input")); - _input_or_output.append_text (_("Output")); + _input_or_output.append_text (_("Destination")); + _input_or_output.append_text (_("Source")); if (bundle->ports_are_inputs()) { - _input_or_output.set_active_text (_("Input")); + _input_or_output.set_active_text (_("Source")); } else { - _input_or_output.set_active_text (_("Output")); + _input_or_output.set_active_text (_("Destination")); } _input_or_output.signal_changed().connect (sigc::mem_fun (*this, &BundleEditor::input_or_output_changed)); @@ -219,7 +218,6 @@ BundleEditor::BundleEditor (Session* session, boost::shared_ptr bund get_vbox()->pack_start (_matrix); get_vbox()->set_spacing (4); - add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT); show_all (); signal_key_press_event().connect (sigc::mem_fun (_matrix, &BundleEditorMatrix::key_press)); @@ -244,7 +242,7 @@ BundleEditor::input_or_output_changed () { _bundle->remove_ports_from_channels (); - if (_input_or_output.get_active_text() == _("Output")) { + if (_input_or_output.get_active_text() == _("Source")) { _bundle->set_ports_are_outputs (); } else { _bundle->set_ports_are_inputs (); @@ -288,7 +286,7 @@ BundleManager::BundleManager (Session* session) edit_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::EDIT, Gtk::ICON_SIZE_BUTTON))); edit_button.signal_clicked().connect (sigc::mem_fun (*this, &BundleManager::edit_clicked)); buttons->pack_start (edit_button, false, false); - delete_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::Stock::DELETE, Gtk::ICON_SIZE_BUTTON))); + delete_button.set_image (*Gtk::manage (new Gtk::Image (Gtk::StockID(GTK_STOCK_DELETE), Gtk::ICON_SIZE_BUTTON))); delete_button.signal_clicked().connect (sigc::mem_fun (*this, &BundleManager::delete_clicked)); buttons->pack_start (delete_button, false, false); @@ -311,9 +309,6 @@ BundleManager::BundleManager (Session* session) sigc::mem_fun (*this, &BundleManager::row_activated) ); - Gtk::Button* close_but = add_button (Gtk::Stock::CLOSE, Gtk::RESPONSE_ACCEPT); - close_but->signal_clicked ().connect (sigc::mem_fun (*this, &Gtk::Window::hide)); - set_button_sensitivity (); show_all (); @@ -425,7 +420,6 @@ NameChannelDialog::NameChannelDialog () NameChannelDialog::NameChannelDialog (boost::shared_ptr b, uint32_t c) : ArdourDialog (_("Rename Channel")), _bundle (b), - _channel (c), _adding (false) { _name.set_text (b->channel_name (c));