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