Remove old destructive API (non layered is a dynamic mode) 1/2
[ardour.git] / gtk2_ardour / add_route_dialog.cc
1 /*
2   Copyright (C) 2003 Paul Davis
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cstdio>
21 #include <cmath>
22
23 #include <sigc++/bind.h>
24 #include <gtkmm/stock.h>
25 #include <gtkmm/messagedialog.h>
26 #include <gtkmm/separator.h>
27 #include <gtkmm/table.h>
28
29 #include "pbd/error.h"
30 #include "pbd/convert.h"
31
32 #include "gtkmm2ext/utils.h"
33 #include "gtkmm2ext/doi.h"
34
35 #include "widgets/tooltips.h"
36
37 #include "ardour/plugin_manager.h"
38 #include "ardour/profile.h"
39 #include "ardour/template_utils.h"
40 #include "ardour/route_group.h"
41 #include "ardour/session.h"
42 #include "ardour/vca.h"
43
44 #include "LuaBridge/LuaBridge.h"
45
46 #include "add_route_dialog.h"
47 #include "ardour_ui.h"
48 #include "route_group_dialog.h"
49 #include "utils.h"
50
51 #include "pbd/i18n.h"
52
53 using namespace Gtk;
54 using namespace Gtkmm2ext;
55 using namespace std;
56 using namespace PBD;
57 using namespace ARDOUR;
58 using namespace ARDOUR_UI_UTILS;
59
60 std::vector<std::string> AddRouteDialog::channel_combo_strings;
61
62 AddRouteDialog::AddRouteDialog ()
63         : ArdourDialog (_("Add Track/Bus/VCA"))
64         , routes_adjustment (1, 1, 128, 1, 4)
65         , routes_spinner (routes_adjustment)
66         , configuration_label (_("Configuration:"))
67         , manual_label (_("Manual Configuration:"))
68         , add_label (_("Add:"))
69         , type_label (_("Type:"))
70         , name_label (_("Name:"))
71         , group_label (_("Group:"))
72         , insert_label (_("Insert At:"))
73         , strict_io_label (_("Pin Mode:"))
74         , mode_label (_("Record Mode:"))
75         , instrument_label (_("Instrument:"))
76         , name_edited_by_user (false)
77 {
78         set_name ("AddRouteDialog");
79         set_skip_taskbar_hint (true);
80         set_resizable (false);
81         set_position (WIN_POS_MOUSE);
82
83         name_template_entry.set_name (X_("AddRouteDialogNameTemplateEntry"));
84         // routes_spinner.set_name (X_("AddRouteDialogSpinner"));
85         channel_combo.set_name (X_("ChannelCountSelector"));
86         mode_combo.set_name (X_("ChannelCountSelector"));
87
88         refill_track_modes ();
89
90         track_bus_combo.append_text (_("Audio Tracks"));
91         track_bus_combo.append_text (_("MIDI Tracks"));
92         track_bus_combo.append_text (_("Audio+MIDI Tracks"));
93         track_bus_combo.append_text (_("Audio Busses"));
94         track_bus_combo.append_text (_("MIDI Busses"));
95         track_bus_combo.append_text (_("VCA Masters"));
96         track_bus_combo.set_active (0);
97
98         insert_at_combo.append_text (_("First"));
99         insert_at_combo.append_text (_("Before Selection"));
100         insert_at_combo.append_text (_("After Selection"));
101         insert_at_combo.append_text (_("Last"));
102         insert_at_combo.set_active (3);
103
104         strict_io_combo.append_text (_("Flexible-I/O"));
105         strict_io_combo.append_text (_("Strict-I/O"));
106         strict_io_combo.set_active (Config->get_strict_io () ? 1 : 0);
107
108         VBox* vbox = manage (new VBox);
109
110         get_vbox()->set_spacing (4);
111
112         vbox->set_spacing (18);
113         vbox->set_border_width (5);
114
115         HBox* template_hbox = manage (new HBox);
116         template_hbox->set_spacing (8);
117
118         Gtk::ScrolledWindow *template_scroller = manage (new Gtk::ScrolledWindow());
119         template_scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
120         template_scroller->add (trk_template_chooser);
121
122         Gtk::ScrolledWindow *desc_scroller = manage (new Gtk::ScrolledWindow());
123         desc_scroller->set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
124         desc_scroller->add (trk_template_desc);
125
126         template_hbox->pack_start (*template_scroller, true, true);
127
128         trk_template_desc_frame.set_name (X_("TextHighlightFrame"));
129         trk_template_desc_frame.add (*desc_scroller);
130         template_hbox->pack_start (trk_template_desc_frame, true, true);
131
132         /* template_chooser is the treeview showing available templates */
133         trk_template_model = TreeStore::create (track_template_columns);
134         trk_template_chooser.set_model (trk_template_model);
135         trk_template_chooser.append_column (_("Template"), track_template_columns.name);
136 #ifdef MIXBUS
137         trk_template_chooser.append_column (_("Created With"), track_template_columns.created_with);
138 #endif
139         trk_template_chooser.set_headers_visible (true);
140         trk_template_chooser.get_selection()->set_mode (SELECTION_SINGLE);
141         trk_template_chooser.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &AddRouteDialog::trk_template_row_selected));
142         trk_template_chooser.set_sensitive (true);
143
144         /* template_desc is the textview that displays the currently selected template's description */
145         trk_template_desc.set_editable (false);
146         trk_template_desc.set_can_focus (false);
147         trk_template_desc.set_wrap_mode (Gtk::WRAP_WORD);
148         trk_template_desc.set_size_request(400,200);
149         trk_template_desc.set_name (X_("TextOnBackground"));
150         trk_template_desc.set_border_width (6);
151
152         vbox->pack_start (*template_hbox, true, true);
153
154         HBox *separator_hbox = manage (new HBox);
155         separator_hbox->pack_start (manual_label, false, false);
156         separator_hbox->pack_start (*(manage (new Gtk::HSeparator)), true, true);
157         separator_hbox->set_spacing (6);
158         vbox->pack_start (*separator_hbox, true, true);
159
160         /* track/bus choice */
161
162         Table *add_table = manage (new Table (8, 8, false));
163         add_table->set_row_spacings (8);
164         add_table->set_col_spacings     (3);
165         add_table->set_col_spacing      (1, 12);
166         add_table->set_col_spacing      (3, 12);
167         add_table->set_col_spacing      (5, 12);
168         add_table->set_border_width     (0);
169
170         int n = 0;
171
172         // Number
173         add_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
174         add_table->attach (add_label, 0, 1, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
175         add_table->attach (routes_spinner, 1, 2, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
176
177         // Type
178         type_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
179         add_table->attach (type_label, 2,3, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
180         add_table->attach (track_bus_combo, 3, 4, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
181
182         // Name
183         name_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
184         add_table->attach (name_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
185         add_table->attach (name_template_entry, 5, 8, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
186
187         ++n;
188
189         // Route configuration
190         configuration_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
191         add_table->attach (configuration_label, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
192         add_table->attach (channel_combo, 3, 4, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
193
194         // Group choice
195         group_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
196         add_table->attach (group_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
197         add_table->attach (route_group_combo, 5, 8, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
198
199         ++n;
200
201         // instrument choice (for MIDI)
202         instrument_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
203         add_table->attach (instrument_label, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
204         add_table->attach (instrument_combo, 3, 4, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
205
206         ++n;
207
208         // New Route's I/O is.. {strict/flexible}
209         if (Profile->get_mixbus ()) {
210                 strict_io_combo.set_active (1);
211         } else {
212                 strict_io_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
213                 add_table->attach (strict_io_label, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
214                 add_table->attach (strict_io_combo, 3, 4, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
215
216                 ArdourWidgets::set_tooltip (strict_io_combo,
217                                 _("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."));
218
219                 // recording mode
220                 mode_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
221                 add_table->attach (mode_label, 4, 5, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
222                 add_table->attach (mode_combo, 5, 8, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
223
224                 ++n;
225         }
226
227         // Separator
228         ++n;
229         add_table->attach (*(manage (new Gtk::HSeparator)), 0, 8, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
230
231         ++n;
232         ++n;
233         // New route will be inserted at..
234         insert_label.set_alignment (Gtk::ALIGN_RIGHT, Gtk::ALIGN_CENTER);
235         add_table->attach (insert_label, 2, 3, n, n + 1, Gtk::FILL, Gtk::EXPAND, 0, 0);
236         add_table->attach (insert_at_combo, 3, 4, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
237
238         Gtk::Button* addnoclose_button = manage (new Gtk::Button(_("Add selected items (and leave dialog open)")));
239         addnoclose_button->set_can_default ();
240         addnoclose_button->signal_clicked ().connect (sigc::bind (sigc::mem_fun (*this, &Gtk::Dialog::response), Add));
241         add_table->attach (*addnoclose_button, 5, 8, n, n + 1, Gtk::FILL, Gtk::EXPAND | Gtk::FILL, 0, 0);
242
243         vbox->pack_start (*add_table, false, true);
244
245         get_vbox()->pack_start (*vbox, false, false);
246
247         name_template_entry.signal_insert_text ().connect (sigc::mem_fun (*this, &AddRouteDialog::name_template_entry_insertion));
248         name_template_entry.signal_delete_text ().connect (sigc::mem_fun (*this, &AddRouteDialog::name_template_entry_deletion));
249         track_bus_combo.signal_changed().connect (sigc::mem_fun (*this, &AddRouteDialog::track_type_chosen));
250         channel_combo.signal_changed().connect (sigc::mem_fun (*this, &AddRouteDialog::channel_combo_changed));
251         channel_combo.set_row_separator_func (sigc::mem_fun (*this, &AddRouteDialog::channel_separator));
252         route_group_combo.set_row_separator_func (sigc::mem_fun (*this, &AddRouteDialog::route_separator));
253         route_group_combo.signal_changed ().connect (sigc::mem_fun (*this, &AddRouteDialog::group_changed));
254
255         show_all_children ();
256
257         /* track template info will be managed whenever
258          * this dialog is shown, via ::on_show()
259          */
260
261         add_button (_("Add and Close"), AddAndClose);
262         set_response_sensitive (AddAndClose, true);
263         set_default_response (AddAndClose);
264
265         track_type_chosen ();
266 }
267
268 AddRouteDialog::~AddRouteDialog ()
269 {
270 }
271
272 void
273 AddRouteDialog::on_response (int r)
274 {
275         name_edited_by_user = false;
276         /* Don't call ArdourDialog::on_response() because that will
277            automatically hide the dialog.
278         */
279         Gtk::Dialog::on_response (r);
280 }
281
282 void
283 AddRouteDialog::trk_template_row_selected ()
284 {
285         if (trk_template_chooser.get_selection()->count_selected_rows() > 0) {
286                 TreeIter iter = trk_template_chooser.get_selection ()->get_selected ();
287
288                 if (!iter) {
289                         return;
290                 }
291
292                 string d = (*iter)[track_template_columns.description];
293                 trk_template_desc.get_buffer ()->set_text (d);
294
295                 const string n = (*iter)[track_template_columns.name];
296                 const string p = (*iter)[track_template_columns.path];
297
298                 if ( n != _("Manual Configuration") && p.substr (0, 11) == "urn:ardour:") {
299                         /* lua script - meta-template */
300                         const std::map<std::string, std::string> rs (ARDOUR_UI::instance()->route_setup_info (p.substr (11)));
301
302                         trk_template_desc.set_sensitive (true);
303
304                         manual_label.set_sensitive (false);
305                         add_label.set_sensitive (false);
306                         type_label.set_sensitive (false);
307
308                         name_label.set_sensitive (rs.find ("name") != rs.end());
309                         group_label.set_sensitive (rs.find ("group") != rs.end());
310                         strict_io_label.set_sensitive (rs.find ("strict_io") != rs.end());
311                         configuration_label.set_sensitive (rs.find ("channels") != rs.end ());
312                         mode_label.set_sensitive (rs.find ("track_mode") != rs.end ());
313                         instrument_label.set_sensitive (rs.find ("instrument") != rs.end ());
314                         strict_io_label.set_sensitive (rs.find ("strict_io") != rs.end());
315
316                         track_bus_combo.set_sensitive (false);
317                         routes_spinner.set_sensitive (rs.find ("how_many") != rs.end ());
318                         name_template_entry.set_sensitive (rs.find ("name") != rs.end ());
319                         route_group_combo.set_sensitive (rs.find ("group") != rs.end());
320                         channel_combo.set_sensitive (rs.find ("channels") != rs.end ());
321                         mode_combo.set_sensitive (rs.find ("track_mode") != rs.end ());
322                         instrument_combo.set_sensitive (rs.find ("instrument") != rs.end ());
323                         strict_io_combo.set_sensitive (rs.find ("strict_io") != rs.end());
324
325                         std::map<string,string>::const_iterator it;
326
327                         if ((it = rs.find ("name")) != rs.end()) {
328                                 name_template_entry.set_text (it->second);
329                         }
330
331                         if ((it = rs.find ("how_many")) != rs.end()) {
332                                 routes_adjustment.set_value (atoi (it->second.c_str()));
333                         }
334
335                         if ((it = rs.find ("track_mode")) != rs.end()) {
336                                 switch ((ARDOUR::TrackMode) atoi (it->second.c_str())) {
337                                         case ARDOUR::Normal:
338                                                 mode_combo.set_active_text (_("Normal"));
339                                                 break;
340                                         case ARDOUR::Destructive:
341                                                 if (!ARDOUR::Profile->get_mixbus ()) {
342                                                         mode_combo.set_active_text (_("Tape"));
343                                                 }
344                                                 break;
345                                 }
346                         }
347
348                         if ((it = rs.find ("strict_io")) != rs.end()) {
349                                 if (it->second == X_("true")) {
350                                         strict_io_combo.set_active (1);
351                                 } else if (it->second == X_("false")) {
352                                         strict_io_combo.set_active (0);
353                                 }
354                         }
355
356                         if ((it = rs.find ("channels")) != rs.end()) {
357                                 uint32_t channels = atoi (it->second.c_str());
358                                 for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
359                                         if ((*i).channels == channels) {
360                                                 channel_combo.set_active_text ((*i).name);
361                                                 break;
362                                         }
363                                 }
364                         }
365
366                 } else if ( n != _("Manual Configuration")) {
367                         /* user-template */
368                         trk_template_desc.set_sensitive (true);
369
370                         manual_label.set_sensitive (false);
371                         add_label.set_sensitive (false);
372                         type_label.set_sensitive (false);
373                         name_label.set_sensitive (true);
374                         group_label.set_sensitive (false);
375                         strict_io_label.set_sensitive (false);
376                         configuration_label.set_sensitive (false);
377                         mode_label.set_sensitive (false);
378                         instrument_label.set_sensitive (false);
379
380                         routes_spinner.set_sensitive (true);
381                         track_bus_combo.set_sensitive (false);
382                         name_template_entry.set_sensitive (true);
383                         channel_combo.set_sensitive (false);
384                         mode_combo.set_sensitive (false);
385                         instrument_combo.set_sensitive (false);
386                         strict_io_combo.set_sensitive (false);
387                         route_group_combo.set_sensitive (false);
388
389                 } else {
390                         /* all manual mode */
391                         trk_template_desc.set_sensitive (false);
392
393                         manual_label.set_sensitive (true);
394                         add_label.set_sensitive (true);
395                         type_label.set_sensitive (true);
396                         name_label.set_sensitive (true);
397                         group_label.set_sensitive (true);
398                         strict_io_label.set_sensitive (true);
399
400                         track_bus_combo.set_sensitive (true);
401                         routes_spinner.set_sensitive (true);
402                         name_template_entry.set_sensitive (true);
403                         track_type_chosen ();
404                 }
405         }
406 }
407
408
409 void
410 AddRouteDialog::name_template_entry_insertion (Glib::ustring const &,int*)
411 {
412         name_edited_by_user = true;
413 }
414
415 void
416 AddRouteDialog::name_template_entry_deletion (int, int)
417 {
418         name_edited_by_user = true;
419 }
420
421 void
422 AddRouteDialog::channel_combo_changed ()
423 {
424         refill_track_modes ();
425 }
426
427 std::string
428 AddRouteDialog::get_template_path ()
429 {
430         string p;
431         
432         if (trk_template_chooser.get_selection()->count_selected_rows() > 0) {
433                 TreeIter iter = trk_template_chooser.get_selection()->get_selected();
434
435                 if (iter) {
436                         string n = (*iter)[track_template_columns.name];
437                         if ( n != _("Manual Configuration") ) {
438                                 p = (*iter)[track_template_columns.path];
439                         }
440                 }
441         }
442
443         return p;
444 }
445
446
447 AddRouteDialog::TypeWanted
448 AddRouteDialog::type_wanted() const
449 {
450         std::string str = track_bus_combo.get_active_text();
451         if (str == _("Audio Busses")) {
452                 return AudioBus;
453         } else if (str == _("MIDI Busses")){
454                 return MidiBus;
455         } else if (str == _("MIDI Tracks")){
456                 return MidiTrack;
457         } else if (str == _("Audio+MIDI Tracks")) {
458                 return MixedTrack;
459         } else if (str == _("Audio Tracks")) {
460                 return AudioTrack;
461         } else {
462                 return VCAMaster;
463         }
464 }
465
466 void
467 AddRouteDialog::maybe_update_name_template_entry ()
468 {
469         if (name_edited_by_user) {
470                 return;
471         }
472
473         switch (type_wanted()) {
474         case AudioTrack:
475                 name_template_entry.set_text (_("Audio"));
476                 break;
477         case MidiTrack:
478                 name_template_entry.set_text (_("MIDI"));
479                 break;
480         case MixedTrack:
481                 name_template_entry.set_text (_("Audio+MIDI"));
482                 break;
483         case AudioBus:
484         case MidiBus:
485                 name_template_entry.set_text (_("Bus"));
486                 break;
487         case VCAMaster:
488                 name_template_entry.set_text (VCA::default_name_template());
489                 break;
490         }
491         name_edited_by_user = false;
492 }
493
494 void
495 AddRouteDialog::track_type_chosen ()
496 {
497         switch (type_wanted()) {
498         case AudioTrack:
499                 mode_combo.set_sensitive (true);
500                 channel_combo.set_sensitive (true);
501                 instrument_combo.set_sensitive (false);
502                 configuration_label.set_sensitive (true);
503                 mode_label.set_sensitive (true);
504                 instrument_label.set_sensitive (false);
505                 route_group_combo.set_sensitive (true);
506                 strict_io_combo.set_sensitive (true);
507                 insert_at_combo.set_sensitive (true);
508                 break;
509         case MidiTrack:
510                 channel_combo.set_sensitive (false);
511                 mode_combo.set_sensitive (false);
512                 instrument_combo.set_sensitive (true);
513                 configuration_label.set_sensitive (false);
514                 mode_label.set_sensitive (false);
515                 instrument_label.set_sensitive (true);
516                 route_group_combo.set_sensitive (true);
517                 strict_io_combo.set_sensitive (true);
518                 insert_at_combo.set_sensitive (true);
519                 break;
520         case MixedTrack:
521                 {
522                         MessageDialog msg (_("Audio+MIDI tracks are intended for use <b>ONLY</b> with plugins that use both audio and MIDI input data\n\n"
523                                              "If you do not plan to use such a plugin, then use a normal audio or MIDI track instead."),
524                                            true, MESSAGE_INFO, BUTTONS_OK, true);
525                         msg.set_position (WIN_POS_MOUSE);
526                         msg.run ();
527                 }
528                 channel_combo.set_sensitive (true);
529                 mode_combo.set_sensitive (true);
530                 instrument_combo.set_sensitive (true);
531                 configuration_label.set_sensitive (true);
532                 mode_label.set_sensitive (true);
533                 instrument_label.set_sensitive (true);
534                 route_group_combo.set_sensitive (true);
535                 strict_io_combo.set_sensitive (true);
536                 insert_at_combo.set_sensitive (true);
537                 break;
538         case AudioBus:
539                 mode_combo.set_sensitive (false);
540                 channel_combo.set_sensitive (true);
541                 instrument_combo.set_sensitive (false);
542                 configuration_label.set_sensitive (true);
543                 mode_label.set_sensitive (true);
544                 instrument_label.set_sensitive (false);
545                 route_group_combo.set_sensitive (true);
546                 strict_io_combo.set_sensitive (true);
547                 insert_at_combo.set_sensitive (true);
548                 break;
549         case VCAMaster:
550                 mode_combo.set_sensitive (false);
551                 channel_combo.set_sensitive (false);
552                 instrument_combo.set_sensitive (false);
553                 configuration_label.set_sensitive (false);
554                 mode_label.set_sensitive (false);
555                 instrument_label.set_sensitive (false);
556                 route_group_combo.set_sensitive (false);
557                 strict_io_combo.set_sensitive (false);
558                 insert_at_combo.set_sensitive (false);
559                 break;
560         case MidiBus:
561                 mode_combo.set_sensitive (false);
562                 channel_combo.set_sensitive (false);
563                 instrument_combo.set_sensitive (true);
564                 configuration_label.set_sensitive (false);
565                 mode_label.set_sensitive (true);
566                 instrument_label.set_sensitive (true);
567                 strict_io_combo.set_sensitive (true);
568                 insert_at_combo.set_sensitive (true);
569                 break;
570         }
571
572         maybe_update_name_template_entry ();
573
574 }
575
576 string
577 AddRouteDialog::name_template () const
578 {
579         return name_template_entry.get_text ();
580 }
581
582 bool
583 AddRouteDialog::name_template_is_default () const
584 {
585         string n = name_template();
586
587         if (n == _("Audio") ||
588             n == _("MIDI") ||
589             n == _("Audio+MIDI") ||
590             n == _("Bus") ||
591             n == VCA::default_name_template()) {
592                 return true;
593         }
594
595         return false;
596 }
597
598 int
599 AddRouteDialog::count ()
600 {
601         return (int) floor (routes_adjustment.get_value ());
602 }
603
604 void
605 AddRouteDialog::refill_track_modes ()
606 {
607         vector<string> s;
608
609         s.push_back (_("Normal"));
610         if (!ARDOUR::Profile->get_mixbus ()) {
611                 s.push_back (_("Tape"));
612         }
613
614         set_popdown_strings (mode_combo, s);
615         mode_combo.set_active_text (s.front());
616 }
617
618 ARDOUR::TrackMode
619 AddRouteDialog::mode ()
620 {
621         std::string str = mode_combo.get_active_text();
622         if (str == _("Normal")) {
623                 return ARDOUR::Normal;
624         } else if (str == _("Non Layered")){
625                 return ARDOUR::NonLayered;
626         } else if (str == _("Tape")) {
627                 return ARDOUR::Destructive;
628         } else {
629                 fatal << string_compose (X_("programming error: unknown track mode in add route dialog combo = %1"), str)
630                       << endmsg;
631                 abort(); /*NOTREACHED*/
632         }
633         /* keep gcc happy */
634         return ARDOUR::Normal;
635 }
636
637 uint32_t
638 AddRouteDialog::channel_count ()
639 {
640         string str = channel_combo.get_active_text();
641         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
642                 if (str == (*i).name) {
643                         return (*i).channels;
644                 }
645         }
646         return 0;
647 }
648
649 ChanCount
650 AddRouteDialog::channels ()
651 {
652         ChanCount ret;
653         switch (type_wanted()) {
654         case AudioTrack:
655         case AudioBus:
656                 ret.set (DataType::MIDI, channel_count ());
657                 ret.set (DataType::MIDI, 0);
658                 break;
659
660         case MidiBus:
661         case MidiTrack:
662                 ret.set (DataType::AUDIO, 0);
663                 ret.set (DataType::MIDI, 1);
664                 break;
665
666         case MixedTrack:
667                 ret.set (DataType::MIDI, channel_count ());
668                 ret.set (DataType::MIDI, 1);
669                 break;
670         default:
671                 break;
672         }
673
674         return ret;
675 }
676
677 void
678 AddRouteDialog::on_show ()
679 {
680         routes_spinner.grab_focus ();
681         name_edited_by_user = false;
682
683         refill_channel_setups ();
684         refill_route_groups ();
685
686         Dialog::on_show ();
687 }
688
689 void
690 AddRouteDialog::refill_channel_setups ()
691 {
692         ChannelSetup chn;
693
694         string channel_current_choice = channel_combo.get_active_text();
695
696         channel_combo_strings.clear ();
697         channel_setups.clear ();
698
699         chn.name = _("Mono");
700         chn.channels = 1;
701         channel_setups.push_back (chn);
702
703         chn.name = _("Stereo");
704         chn.channels = 2;
705         channel_setups.push_back (chn);
706
707         if (!ARDOUR::Profile->get_mixbus()) {
708
709                 chn.name = "separator";
710                 channel_setups.push_back (chn);
711
712                 chn.name = _("3 Channel");
713                 chn.channels = 3;
714                 channel_setups.push_back (chn);
715
716                 chn.name = _("4 Channel");
717                 chn.channels = 4;
718                 channel_setups.push_back (chn);
719
720                 chn.name = _("5 Channel");
721                 chn.channels = 5;
722                 channel_setups.push_back (chn);
723
724                 chn.name = _("6 Channel");
725                 chn.channels = 6;
726                 channel_setups.push_back (chn);
727
728                 chn.name = _("8 Channel");
729                 chn.channels = 8;
730                 channel_setups.push_back (chn);
731
732                 chn.name = _("12 Channel");
733                 chn.channels = 12;
734                 channel_setups.push_back (chn);
735
736                 chn.name = _("Custom");
737                 chn.channels = 0;
738                 channel_setups.push_back (chn);
739         }
740
741         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
742                 channel_combo_strings.push_back ((*i).name);
743         }
744
745         trk_template_model->clear();
746
747         /* Add any Lua scripts (factory templates) found in the scripts folder */
748         LuaScriptList& ms (LuaScripting::instance ().scripts (LuaScriptInfo::EditorAction));
749         for (LuaScriptList::const_iterator s = ms.begin(); s != ms.end(); ++s) {
750                 if (!((*s)->subtype & LuaScriptInfo::RouteSetup)) {
751                         continue;
752                 }
753                 TreeModel::Row row;
754                 if ( (*s)->name == "Add tracks") {  //somewhat-special, most-used template
755                         row = *(trk_template_model->prepend ());
756                 } else {
757                         row = *(trk_template_model->append ());
758                 }
759                 row[track_template_columns.name] = (*s)->name;
760                 row[track_template_columns.path] = "urn:ardour:" + (*s)->path;
761                 row[track_template_columns.description] = (*s)->description;
762                 row[track_template_columns.created_with] = _("{Factory Template}");
763
764                 if ( (*s)->name == "Add tracks") {  //somewhat-special, most-used template
765                         trk_template_chooser.get_selection()->select(row);
766                 }
767         }
768
769         std::vector<ARDOUR::TemplateInfo> route_templates;
770         ARDOUR::find_route_templates (route_templates);
771
772         for (vector<TemplateInfo>::iterator x = route_templates.begin(); x != route_templates.end(); ++x) {
773                 TreeModel::Row row = *(trk_template_model->append ());
774
775                 row[track_template_columns.name] = x->name;
776                 row[track_template_columns.path] = x->path;
777                 row[track_template_columns.description] = x->description;
778                 row[track_template_columns.created_with] = x->created_with;
779         }
780
781         /* Add a special item for "Manual Configuration" */
782         TreeModel::Row row = *(trk_template_model->prepend ());
783         row[track_template_columns.name] = _("Manual Configuration");
784         row[track_template_columns.path] = "urn:ardour:manual";
785         row[track_template_columns.description] = _("Use the controls, below, to add tracks.");
786         row[track_template_columns.created_with] = "";
787
788         set_popdown_strings (channel_combo, channel_combo_strings);
789
790         if (!channel_current_choice.empty()) {
791                 channel_combo.set_active_text (channel_current_choice);
792         } else {
793                 channel_combo.set_active_text (channel_combo_strings.front());
794         }
795 }
796
797 void
798 AddRouteDialog::add_route_group (RouteGroup* g)
799 {
800         route_group_combo.insert_text (3, g->name ());
801 }
802
803 RouteGroup*
804 AddRouteDialog::route_group ()
805 {
806         if (!_session || route_group_combo.get_active_row_number () == 2) {
807                 return 0;
808         }
809
810         return _session->route_group_by_name (route_group_combo.get_active_text());
811 }
812
813 bool
814 AddRouteDialog::use_strict_io() {
815         return strict_io_combo.get_active_row_number () == 1;
816 }
817
818 void
819 AddRouteDialog::refill_route_groups ()
820 {
821         route_group_combo.clear ();
822         route_group_combo.append_text (_("New Group..."));
823
824         route_group_combo.append_text ("separator");
825
826         route_group_combo.append_text (_("No Group"));
827
828         if (_session) {
829                 _session->foreach_route_group (sigc::mem_fun (*this, &AddRouteDialog::add_route_group));
830         }
831
832         route_group_combo.set_active (2);
833 }
834
835 void
836 AddRouteDialog::group_changed ()
837 {
838         if (_session && route_group_combo.get_active_text () == _("New Group...")) {
839                 RouteGroup* g = new RouteGroup (*_session, "");
840                 RouteGroupDialog* d = new RouteGroupDialog (g, true);
841
842                 d->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &AddRouteDialog::new_group_dialog_finished), d));
843                 d->present();
844         }
845 }
846
847 void
848 AddRouteDialog::new_group_dialog_finished (int r, RouteGroupDialog* d)
849 {
850         if (r == RESPONSE_OK) {
851
852                 if (!d->name_check()) {
853                         return;
854                 }
855
856                 if (_session) {
857                         _session->add_route_group (d->group());
858                 }
859
860                 add_route_group (d->group());
861                 route_group_combo.set_active (3);
862         } else {
863                 delete d->group ();
864                 route_group_combo.set_active (2);
865         }
866
867         delete_when_idle (d);
868 }
869
870 RouteDialogs::InsertAt
871 AddRouteDialog::insert_at ()
872 {
873         using namespace RouteDialogs;
874
875         std::string str = insert_at_combo.get_active_text();
876
877         if (str == _("First")) {
878                 return First;
879         } else if (str == _("After Selection")) {
880                 return AfterSelection;
881         } else if (str == _("Before Selection")){
882                 return BeforeSelection;
883         }
884         return Last;
885 }
886
887 bool
888 AddRouteDialog::channel_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
889 {
890         channel_combo.set_active (i);
891
892         return channel_combo.get_active_text () == "separator";
893 }
894
895 bool
896 AddRouteDialog::route_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
897 {
898         route_group_combo.set_active (i);
899
900         return route_group_combo.get_active_text () == "separator";
901 }
902
903 PluginInfoPtr
904 AddRouteDialog::requested_instrument ()
905 {
906         return instrument_combo.selected_instrument();
907 }