DSP-Load Window: subscribe to newly added routes
[ardour.git] / gtk2_ardour / add_route_dialog.cc
index bf218fb8d876973c81e3d2e2176907bfd846c134..57c9cc2719a4b00c0a2e72f24d5c51a024192d92 100644 (file)
@@ -89,7 +89,7 @@ AddRouteDialog::AddRouteDialog ()
 
        if (builtin_types.empty()) {
                builtin_types.push_back (
-                       std::pair<string,string>(_("Audio Tracks"),  _( " \
+                       std::pair<string,string>(_("Audio Tracks"),  _(" \
 Use the settings, below, to create 1 or more new Audio tracks.\n \
 \n\n \
 You may select:\n \
@@ -134,17 +134,15 @@ The track will be added in the location specified by \"Position\".\n \
                ));
                builtin_types.push_back (
                        std::pair<string,string>(_("Audio Busses"),  _(" \
-Use the settings, below, to create new Audio Tracks.\n \
+Use the settings, below, to create new Audio Busses.\n \
 \n\n \
 You may select:\n \
-* The number of buses to add.\n \
-* A Name for the track(s).\n \
-* An Instrument plugin (or select \"None\" to drive an external device)\n \
-* A Group which will be assigned to the track(s).\n \
+* The number of busses to add.\n \
+* A Name for the busses.\n \
+* A Group which will be assigned to the Busses.\n \
 * Pin Connections mode. (see tooltip for details).\n \
-* Normal (non-destructive) or Tape (destructive) recording mode.\n \
 \n \
-The track will be added in the location specified by \"Position\".\n \
+The Busses will be added in the location specified by \"Position\".\n \
 ")
                ));
                builtin_types.push_back (
@@ -152,16 +150,16 @@ The track will be added in the location specified by \"Position\".\n \
 Use the settings, below, to create new MIDI Busses.\n \
 \n \
 MIDI Busses can combine the output of multiple tracks. \n \
-MIDI Buses are sometimes used to host a single \"heavy\" instrument plugin which is fed from multiple MIDI tracks.  \
+MIDI Busses are sometimes used to host a single \"heavy\" instrument plugin which is fed from multiple MIDI tracks.  \
 \n\n \
 You may select:\n \
-* The number of buses to add.\n \
-* A Name for the track(s).\n \
+* The number of busses to add.\n \
+* A Name for the busses.\n \
 * An Instrument plugin (or select \"None\" to drive an external device)\n \
-* A Group which will be assigned to the track(s).\n \
+* A Group which will be assigned to the busses.\n \
 * Pin Connections mode. (see tooltip for details).\n \
 \n \
-The track will be added in the location specified by \"Position\".\n \
+The busses will be added in the location specified by \"Position\".\n \
 ")
                ));
                builtin_types.push_back (
@@ -169,8 +167,19 @@ The track will be added in the location specified by \"Position\".\n \
 Use the settings, below, to create 1 or more VCA Master(s).\n \
 \n\n \
 You may select:\n \
-* The number of buses to add.\n \
+* The number of VCAs to add.\n \
 * A name for the new VCAs.  \"%n\" will be replaced by an index number for each VCA.\n \
+")
+               ));
+               builtin_types.push_back (
+                       std::pair<string,string>(_("Listen Busses"),   _(" \
+Use the settings, below, to create new Listen Busses.\n \
+Listen Busses are used as master outputs for monitor channels which are fed by\n \
+hidden monitor sends.\n \
+\n\n \
+You may select:\n \
+* The number of Listen Busses to add.\n \
+* A name for the new Listen Busses.\n \
 ")
                ));
        }
@@ -185,17 +194,17 @@ You may select:\n \
        strict_io_combo.append_text (_("Strict-I/O"));
        strict_io_combo.set_active (Config->get_strict_io () ? 1 : 0);
 
-       //top-level VBox
+       /* top-level VBox */
        VBox* vbox = manage (new VBox);
        get_vbox()->set_spacing (4);
        vbox->set_spacing (18);
        vbox->set_border_width (5);
 
-       //this box contains the template chooser, and the template details
+       /* this box contains the template chooser, and the template details */
        HBox* template_hbox = manage (new HBox);
        template_hbox->set_spacing (8);
 
-       //scrollbars for the template chooser and template descriptions....
+       /* scrollbars for the template chooser and template descriptions.... */
        Gtk::ScrolledWindow *template_scroller = manage (new Gtk::ScrolledWindow());
        template_scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
        template_scroller->add (trk_template_chooser);
@@ -204,10 +213,10 @@ You may select:\n \
        desc_scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
        desc_scroller->add (trk_template_desc);
 
-       //this is the outer frame that surrounds the description and the settings-table
+       /* this is the outer sample that surrounds the description and the settings-table */
        trk_template_outer_frame.set_name (X_("TextHighlightFrame"));
 
