b743fbb15b72317608228c4cdd53615b811296f2
[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::NonLayered:
341                                                 mode_combo.set_active_text (_("Nn Layered"));
342                                                 break;
343                                         case ARDOUR::Destructive:
344                                                 mode_combo.set_active_text (_("Tape"));
345                                                 break;
346                                 }
347                         }
348
349                         if ((it = rs.find ("strict_io")) != rs.end()) {
350                                 if (it->second == X_("true")) {
351                                         strict_io_combo.set_active (1);
352                                 } else if (it->second == X_("false")) {
353                                         strict_io_combo.set_active (0);
354                                 }
355                         }
356
357                         if ((it = rs.find ("channels")) != rs.end()) {
358                                 uint32_t channels = atoi (it->second.c_str());
359                                 for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
360                                         if ((*i).channels == channels) {
361                                                 channel_combo.set_active_text ((*i).name);
362                                                 break;
363                                         }
364                                 }
365                         }
366
367                 } else if ( n != _("Manual Configuration")) {
368                         /* user-template */
369                         trk_template_desc.set_sensitive (true);
370
371                         manual_label.set_sensitive (false);
372                         add_label.set_sensitive (false);
373                         type_label.set_sensitive (false);
374                         name_label.set_sensitive (true);
375                         group_label.set_sensitive (false);
376                         strict_io_label.set_sensitive (false);
377                         configuration_label.set_sensitive (false);
378                         mode_label.set_sensitive (false);
379                         instrument_label.set_sensitive (false);
380
381                         routes_spinner.set_sensitive (true);
382                         track_bus_combo.set_sensitive (false);
383                         name_template_entry.set_sensitive (true);
384                         channel_combo.set_sensitive (false);
385                         mode_combo.set_sensitive (false);
386                         instrument_combo.set_sensitive (false);
387                         strict_io_combo.set_sensitive (false);
388                         route_group_combo.set_sensitive (false);
389
390                 } else {
391                         /* all manual mode */
392                         trk_template_desc.set_sensitive (false);
393
394                         manual_label.set_sensitive (true);
395                         add_label.set_sensitive (true);
396                         type_label.set_sensitive (true);
397                         name_label.set_sensitive (true);
398                         group_label.set_sensitive (true);
399                         strict_io_label.set_sensitive (true);
400
401                         track_bus_combo.set_sensitive (true);
402                         routes_spinner.set_sensitive (true);
403                         name_template_entry.set_sensitive (true);
404                         track_type_chosen ();
405                 }
406         }
407 }
408
409
410 void
411 AddRouteDialog::name_template_entry_insertion (Glib::ustring const &,int*)
412 {
413         name_edited_by_user = true;
414 }
415
416 void
417 AddRouteDialog::name_template_entry_deletion (int, int)
418 {
419         name_edited_by_user = true;
420 }
421
422 void
423 AddRouteDialog::channel_combo_changed ()
424 {
425         refill_track_modes ();
426 }
427
428 std::string
429 AddRouteDialog::get_template_path ()
430 {
431         string p;
432         
433         if (trk_template_chooser.get_selection()->count_selected_rows() > 0) {
434                 TreeIter iter = trk_template_chooser.get_selection()->get_selected();
435
436                 if (iter) {
437                         string n = (*iter)[track_template_columns.name];
438                         if ( n != _("Manual Configuration") ) {
439                                 p = (*iter)[track_template_columns.path];
440                         }
441                 }
442         }
443
444         return p;
445 }
446
447
448 AddRouteDialog::TypeWanted
449 AddRouteDialog::type_wanted() const
450 {
451         std::string str = track_bus_combo.get_active_text();
452         if (str == _("Audio Busses")) {
453                 return AudioBus;
454         } else if (str == _("MIDI Busses")){
455                 return MidiBus;
456         } else if (str == _("MIDI Tracks")){
457                 return MidiTrack;
458         } else if (str == _("Audio+MIDI Tracks")) {
459                 return MixedTrack;
460         } else if (str == _("Audio Tracks")) {
461                 return AudioTrack;
462         } else {
463                 return VCAMaster;
464         }
465 }
466
467 void
468 AddRouteDialog::maybe_update_name_template_entry ()
469 {
470         if (name_edited_by_user) {
471                 return;
472         }
473
474         switch (type_wanted()) {
475         case AudioTrack:
476                 name_template_entry.set_text (_("Audio"));
477                 break;
478         case MidiTrack:
479                 name_template_entry.set_text (_("MIDI"));
480                 break;
481         case MixedTrack:
482                 name_template_entry.set_text (_("Audio+MIDI"));
483                 break;
484         case AudioBus:
485         case MidiBus:
486                 name_template_entry.set_text (_("Bus"));
487                 break;
488         case VCAMaster:
489                 name_template_entry.set_text (VCA::default_name_template());
490                 break;
491         }
492         name_edited_by_user = false;
493 }
494
495 void
496 AddRouteDialog::track_type_chosen ()
497 {
498         switch (type_wanted()) {
499         case AudioTrack:
500                 mode_combo.set_sensitive (true);
501                 channel_combo.set_sensitive (true);
502                 instrument_combo.set_sensitive (false);
503                 configuration_label.set_sensitive (true);
504                 mode_label.set_sensitive (true);
505                 instrument_label.set_sensitive (false);
506                 route_group_combo.set_sensitive (true);
507                 strict_io_combo.set_sensitive (true);
508                 insert_at_combo.set_sensitive (true);
509                 break;
510         case MidiTrack:
511                 channel_combo.set_sensitive (false);
512                 mode_combo.set_sensitive (false);
513                 instrument_combo.set_sensitive (true);
514                 configuration_label.set_sensitive (false);
515                 mode_label.set_sensitive (false);
516                 instrument_label.set_sensitive (true);
517                 route_group_combo.set_sensitive (true);
518                 strict_io_combo.set_sensitive (true);
519                 insert_at_combo.set_sensitive (true);
520                 break;
521         case MixedTrack:
522                 {
523                         MessageDialog msg (_("Audio+MIDI tracks are intended for use <b>ONLY</b> with plugins that use both audio and MIDI input data\n\n"
524                                              "If you do not plan to use such a plugin, then use a normal audio or MIDI track instead."),
525                                            true, MESSAGE_INFO, BUTTONS_OK, true);
526                         msg.set_position (WIN_POS_MOUSE);
527                         msg.run ();
528                 }
529                 channel_combo.set_sensitive (true);
530                 mode_combo.set_sensitive (true);
531                 instrument_combo.set_sensitive (true);
532                 configuration_label.set_sensitive (true);
533                 mode_label.set_sensitive (true);
534                 instrument_label.set_sensitive (true);
535                 route_group_combo.set_sensitive (true);
536                 strict_io_combo.set_sensitive (true);
537                 insert_at_combo.set_sensitive (true);
538                 break;
539         case AudioBus:
540                 mode_combo.set_sensitive (false);
541                 channel_combo.set_sensitive (true);
542                 instrument_combo.set_sensitive (false);
543                 configuration_label.set_sensitive (true);
544                 mode_label.set_sensitive (true);
545                 instrument_label.set_sensitive (false);
546                 route_group_combo.set_sensitive (true);
547                 strict_io_combo.set_sensitive (true);
548                 insert_at_combo.set_sensitive (true);
549                 break;
550         case VCAMaster:
551                 mode_combo.set_sensitive (false);
552                 channel_combo.set_sensitive (false);
553                 instrument_combo.set_sensitive (false);
554                 configuration_label.set_sensitive (false);
555                 mode_label.set_sensitive (false);
556                 instrument_label.set_sensitive (false);
557                 route_group_combo.set_sensitive (false);
558                 strict_io_combo.set_sensitive (false);
559                 insert_at_combo.set_sensitive (false);
560                 break;
561         case MidiBus:
562                 mode_combo.set_sensitive (false);
563                 channel_combo.set_sensitive (false);
564                 instrument_combo.set_sensitive (true);
565                 configuration_label.set_sensitive (false);
566                 mode_label.set_sensitive (true);
567                 instrument_label.set_sensitive (true);
568                 strict_io_combo.set_sensitive (true);
569                 insert_at_combo.set_sensitive (true);
570                 break;
571         }
572
573         maybe_update_name_template_entry ();
574
575 }
576
577 string
578 AddRouteDialog::name_template () const
579 {
580         return name_template_entry.get_text ();
581 }
582
583 bool
584 AddRouteDialog::name_template_is_default () const
585 {
586         string n = name_template();
587
588         if (n == _("Audio") ||
589             n == _("MIDI") ||
590             n == _("Audio+MIDI") ||
591             n == _("Bus") ||
592             n == VCA::default_name_template()) {
593                 return true;
594         }
595
596         return false;
597 }
598
599 int
600 AddRouteDialog::count ()
601 {
602         return (int) floor (routes_adjustment.get_value ());
603 }
604
605 void
606 AddRouteDialog::refill_track_modes ()
607 {
608         vector<string> s;
609
610         s.push_back (_("Normal"));
611 #ifdef XXX_OLD_DESTRUCTIVE_API_XXX
612         s.push_back (_("Non Layered"));
613 #endif
614         if (!ARDOUR::Profile->get_mixbus ()) {
615                 s.push_back (_("Tape"));
616         }
617
618         set_popdown_strings (mode_combo, s);
619         mode_combo.set_active_text (s.front());
620 }
621
622 ARDOUR::TrackMode
623 AddRouteDialog::mode ()
624 {
625         std::string str = mode_combo.get_active_text();
626         if (str == _("Normal")) {
627                 return ARDOUR::Normal;
628         } else if (str == _("Non Layered")){
629                 return ARDOUR::NonLayered;
630         } else if (str == _("Tape")) {
631                 return ARDOUR::Destructive;
632         } else {
633                 fatal << string_compose (X_("programming error: unknown track mode in add route dialog combo = %1"), str)
634                       << endmsg;
635                 abort(); /*NOTREACHED*/
636         }
637         /* keep gcc happy */
638         return ARDOUR::Normal;
639 }
640
641 uint32_t
642 AddRouteDialog::channel_count ()
643 {
644         string str = channel_combo.get_active_text();
645         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
646                 if (str == (*i).name) {
647                         return (*i).channels;
648                 }
649         }
650         return 0;
651 }
652
653 ChanCount
654 AddRouteDialog::channels ()
655 {
656         ChanCount ret;
657         switch (type_wanted()) {
658         case AudioTrack:
659         case AudioBus:
660                 ret.set (DataType::MIDI, channel_count ());
661                 ret.set (DataType::MIDI, 0);
662                 break;
663
664         case MidiBus:
665         case MidiTrack:
666                 ret.set (DataType::AUDIO, 0);
667                 ret.set (DataType::MIDI, 1);
668                 break;
669
670         case MixedTrack:
671                 ret.set (DataType::MIDI, channel_count ());
672                 ret.set (DataType::MIDI, 1);
673                 break;
674         default:
675                 break;
676         }
677
678         return ret;
679 }
680
681 void
682 AddRouteDialog::on_show ()
683 {
684         routes_spinner.grab_focus ();
685         name_edited_by_user = false;
686
687         refill_channel_setups ();
688         refill_route_groups ();
689
690         Dialog::on_show ();
691 }
692
693 void
694 AddRouteDialog::refill_channel_setups ()
695 {
696         ChannelSetup chn;
697
698         string channel_current_choice = channel_combo.get_active_text();
699
700         channel_combo_strings.clear ();
701         channel_setups.clear ();
702
703         chn.name = _("Mono");
704         chn.channels = 1;
705         channel_setups.push_back (chn);
706
707         chn.name = _("Stereo");
708         chn.channels = 2;
709         channel_setups.push_back (chn);
710
711         if (!ARDOUR::Profile->get_mixbus()) {
712
713                 chn.name = "separator";
714                 channel_setups.push_back (chn);
715
716                 chn.name = _("3 Channel");
717                 chn.channels = 3;
718                 channel_setups.push_back (chn);
719
720                 chn.name = _("4 Channel");
721                 chn.channels = 4;
722                 channel_setups.push_back (chn);
723
724                 chn.name = _("5 Channel");
725                 chn.channels = 5;
726                 channel_setups.push_back (chn);
727
728                 chn.name = _("6 Channel");
729                 chn.channels = 6;
730                 channel_setups.push_back (chn);
731
732                 chn.name = _("8 Channel");
733                 chn.channels = 8;
734                 channel_setups.push_back (chn);
735
736                 chn.name = _("12 Channel");
737                 chn.channels = 12;
738                 channel_setups.push_back (chn);
739
740                 chn.name = _("Custom");
741                 chn.channels = 0;
742                 channel_setups.push_back (chn);
743         }
744
745         for (ChannelSetups::iterator i = channel_setups.begin(); i != channel_setups.end(); ++i) {
746                 channel_combo_strings.push_back ((*i).name);
747         }
748
749         trk_template_model->clear();
750
751         /* Add any Lua scripts (factory templates) found in the scripts folder */
752         LuaScriptList& ms (LuaScripting::instance ().scripts (LuaScriptInfo::EditorAction));
753         for (LuaScriptList::const_iterator s = ms.begin(); s != ms.end(); ++s) {
754                 if (!((*s)->subtype & LuaScriptInfo::RouteSetup)) {
755                         continue;
756                 }
757                 TreeModel::Row row;
758                 if ( (*s)->name == "Add tracks") {  //somewhat-special, most-used template
759                         row = *(trk_template_model->prepend ());
760                 } else {
761                         row = *(trk_template_model->append ());
762                 }
763                 row[track_template_columns.name] = (*s)->name;
764                 row[track_template_columns.path] = "urn:ardour:" + (*s)->path;
765                 row[track_template_columns.description] = (*s)->description;
766                 row[track_template_columns.created_with] = _("{Factory Template}");
767
768                 if ( (*s)->name == "Add tracks") {  //somewhat-special, most-used template
769                         trk_template_chooser.get_selection()->select(row);
770                 }
771         }
772
773         std::vector<ARDOUR::TemplateInfo> route_templates;
774         ARDOUR::find_route_templates (route_templates);
775
776         for (vector<TemplateInfo>::iterator x = route_templates.begin(); x != route_templates.end(); ++x) {
777                 TreeModel::Row row = *(trk_template_model->append ());
778
779                 row[track_template_columns.name] = x->name;
780                 row[track_template_columns.path] = x->path;
781                 row[track_template_columns.description] = x->description;
782                 row[track_template_columns.created_with] = x->created_with;
783         }
784
785         /* Add a special item for "Manual Configuration" */
786         TreeModel::Row row = *(trk_template_model->prepend ());
787         row[track_template_columns.name] = _("Manual Configuration");
788         row[track_template_columns.path] = "urn:ardour:manual";
789         row[track_template_columns.description] = _("Use the controls, below, to add tracks.");
790         row[track_template_columns.created_with] = "";
791
792         set_popdown_strings (channel_combo, channel_combo_strings);
793
794         if (!channel_current_choice.empty()) {
795                 channel_combo.set_active_text (channel_current_choice);
796         } else {
797                 channel_combo.set_active_text (channel_combo_strings.front());
798         }
799 }
800
801 void
802 AddRouteDialog::add_route_group (RouteGroup* g)
803 {
804         route_group_combo.insert_text (3, g->name ());
805 }
806
807 RouteGroup*
808 AddRouteDialog::route_group ()
809 {
810         if (!_session || route_group_combo.get_active_row_number () == 2) {
811                 return 0;
812         }
813
814         return _session->route_group_by_name (route_group_combo.get_active_text());
815 }
816
817 bool
818 AddRouteDialog::use_strict_io() {
819         return strict_io_combo.get_active_row_number () == 1;
820 }
821
822 void
823 AddRouteDialog::refill_route_groups ()
824 {
825         route_group_combo.clear ();
826         route_group_combo.append_text (_("New Group..."));
827
828         route_group_combo.append_text ("separator");
829
830         route_group_combo.append_text (_("No Group"));
831
832         if (_session) {
833                 _session->foreach_route_group (sigc::mem_fun (*this, &AddRouteDialog::add_route_group));
834         }
835
836         route_group_combo.set_active (2);
837 }
838
839 void
840 AddRouteDialog::group_changed ()
841 {
842         if (_session && route_group_combo.get_active_text () == _("New Group...")) {
843                 RouteGroup* g = new RouteGroup (*_session, "");
844                 RouteGroupDialog* d = new RouteGroupDialog (g, true);
845
846                 d->signal_response().connect (sigc::bind (sigc::mem_fun (*this, &AddRouteDialog::new_group_dialog_finished), d));
847                 d->present();
848         }
849 }
850
851 void
852 AddRouteDialog::new_group_dialog_finished (int r, RouteGroupDialog* d)
853 {
854         if (r == RESPONSE_OK) {
855
856                 if (!d->name_check()) {
857                         return;
858                 }
859
860                 if (_session) {
861                         _session->add_route_group (d->group());
862                 }
863
864                 add_route_group (d->group());
865                 route_group_combo.set_active (3);
866         } else {
867                 delete d->group ();
868                 route_group_combo.set_active (2);
869         }
870
871         delete_when_idle (d);
872 }
873
874 RouteDialogs::InsertAt
875 AddRouteDialog::insert_at ()
876 {
877         using namespace RouteDialogs;
878
879         std::string str = insert_at_combo.get_active_text();
880
881         if (str == _("First")) {
882                 return First;
883         } else if (str == _("After Selection")) {
884                 return AfterSelection;
885         } else if (str == _("Before Selection")){
886                 return BeforeSelection;
887         }
888         return Last;
889 }
890
891 bool
892 AddRouteDialog::channel_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
893 {
894         channel_combo.set_active (i);
895
896         return channel_combo.get_active_text () == "separator";
897 }
898
899 bool
900 AddRouteDialog::route_separator (const Glib::RefPtr<Gtk::TreeModel> &, const Gtk::TreeModel::iterator &i)
901 {
902         route_group_combo.set_active (i);
903
904         return route_group_combo.get_active_text () == "separator";
905 }
906
907 PluginInfoPtr
908 AddRouteDialog::requested_instrument ()
909 {
910         return instrument_combo.selected_instrument();
911 }