-       //this is the "inner frame" that surrounds the description text
+       /* this is the "inner frame" that surrounds the description text */
        trk_template_desc_frame.set_name (X_("TextHighlightFrame"));
        trk_template_desc_frame.add (*desc_scroller);
 
@@ -216,7 +225,7 @@ You may select:\n \
        trk_template_chooser.set_model (trk_template_model);
        trk_template_chooser.append_column (_("Template/Type"), track_template_columns.name);
 #ifdef MIXBUS
-       trk_template_chooser.append_column (_("Created With"), track_template_columns.created_with);
+       trk_template_chooser.append_column (_("Modified With"), track_template_columns.modified_with);
 #endif
        trk_template_chooser.set_headers_visible (true);
        trk_template_chooser.get_selection()->set_mode (SELECTION_SINGLE);
@@ -250,7 +259,7 @@ You may select:\n \
        vbox->pack_start (*template_hbox, true, true);
 
 
-       //Now pack the "settings table" with manual controls (these controls are sensitized by the left-side selection) 
+       /* Now pack the "settings table" with manual controls (these controls are sensitized by the left-side selection) */
 
        int n = 0;
 
@@ -262,7 +271,7 @@ You may select:\n \
 
        ++n;
 
-       // Number
+       /* Number */
        add_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        settings_table->attach (add_label, 0, 1, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
        Gtk::Alignment *align = manage (new Alignment (0, .5, 0, 0));
@@ -271,31 +280,31 @@ You may select:\n \
 
        ++n;
 
-       // Name
+       /* Name */
        name_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        settings_table->attach (name_label, 0, 1, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
        settings_table->attach (name_template_entry, 1, 3, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
 
-       // Route configuration
+       /* Route configuration */
        configuration_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        settings_table->attach (configuration_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
        settings_table->attach (channel_combo, 5, 6, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
 
        ++n;
 
-       // instrument choice (for MIDI)
+       /* instrument choice (for MIDI) */
        instrument_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        settings_table->attach (instrument_label, 0, 1, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
        settings_table->attach (instrument_combo, 1, 3, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
 
-       // Group choice
+       /* Group choice */
        group_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        settings_table->attach (group_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
        settings_table->attach (route_group_combo, 5, 6, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
 
        ++n;
 
-       // New Route's I/O is.. {strict/flexible}
+       /* New Route's I/O is.. {strict/flexible} */
        if (Profile->get_mixbus ()) {
                strict_io_combo.set_active (1);
        } else {
@@ -306,7 +315,7 @@ You may select:\n \
                ArdourWidgets::set_tooltip (strict_io_combo,
                                _("With strict-i/o enabled, Effect Processors will not modify the number of channels on a track. The number of output channels will always match the number of input channels."));
 
-               // recording mode
+               /* recording mode */
                mode_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
                settings_table->attach (mode_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
                settings_table->attach (mode_combo, 5, 6, n, n + 1, Gtk::FILL, Gtk::SHRINK, 0, 0);
@@ -317,12 +326,12 @@ You may select:\n \
        HBox* outer_box = manage (new HBox);
        outer_box->set_spacing (4);
 
-       // New route will be inserted at..
+       /* New route will be inserted at.. */
        insert_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
        outer_box->pack_start (insert_label, false, false);
        outer_box->pack_start (insert_at_combo, false, false);
 
-       //quick-add button  (add item but don't close dialog)
+       /* quick-add button (add item but don't close dialog) */
        Gtk::Button* addnoclose_button = manage (new Gtk::Button(_("Add selected items (and leave dialog open)")));
        addnoclose_button->set_can_default ();
        addnoclose_button->signal_clicked ().connect (sigc::bind (sigc::mem_fun (*this, &Gtk::Dialog::response), Add));
@@ -425,7 +434,6 @@ AddRouteDialog::trk_template_row_selected ()
                } else {
                        name_template_entry.set_text ("");
                }
-       
 
                if ((it = rs.find ("how_many")) != rs.end()) {
                        if (atoi (it->second.c_str()) > 0) {
@@ -534,13 +542,13 @@ std::string
 AddRouteDialog::get_template_path ()
 {
        string p;
-       
+
        if (trk_template_chooser.get_selection()->count_selected_rows() > 0) {
                TreeIter iter = trk_template_chooser.get_selection()->get_selected();
 
                if (iter) {
                        string n = (*iter)[track_template_columns.name];
-                       if ( n != _("Manual Configuration") ) {
+                       if (n != _("Manual Configuration")) {
                                p = (*iter)[track_template_columns.path];
                        }
                }
@@ -572,6 +580,8 @@ AddRouteDialog::type_wanted()
                return AudioTrack;
        } else if (str == _("VCA Masters")) {
                return VCAMaster;
+       } else if (str == _("Listen Busses")) {
+               return ListenBus;
        } else {
                assert (0);
                return AudioTrack;
@@ -599,6 +609,9 @@ AddRouteDialog::maybe_update_name_template_entry ()
        case MidiBus:
                name_template_entry.set_text (_("Bus"));
                break;
+       case ListenBus:
+               name_template_entry.set_text (_("Listener"));
+               break;
        case VCAMaster:
                name_template_entry.set_text (VCA::default_name_template());
                break;
@@ -630,7 +643,7 @@ AddRouteDialog::track_type_chosen ()
 
                insert_label.set_sensitive (true);
                insert_at_combo.set_sensitive (true);
-               
+
                break;
        case MidiTrack:
 
@@ -651,7 +664,7 @@ AddRouteDialog::track_type_chosen ()
 
                insert_label.set_sensitive (true);
                insert_at_combo.set_sensitive (true);
-               
+
                break;
        case MixedTrack:
                {
@@ -721,7 +734,7 @@ AddRouteDialog::track_type_chosen ()
 
                insert_label.set_sensitive (false);
                insert_at_combo.set_sensitive (false);
-               
+
                break;
        case MidiBus:
 
@@ -743,6 +756,27 @@ AddRouteDialog::track_type_chosen ()
                insert_label.set_sensitive (true);
                insert_at_combo.set_sensitive (true);
 
+               break;
+       case ListenBus:
+
+               configuration_label.set_sensitive (false);
+               channel_combo.set_sensitive (false);
+
+               mode_label.set_sensitive (false);
+               mode_combo.set_sensitive (false);
+
+               instrument_label.set_sensitive (false);
+               instrument_combo.set_sensitive (false);
+
+               group_label.set_sensitive (false);
+               route_group_combo.set_sensitive (false);
+
+               strict_io_label.set_sensitive (false);
+               strict_io_combo.set_sensitive (false);
+
+               insert_label.set_sensitive (false);
+               insert_at_combo.set_sensitive (false);
+
                break;
        }
 
@@ -843,6 +877,12 @@ AddRouteDialog::channels ()
                ret.set (DataType::AUDIO, channel_count ());
                ret.set (DataType::MIDI, 1);
                break;
+
+       case ListenBus:
+               ret.set (DataType::AUDIO, 2);
+               ret.set (DataType::MIDI, 0);
+               break;
+
        default:
                break;
        }
@@ -857,6 +897,7 @@ AddRouteDialog::on_show ()
        reset_name_edited ();
 
        refill_route_groups ();
+       refill_channel_setups ();
 
        Dialog::on_show ();
 }
@@ -925,7 +966,7 @@ AddRouteDialog::refill_channel_setups ()
                row[track_template_columns.name] = (*i).first;
                row[track_template_columns.path] = "";
                row[track_template_columns.description] = (*i).second;
-               row[track_template_columns.created_with] = "";
+               row[track_template_columns.modified_with] = "";
 
                if (!selected_default && !Profile->get_mixbus ()) {
                        trk_template_chooser.get_selection()->select(row);
@@ -940,8 +981,8 @@ AddRouteDialog::refill_channel_setups ()
                        continue;
                }
                TreeModel::Row row;
-               if ( (*s)->name == "Create Audio Tracks Interactively" && Profile->get_mixbus ()) {
-                       // somewhat-special, Ben says: "most-used template"
+               if ((*s)->name == "Create Audio Tracks Interactively" && Profile->get_mixbus ()) {
+                       /* somewhat-special, Ben says: "most-used template" */
                        row = *(trk_template_model->prepend ());
                } else {
                        row = *(trk_template_model->append ());
@@ -949,7 +990,7 @@ AddRouteDialog::refill_channel_setups ()
                row[track_template_columns.name] = (*s)->name;
                row[track_template_columns.path] = "urn:ardour:" + (*s)->path;
                row[track_template_columns.description] = (*s)->description;
-               row[track_template_columns.created_with] = _("{Factory Template}");
+               row[track_template_columns.modified_with] = _("{Factory Template}");
 
                if ((*s)->name == "Create Audio Tracks Interactively" && Profile->get_mixbus ()) {
                        trk_template_chooser.get_selection()->select(row);
@@ -957,6 +998,11 @@ AddRouteDialog::refill_channel_setups ()
                }
        }
 
+       if (!selected_default && !trk_template_model->children().empty()) {
+               TreeModel::Children rows = trk_template_model->children();
+               trk_template_chooser.get_selection()->select(rows[0]);
+       }
+
        std::vector<ARDOUR::TemplateInfo> route_templates;
        ARDOUR::find_route_templates (route_templates);
 
@@ -966,7 +1012,7 @@ AddRouteDialog::refill_channel_setups ()
                row[track_template_columns.name] = x->name;
                row[track_template_columns.path] = x->path;
                row[track_template_columns.description] = x->description;
-               row[track_template_columns.created_with] = x->created_with;
+               row[track_template_columns.modified_with] = x->modified_with;
        }
 
        set_popdown_strings (channel_combo, channel_combo_strings);