Revert "Remove the Solo+Iso buttons in the Master bus."
[ardour.git] / gtk2_ardour / session_dialog.cc
1 /*
2     Copyright (C) 2013 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 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
23
24 #include <algorithm>
25
26 #include <glib.h>
27 #include "pbd/gstdio_compat.h"
28
29 #include <glibmm.h>
30 #include <glibmm/datetime.h>
31
32 #include <gtkmm/filechooser.h>
33
34 #include "pbd/basename.h"
35 #include "pbd/failed_constructor.h"
36 #include "pbd/file_utils.h"
37 #include "pbd/replace_all.h"
38 #include "pbd/whitespace.h"
39 #include "pbd/stacktrace.h"
40 #include "pbd/stl_delete.h"
41 #include "pbd/openuri.h"
42
43 #include "gtkmm2ext/utils.h"
44 #include "gtkmm2ext/keyboard.h"
45
46 #include "ardour/audioengine.h"
47 #include "ardour/filesystem_paths.h"
48 #include "ardour/recent_sessions.h"
49 #include "ardour/session.h"
50 #include "ardour/session_state_utils.h"
51 #include "ardour/template_utils.h"
52 #include "ardour/filename_extensions.h"
53
54 #include "ardour_ui.h"
55 #include "session_dialog.h"
56 #include "opts.h"
57 #include "engine_dialog.h"
58 #include "pbd/i18n.h"
59 #include "tooltips.h"
60 #include "ui_config.h"
61 #include "utils.h"
62
63 using namespace std;
64 using namespace Gtk;
65 using namespace Gdk;
66 using namespace Glib;
67 using namespace PBD;
68 using namespace ARDOUR;
69 using namespace ARDOUR_UI_UTILS;
70
71 SessionDialog::SessionDialog (bool require_new, const std::string& session_name, const std::string& session_path, const std::string& template_name, bool cancel_not_quit)
72         : ArdourDialog (_("Session Setup"), true, true)
73         , new_only (require_new)
74         , _provided_session_name (session_name)
75         , _provided_session_path (session_path)
76         , new_folder_chooser (FILE_CHOOSER_ACTION_SELECT_FOLDER)
77         , more_new_session_options_button (_("Advanced options ..."))
78         , _output_limit_count_adj (1, 0, 100, 1, 10, 0)
79         , _input_limit_count_adj (1, 0, 100, 1, 10, 0)
80         , _master_bus_channel_count_adj (2, 0, 100, 1, 10, 0)
81         , _existing_session_chooser_used (false)
82 {
83         set_position (WIN_POS_CENTER);
84         get_vbox()->set_spacing (6);
85
86         cancel_button = add_button ((cancel_not_quit ? Stock::CANCEL : Stock::QUIT), RESPONSE_CANCEL);
87         back_button = add_button (Stock::GO_BACK, RESPONSE_NO);
88         open_button = add_button (Stock::OPEN, RESPONSE_ACCEPT);
89
90         back_button->signal_button_press_event().connect (sigc::mem_fun (*this, &SessionDialog::back_button_pressed), false);
91         open_button->signal_button_press_event().connect (sigc::mem_fun (*this, &SessionDialog::open_button_pressed), false);
92
93         open_button->set_sensitive (false);
94         back_button->set_sensitive (false);
95
96         /* this is where announcements will be displayed, but it may be empty
97          * and invisible most of the time.
98          */
99
100         info_frame.set_shadow_type(SHADOW_ETCHED_OUT);
101         info_frame.set_no_show_all (true);
102         info_frame.set_border_width (12);
103         get_vbox()->pack_start (info_frame, false, false);
104
105         setup_new_session_page ();
106
107         if (!new_only) {
108                 setup_initial_choice_box ();
109                 get_vbox()->pack_start (ic_vbox, true, true);
110         } else {
111                 get_vbox()->pack_start (session_new_vbox, true, true);
112         }
113
114         if (!template_name.empty()) {
115                 use_template_button.set_active (false);
116                 load_template_override = template_name;
117         }
118
119         get_vbox()->show_all ();
120
121         /* fill data models and show/hide accordingly */
122
123         populate_session_templates ();
124
125         if (!template_model->children().empty()) {
126                 use_template_button.show();
127                 template_chooser.show ();
128         } else {
129                 use_template_button.hide();
130                 template_chooser.hide ();
131         }
132
133         if (recent_session_model) {
134                 int cnt = redisplay_recent_sessions ();
135                 if (cnt > 0) {
136                         recent_scroller.show();
137                         recent_label.show ();
138
139                         if (cnt > 4) {
140                                 recent_scroller.set_size_request (-1, 300);
141                         } else {
142                                 recent_scroller.set_size_request (-1, 80);
143                         }
144                 } else {
145                         recent_scroller.hide();
146                         recent_label.hide ();
147                 }
148         }
149
150         /* possibly get out of here immediately if everything is ready to go.
151            We still need to set up the whole dialog because of the way
152            ARDOUR_UI::get_session_parameters() might skip it on a first
153            pass then require it for a second pass (e.g. when there
154            is an error with session loading and we have to ask the user
155            what to do next).
156          */
157
158         if (!session_name.empty() && !require_new) {
159                 response (RESPONSE_OK);
160                 return;
161         }
162 }
163
164 SessionDialog::SessionDialog ()
165         : ArdourDialog (_("Recent Sessions"), true, true)
166         , new_only (false)
167         , _provided_session_name ("")
168         , _provided_session_path ("")
169         // the following are unused , but have no default ctor
170         , _output_limit_count_adj (1, 0, 100, 1, 10, 0)
171         , _input_limit_count_adj (1, 0, 100, 1, 10, 0)
172         , _master_bus_channel_count_adj (2, 0, 100, 1, 10, 0)
173         , _existing_session_chooser_used (false) // caller must check should_be_new
174 {
175         get_vbox()->set_spacing (6);
176
177         cancel_button = add_button (Stock::CANCEL, RESPONSE_CANCEL);
178         open_button = add_button (Stock::OPEN, RESPONSE_ACCEPT);
179         open_button->set_sensitive (false);
180
181         setup_recent_sessions ();
182
183         get_vbox()->pack_start (recent_scroller, true, true);
184         get_vbox()->show_all ();
185
186         recent_scroller.show();
187
188         int cnt = redisplay_recent_sessions ();
189         if (cnt > 4) {
190                 recent_scroller.set_size_request (-1, 300);
191         } else {
192                 recent_scroller.set_size_request (-1, 80);
193         }
194
195 }
196
197
198
199 SessionDialog::~SessionDialog()
200 {
201 }
202
203 void
204 SessionDialog::clear_given ()
205 {
206         _provided_session_path = "";
207         _provided_session_name = "";
208 }
209
210 bool
211 SessionDialog::use_session_template ()
212 {
213         if (!load_template_override.empty()) {
214                 return true;
215         }
216
217         if (use_template_button.get_active()) {
218                 return true;
219         }
220
221         return false;
222 }
223
224 std::string
225 SessionDialog::session_template_name ()
226 {
227         if (!load_template_override.empty()) {
228                 string the_path (ARDOUR::user_template_directory());
229                 return Glib::build_filename (the_path, load_template_override + ARDOUR::template_suffix);
230         }
231
232         if (use_template_button.get_active()) {
233                 TreeModel::iterator iter = template_chooser.get_active ();
234                 TreeModel::Row row = (*iter);
235                 string s = row[session_template_columns.path];
236                 return s;
237         }
238
239         return string();
240 }
241
242 std::string
243 SessionDialog::session_name (bool& should_be_new)
244 {
245         if (!_provided_session_name.empty() && !new_only) {
246                 should_be_new = false;
247                 return _provided_session_name;
248         }
249
250         /* Try recent session selection */
251
252         TreeIter iter = recent_session_display.get_selection()->get_selected();
253
254         if (iter) {
255                 should_be_new = false;
256                 string s = (*iter)[recent_session_columns.fullpath];
257                 if (Glib::file_test (s, Glib::FILE_TEST_IS_REGULAR)) {
258                         return PBD::basename_nosuffix (s);
259                 }
260                 return (*iter)[recent_session_columns.visible_name];
261         }
262
263         if (_existing_session_chooser_used) {
264                 /* existing session chosen from file chooser */
265                 should_be_new = false;
266                 return existing_session_chooser.get_filename ();
267         } else {
268                 should_be_new = true;
269                 string val = new_name_entry.get_text ();
270                 strip_whitespace_edges (val);
271                 return val;
272         }
273 }
274
275 std::string
276 SessionDialog::session_folder ()
277 {
278         if (!_provided_session_path.empty() && !new_only) {
279                 return _provided_session_path;
280         }
281
282         /* Try recent session selection */
283
284         TreeIter iter = recent_session_display.get_selection()->get_selected();
285
286         if (iter) {
287                 string s = (*iter)[recent_session_columns.fullpath];
288                 if (Glib::file_test (s, Glib::FILE_TEST_IS_REGULAR)) {
289                         return Glib::path_get_dirname (s);
290                 }
291                 return s;
292         }
293
294         if (_existing_session_chooser_used) {
295                 /* existing session chosen from file chooser */
296                 return Glib::path_get_dirname (existing_session_chooser.get_current_folder ());
297         } else {
298                 std::string val = new_name_entry.get_text();
299                 strip_whitespace_edges (val);
300                 std::string legal_session_folder_name = legalize_for_path (val);
301                 return Glib::build_filename (new_folder_chooser.get_filename (), legal_session_folder_name);
302         }
303 }
304
305 void
306 SessionDialog::setup_recent_sessions ()
307 {
308         recent_session_model = TreeStore::create (recent_session_columns);
309         recent_session_model->signal_sort_column_changed().connect (sigc::mem_fun (*this, &SessionDialog::recent_session_sort_changed));
310
311         recent_session_display.set_model (recent_session_model);
312         recent_session_display.append_column (_("Session Name"), recent_session_columns.visible_name);
313         recent_session_display.append_column (_("Sample Rate"), recent_session_columns.sample_rate);
314         recent_session_display.append_column (_("File Resolution"), recent_session_columns.disk_format);
315         recent_session_display.append_column (_("Last Modified"), recent_session_columns.time_formatted);
316         recent_session_display.set_headers_visible (true);
317         recent_session_display.get_selection()->set_mode (SELECTION_SINGLE);
318
319         recent_session_display.get_selection()->signal_changed().connect (sigc::mem_fun (*this, &SessionDialog::recent_session_row_selected));
320
321         recent_scroller.add (recent_session_display);
322         recent_scroller.set_policy (Gtk::POLICY_NEVER, Gtk::POLICY_AUTOMATIC);
323         recent_scroller.set_shadow_type (Gtk::SHADOW_IN);
324
325         recent_session_display.show();
326         recent_session_display.signal_row_activated().connect (sigc::mem_fun (*this, &SessionDialog::recent_row_activated));
327         recent_session_display.signal_button_press_event().connect (sigc::mem_fun (*this, &SessionDialog::recent_button_press), false);
328 }
329
330 void
331 SessionDialog::setup_initial_choice_box ()
332 {
333         ic_vbox.set_spacing (6);
334
335         HBox* centering_hbox = manage (new HBox);
336         VBox* centering_vbox = manage (new VBox);
337
338         centering_vbox->set_spacing (6);
339
340         Label* new_label = manage (new Label);
341         new_label->set_markup (string_compose ("<span weight=\"bold\" size=\"large\">%1</span>", _("New Session")));
342         new_label->set_justify (JUSTIFY_CENTER);
343
344         ic_new_session_button.add (*new_label);
345         ic_new_session_button.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::new_session_button_clicked));
346
347         Gtk::HBox* hbox = manage (new HBox);
348         Gtk::VBox* vbox = manage (new VBox);
349         hbox->set_spacing (12);
350         vbox->set_spacing (12);
351
352         string image_path;
353
354         Searchpath rc (ARDOUR::ardour_data_search_path());
355         rc.add_subdirectory_to_paths ("resources");
356
357         if (find_file (rc, PROGRAM_NAME "-small-splash.png", image_path)) {
358                 Gtk::Image* image;
359                 if ((image = manage (new Gtk::Image (image_path))) != 0) {
360                         hbox->pack_start (*image, false, false);
361                 }
362         }
363
364         vbox->pack_start (ic_new_session_button, true, true, 20);
365         hbox->pack_start (*vbox, true, true, 20);
366
367         centering_vbox->pack_start (*hbox, false, false);
368
369         /* Possible update message */
370
371         if (ARDOUR_UI::instance()->announce_string() != "" ) {
372
373                 Box *info_box = manage (new VBox);
374                 info_box->set_border_width (12);
375                 info_box->set_spacing (6);
376
377                 info_box->pack_start (info_scroller_label, false, false);
378
379                 info_scroller_count = 0;
380                 info_scroller_connection = Glib::signal_timeout().connect (mem_fun(*this, &SessionDialog::info_scroller_update), 50);
381
382                 Gtk::Button *updates_button = manage (new Gtk::Button (_("Check the website for more...")));
383
384                 updates_button->signal_clicked().connect (mem_fun(*this, &SessionDialog::updates_button_clicked) );
385                 set_tooltip (*updates_button, _("Click to open the program website in your web browser"));
386
387                 info_box->pack_start (*updates_button, false, false);
388
389                 info_frame.add (*info_box);
390                 info_box->show_all ();
391                 info_frame.show ();
392         }
393
394         /* recent session scroller */
395         setup_recent_sessions ();
396
397         recent_label.set_no_show_all (true);
398         recent_scroller.set_no_show_all (true);
399
400         recent_label.set_markup (string_compose ("<span weight=\"bold\" size=\"large\">%1</span>", _("Recent Sessions")));
401
402         centering_vbox->pack_start (recent_label, false, false, 12);
403         centering_vbox->pack_start (recent_scroller, true, true);
404
405         /* Browse button */
406
407         existing_session_chooser.set_title (_("Select session file"));
408         existing_session_chooser.signal_file_set().connect (sigc::mem_fun (*this, &SessionDialog::existing_session_selected));
409         existing_session_chooser.set_current_folder(poor_mans_glob (Config->get_default_session_parent_dir()));
410
411         FileFilter session_filter;
412         session_filter.add_pattern (string_compose(X_("*%1"), ARDOUR::statefile_suffix));
413         session_filter.set_name (string_compose (_("%1 sessions"), PROGRAM_NAME));
414         existing_session_chooser.add_filter (session_filter);
415
416         FileFilter archive_filter;
417         archive_filter.add_pattern (X_("*.tar.xz"));
418         archive_filter.set_name (_("Session Archives"));
419         existing_session_chooser.add_filter (archive_filter);
420
421         existing_session_chooser.set_filter (session_filter);
422
423         Gtkmm2ext::add_volume_shortcuts (existing_session_chooser);
424
425         Label* browse_label = manage (new Label);
426         browse_label->set_markup (string_compose ("<span weight=\"bold\" size=\"large\">%1</span>", _("Other Sessions")));
427
428         centering_vbox->pack_start (*browse_label, false, false, 12);
429         centering_vbox->pack_start (existing_session_chooser, false, false);
430
431         /* --disable plugins UI */
432
433         _disable_plugins.set_label (_("Safe Mode: Disable all Plugins"));
434         _disable_plugins.set_flags (Gtk::CAN_FOCUS);
435         _disable_plugins.set_relief (Gtk::RELIEF_NORMAL);
436         _disable_plugins.set_mode (true);
437         _disable_plugins.set_active (ARDOUR::Session::get_disable_all_loaded_plugins());
438         _disable_plugins.set_border_width(0);
439         _disable_plugins.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::disable_plugins_clicked));
440         centering_vbox->pack_start (_disable_plugins, false, false);
441
442         /* pack it all up */
443
444         centering_hbox->pack_start (*centering_vbox, true, true);
445         ic_vbox.pack_start (*centering_hbox, true, true);
446         ic_vbox.show_all ();
447 }
448
449 void
450 SessionDialog::session_selected ()
451 {
452         /* HACK HACK HACK ... change the "Apply" button label
453            to say "Open"
454         */
455
456         Gtk::Widget* tl = ic_vbox.get_toplevel();
457         Gtk::Window* win;
458         if ((win = dynamic_cast<Gtk::Window*>(tl)) != 0) {
459                 /* ::get_default_widget() is not wrapped in gtkmm */
460                 Gtk::Widget* def = wrap (gtk_window_get_default_widget (win->gobj()));
461                 Gtk::Button* button;
462                 if ((button = dynamic_cast<Gtk::Button*>(def)) != 0) {
463                         button->set_label (_("Open"));
464                 }
465         }
466 }
467
468 void
469 SessionDialog::new_session_button_clicked ()
470 {
471         _existing_session_chooser_used = false;
472         recent_session_display.get_selection()->unselect_all ();
473
474         get_vbox()->remove (ic_vbox);
475         get_vbox()->pack_start (session_new_vbox, true, true);
476         back_button->set_sensitive (true);
477         new_name_entry.grab_focus ();
478 }
479
480 bool
481 SessionDialog::back_button_pressed (GdkEventButton*)
482 {
483         get_vbox()->remove (session_new_vbox);
484         back_button->set_sensitive (false);
485         get_vbox()->pack_start (ic_vbox);
486
487         return true;
488 }
489
490 bool
491 SessionDialog::open_button_pressed (GdkEventButton* ev)
492 {
493         if (Gtkmm2ext::Keyboard::modifier_state_equals (ev->state, Gtkmm2ext::Keyboard::PrimaryModifier)) {
494                 _disable_plugins.set_active();
495         }
496         response (RESPONSE_ACCEPT);
497         return true;
498 }
499
500 void
501 SessionDialog::populate_session_templates ()
502 {
503         vector<TemplateInfo> templates;
504
505         find_session_templates (templates);
506
507         template_model->clear ();
508
509         for (vector<TemplateInfo>::iterator x = templates.begin(); x != templates.end(); ++x) {
510                 TreeModel::Row row;
511
512                 row = *(template_model->append ());
513
514                 row[session_template_columns.name] = (*x).name;
515                 row[session_template_columns.path] = (*x).path;
516         }
517
518         if (!templates.empty()) {
519                 /* select first row */
520                 template_chooser.set_active (0);
521         }
522 }
523
524 void
525 SessionDialog::setup_new_session_page ()
526 {
527         session_new_vbox.set_border_width (12);
528         session_new_vbox.set_spacing (18);
529
530         VBox *vbox1 = manage (new VBox);
531         HBox* hbox1 = manage (new HBox);
532         Label* label1 = manage (new Label);
533
534         vbox1->set_spacing (6);
535
536         hbox1->set_spacing (6);
537         hbox1->pack_start (*label1, false, false);
538         hbox1->pack_start (new_name_entry, true, true);
539
540         label1->set_text (_("Session name:"));
541
542         if (!ARDOUR_COMMAND_LINE::session_name.empty()) {
543                 new_name_entry.set_text  (Glib::path_get_basename (ARDOUR_COMMAND_LINE::session_name));
544                 /* name provided - they can move right along */
545                 open_button->set_sensitive (true);
546         }
547
548         new_name_entry.signal_changed().connect (sigc::mem_fun (*this, &SessionDialog::new_name_changed));
549         new_name_entry.signal_activate().connect (sigc::mem_fun (*this, &SessionDialog::new_name_activated));
550
551         vbox1->pack_start (*hbox1, true, true);
552
553         /* --- */
554
555         HBox* hbox2 = manage (new HBox);
556         Label* label2 = manage (new Label);
557
558         hbox2->set_spacing (6);
559         hbox2->pack_start (*label2, false, false);
560         hbox2->pack_start (new_folder_chooser, true, true);
561
562         label2->set_text (_("Create session folder in:"));
563
564         if (!ARDOUR_COMMAND_LINE::session_name.empty()) {
565                 new_folder_chooser.set_current_folder (poor_mans_glob (Glib::path_get_dirname (ARDOUR_COMMAND_LINE::session_name)));
566         } else if (ARDOUR_UI::instance()->session_loaded) {
567                 // point the new session file chooser at the parent directory of the current session
568                 string session_parent_dir = Glib::path_get_dirname(ARDOUR_UI::instance()->the_session()->path());
569                 new_folder_chooser.set_current_folder (session_parent_dir);
570                 string default_session_folder = poor_mans_glob (Config->get_default_session_parent_dir());
571
572                 try {
573                         /* add_shortcut_folder throws an exception if the folder being added already has a shortcut */
574                         new_folder_chooser.add_shortcut_folder (default_session_folder);
575                 }
576                 catch (Glib::Error & e) {
577                         std::cerr << "new_folder_chooser.add_shortcut_folder (" << default_session_folder << ") threw Glib::Error " << e.what() << std::endl;
578                 }
579         } else {
580                 new_folder_chooser.set_current_folder (poor_mans_glob (Config->get_default_session_parent_dir()));
581         }
582         new_folder_chooser.show ();
583         new_folder_chooser.set_title (_("Select folder for session"));
584
585         Gtkmm2ext::add_volume_shortcuts (new_folder_chooser);
586
587         vbox1->pack_start (*hbox2, false, false);
588
589         session_new_vbox.pack_start (*vbox1, false, false);
590
591         /* --- */
592
593         VBox *vbox2 = manage (new VBox);
594         HBox* hbox3 = manage (new HBox);
595         template_model = ListStore::create (session_template_columns);
596
597         vbox2->set_spacing (6);
598
599         VBox *vbox3 = manage (new VBox);
600
601         vbox3->set_spacing (6);
602
603         /* we may want to hide this and show it at various
604            times depending on the existence of templates.
605         */
606         template_chooser.set_no_show_all (true);
607         use_template_button.set_no_show_all (true);
608
609         HBox* hbox4a = manage (new HBox);
610         use_template_button.set_label (_("Use this template"));
611
612         TreeModel::Row row = *template_model->prepend ();
613         row[session_template_columns.name] = (_("no template"));
614         row[session_template_columns.path] = string();
615
616         hbox4a->set_spacing (6);
617         hbox4a->pack_start (use_template_button, false, false);
618         hbox4a->pack_start (template_chooser, true, true);
619
620         template_chooser.set_model (template_model);
621
622         Gtk::CellRendererText* text_renderer = Gtk::manage (new Gtk::CellRendererText);
623         text_renderer->property_editable() = false;
624
625         template_chooser.pack_start (*text_renderer);
626         template_chooser.add_attribute (text_renderer->property_text(), session_template_columns.name);
627         template_chooser.set_active (0);
628
629         vbox3->pack_start (*hbox4a, false, false);
630
631         /* --- */
632
633         HBox* hbox5 = manage (new HBox);
634
635         hbox5->set_spacing (6);
636         hbox5->pack_start (more_new_session_options_button, false, false);
637
638         setup_more_options_box ();
639         more_new_session_options_button.add (more_options_vbox);
640
641         vbox3->pack_start (*hbox5, false, false);
642         hbox3->pack_start (*vbox3, true, true, 8);
643         vbox2->pack_start (*hbox3, false, false);
644
645         /* --- */
646
647         session_new_vbox.pack_start (*vbox2, false, false);
648         session_new_vbox.show_all ();
649 }
650
651 void
652 SessionDialog::new_name_changed ()
653 {
654         if (!new_name_entry.get_text().empty()) {
655                 session_selected ();
656                 open_button->set_sensitive (true);
657         } else {
658                 open_button->set_sensitive (false);
659         }
660 }
661
662 void
663 SessionDialog::new_name_activated ()
664 {
665         response (RESPONSE_ACCEPT);
666 }
667
668 int
669 SessionDialog::redisplay_recent_sessions ()
670 {
671         std::vector<std::string> session_directories;
672         RecentSessionsSorter cmp;
673
674         recent_session_display.set_model (Glib::RefPtr<TreeModel>(0));
675         recent_session_model->clear ();
676
677         ARDOUR::RecentSessions rs;
678         ARDOUR::read_recent_sessions (rs);
679
680         if (rs.empty()) {
681                 recent_session_display.set_model (recent_session_model);
682                 return 0;
683         }
684
685         // sort them alphabetically
686         sort (rs.begin(), rs.end(), cmp);
687
688         for (ARDOUR::RecentSessions::iterator i = rs.begin(); i != rs.end(); ++i) {
689                 session_directories.push_back ((*i).second);
690         }
691
692         int session_snapshot_count = 0;
693
694         for (vector<std::string>::const_iterator i = session_directories.begin(); i != session_directories.end(); ++i)
695         {
696                 std::vector<std::string> state_file_paths;
697
698                 // now get available states for this session
699
700                 get_state_files_in_directory (*i, state_file_paths);
701
702                 vector<string> states;
703                 vector<const gchar*> item;
704                 string dirname = *i;
705
706                 /* remove any trailing / */
707
708                 if (dirname[dirname.length()-1] == '/') {
709                         dirname = dirname.substr (0, dirname.length()-1);
710                 }
711
712                 /* check whether session still exists */
713                 if (!Glib::file_test(dirname.c_str(), Glib::FILE_TEST_EXISTS)) {
714                         /* session doesn't exist */
715                         continue;
716                 }
717
718                 /* now get available states for this session */
719
720                 states = Session::possible_states (dirname);
721
722                 if (states.empty()) {
723                         /* no state file? */
724                         continue;
725                 }
726
727                 std::vector<string> state_file_names(get_file_names_no_extension (state_file_paths));
728
729                 if (state_file_names.empty()) {
730                         continue;
731                 }
732
733                 Gtk::TreeModel::Row row = *(recent_session_model->append());
734
735                 float sr;
736                 SampleFormat sf;
737
738                 std::string state_file_basename;
739
740                 if (state_file_names.size() > 1) {
741                         state_file_basename = Session::get_snapshot_from_instant (dirname);
742                         std::string s = Glib::build_filename (dirname, state_file_basename + statefile_suffix);
743                         if (!Glib::file_test (s, Glib::FILE_TEST_IS_REGULAR)) {
744                                 state_file_basename = "";
745                         }
746                 }
747
748                 if (state_file_basename.empty()) {
749                         state_file_basename = state_file_names.front();
750                 }
751
752                 std::string s = Glib::build_filename (dirname, state_file_basename + statefile_suffix);
753
754                 GStatBuf gsb;
755                 g_stat (s.c_str(), &gsb);
756
757                 row[recent_session_columns.fullpath] = s;
758                 row[recent_session_columns.tip] = Gtkmm2ext::markup_escape_text (dirname);
759                 row[recent_session_columns.time_modified] = gsb.st_mtime;
760
761                 if (Session::get_info_from_path (s, sr, sf) == 0) {
762                         row[recent_session_columns.sample_rate] = rate_as_string (sr);
763                         switch (sf) {
764                         case FormatFloat:
765                                 row[recent_session_columns.disk_format] = _("32-bit float");
766                                 break;
767                         case FormatInt24:
768                                 row[recent_session_columns.disk_format] = _("24-bit");
769                                 break;
770                         case FormatInt16:
771                                 row[recent_session_columns.disk_format] = _("16-bit");
772                                 break;
773                         }
774                 } else {
775                         row[recent_session_columns.sample_rate] = "??";
776                         row[recent_session_columns.disk_format] = "--";
777                 }
778
779                 ++session_snapshot_count;
780
781                 if (state_file_names.size() > 1) {
782                         // multiple session files in the session directory - show the directory name.
783                         // if there's not a session file with the same name as the session directory,
784                         // opening the parent item will fail, but expanding it will show the session
785                         // files that actually exist, and the right one can then be opened.
786                         row[recent_session_columns.visible_name] = Glib::path_get_basename (dirname);
787                         int64_t most_recent = 0;
788
789                         // add the children
790                         for (std::vector<std::string>::iterator i2 = state_file_names.begin(); i2 != state_file_names.end(); ++i2) {
791
792                                 s = Glib::build_filename (dirname, *i2 + statefile_suffix);
793                                 Gtk::TreeModel::Row child_row = *(recent_session_model->append (row.children()));
794
795                                 child_row[recent_session_columns.visible_name] = *i2;
796                                 child_row[recent_session_columns.fullpath] = s;
797                                 child_row[recent_session_columns.tip] = Gtkmm2ext::markup_escape_text (dirname);
798                                 g_stat (s.c_str(), &gsb);
799                                 child_row[recent_session_columns.time_modified] = gsb.st_mtime;
800
801                                 Glib::DateTime gdt(Glib::DateTime::create_now_local (gsb.st_mtime));
802                                 child_row[recent_session_columns.time_formatted] = gdt.format ("%F %H:%M");
803
804                                 if (gsb.st_mtime > most_recent) {
805                                         most_recent = gsb.st_mtime;
806                                 }
807 #if 0
808                                 if (Session::get_info_from_path (s, sr, sf) == 0) {
809                                         child_row[recent_session_columns.sample_rate] = rate_as_string (sr);
810                                         switch (sf) {
811                                         case FormatFloat:
812                                                 child_row[recent_session_columns.disk_format] = _("32-bit float");
813                                                 break;
814                                         case FormatInt24:
815                                                 child_row[recent_session_columns.disk_format] = _("24-bit");
816                                                 break;
817                                         case FormatInt16:
818                                                 child_row[recent_session_columns.disk_format] = _("16-bit");
819                                                 break;
820                                         }
821                                 } else {
822                                         child_row[recent_session_columns.sample_rate] = "??";
823                                         child_row[recent_session_columns.disk_format] = "--";
824                                 }
825 #else
826                                 child_row[recent_session_columns.sample_rate] = "";
827                                 child_row[recent_session_columns.disk_format] = "";
828 #endif
829
830                                 ++session_snapshot_count;
831                         }
832
833                         assert (most_recent >= row[recent_session_columns.time_modified]);
834                         row[recent_session_columns.time_modified] = most_recent;
835
836                 } else {
837                         // only a single session file in the directory - show its actual name.
838                         row[recent_session_columns.visible_name] = state_file_basename;
839                 }
840
841                 Glib::DateTime gdt(Glib::DateTime::create_now_local (row[recent_session_columns.time_modified]));
842                 row[recent_session_columns.time_formatted] = gdt.format ("%F %H:%M");
843         }
844
845         recent_session_display.set_tooltip_column(1); // recent_session_columns.tip
846         recent_session_display.set_model (recent_session_model);
847
848         // custom sort
849         Gtk::TreeView::Column* pColumn;
850         if ((pColumn = recent_session_display.get_column (0))) { // name
851                 pColumn->set_sort_column (recent_session_columns.visible_name);
852         }
853         if ((pColumn = recent_session_display.get_column (3))) { // date
854                 pColumn->set_sort_column (recent_session_columns.time_modified); // unixtime
855         }
856
857         int32_t sort = UIConfiguration::instance().get_recent_session_sort();
858         if (abs(sort) != 1 + recent_session_columns.visible_name.index () &&
859             abs(sort) != 1 + recent_session_columns.time_modified.index ()) {
860                 sort = 1 + recent_session_columns.visible_name.index();
861         }
862         recent_session_model->set_sort_column (abs (sort) -1, sort < 0 ? Gtk::SORT_DESCENDING : Gtk::SORT_ASCENDING);
863
864         return session_snapshot_count;
865 }
866
867 void
868 SessionDialog::recent_session_sort_changed ()
869 {
870         int column;
871         SortType order;
872         if (recent_session_model->get_sort_column_id (column, order)) {
873                 int32_t sort = (column + 1) * (order == Gtk::SORT_DESCENDING ? -1 : 1);
874                 if (sort != UIConfiguration::instance().get_recent_session_sort()) {
875                         UIConfiguration::instance().set_recent_session_sort(sort);
876                 }
877         }
878 }
879
880 void
881 SessionDialog::recent_session_row_selected ()
882 {
883         if (recent_session_display.get_selection()->count_selected_rows() > 0) {
884                 open_button->set_sensitive (true);
885                 session_selected ();
886         } else {
887                 open_button->set_sensitive (false);
888         }
889 }
890
891 void
892 SessionDialog::setup_more_options_box ()
893 {
894         more_options_vbox.set_border_width (24);
895
896         _output_limit_count.set_adjustment (_output_limit_count_adj);
897         _input_limit_count.set_adjustment (_input_limit_count_adj);
898         _master_bus_channel_count.set_adjustment (_master_bus_channel_count_adj);
899
900         chan_count_label_1.set_text (_("channels"));
901         chan_count_label_3.set_text (_("channels"));
902         chan_count_label_4.set_text (_("channels"));
903
904         chan_count_label_1.set_alignment(0,0.5);
905         chan_count_label_1.set_padding(0,0);
906         chan_count_label_1.set_line_wrap(false);
907
908         chan_count_label_3.set_alignment(0,0.5);
909         chan_count_label_3.set_padding(0,0);
910         chan_count_label_3.set_line_wrap(false);
911
912         chan_count_label_4.set_alignment(0,0.5);
913         chan_count_label_4.set_padding(0,0);
914         chan_count_label_4.set_line_wrap(false);
915
916         bus_label.set_markup (_("<b>Busses</b>"));
917         input_label.set_markup (_("<b>Inputs</b>"));
918         output_label.set_markup (_("<b>Outputs</b>"));
919
920         _master_bus_channel_count.set_flags(Gtk::CAN_FOCUS);
921         _master_bus_channel_count.set_update_policy(Gtk::UPDATE_ALWAYS);
922         _master_bus_channel_count.set_numeric(true);
923         _master_bus_channel_count.set_digits(0);
924         _master_bus_channel_count.set_wrap(false);
925
926         _create_master_bus.set_label (_("Create master bus"));
927         _create_master_bus.set_flags(Gtk::CAN_FOCUS);
928         _create_master_bus.set_relief(Gtk::RELIEF_NORMAL);
929         _create_master_bus.set_mode(true);
930         _create_master_bus.set_active(true);
931         _create_master_bus.set_border_width(0);
932
933         advanced_table.set_row_spacings(0);
934         advanced_table.set_col_spacings(0);
935
936         _connect_inputs.set_label (_("Automatically connect to physical inputs"));
937         _connect_inputs.set_flags(Gtk::CAN_FOCUS);
938         _connect_inputs.set_relief(Gtk::RELIEF_NORMAL);
939         _connect_inputs.set_mode(true);
940         _connect_inputs.set_active(Config->get_input_auto_connect() != ManualConnect);
941         _connect_inputs.set_border_width(0);
942
943         _limit_input_ports.set_label (_("Use only"));
944         _limit_input_ports.set_flags(Gtk::CAN_FOCUS);
945         _limit_input_ports.set_relief(Gtk::RELIEF_NORMAL);
946         _limit_input_ports.set_mode(true);
947         _limit_input_ports.set_sensitive(true);
948         _limit_input_ports.set_border_width(0);
949
950         _input_limit_count.set_flags(Gtk::CAN_FOCUS);
951         _input_limit_count.set_update_policy(Gtk::UPDATE_ALWAYS);
952         _input_limit_count.set_numeric(true);
953         _input_limit_count.set_digits(0);
954         _input_limit_count.set_wrap(false);
955         _input_limit_count.set_sensitive(false);
956
957         bus_hbox.pack_start (bus_table, Gtk::PACK_SHRINK, 18);
958
959         bus_label.set_alignment(0, 0.5);
960         bus_label.set_padding(0,0);
961         bus_label.set_line_wrap(false);
962         bus_label.set_selectable(false);
963         bus_label.set_use_markup(true);
964         bus_frame.set_shadow_type(Gtk::SHADOW_NONE);
965         bus_frame.set_label_align(0,0.5);
966         bus_frame.add(bus_hbox);
967         bus_frame.set_label_widget(bus_label);
968
969         bus_table.set_row_spacings (0);
970         bus_table.set_col_spacings (0);
971         bus_table.attach (_create_master_bus, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
972         bus_table.attach (_master_bus_channel_count, 1, 2, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 0, 0);
973         bus_table.attach (chan_count_label_1, 2, 3, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 6, 0);
974
975         input_port_limit_hbox.pack_start(_limit_input_ports, Gtk::PACK_SHRINK, 6);
976         input_port_limit_hbox.pack_start(_input_limit_count, Gtk::PACK_SHRINK, 0);
977         input_port_limit_hbox.pack_start(chan_count_label_3, Gtk::PACK_SHRINK, 6);
978         input_port_vbox.pack_start(_connect_inputs, Gtk::PACK_SHRINK, 0);
979         input_port_vbox.pack_start(input_port_limit_hbox, Gtk::PACK_EXPAND_PADDING, 0);
980         input_table.set_row_spacings(0);
981         input_table.set_col_spacings(0);
982         input_table.attach(input_port_vbox, 0, 1, 0, 1, Gtk::EXPAND|Gtk::FILL, Gtk::EXPAND|Gtk::FILL, 6, 6);
983
984         input_hbox.pack_start (input_table, Gtk::PACK_SHRINK, 18);
985
986         input_label.set_alignment(0, 0.5);
987         input_label.set_padding(0,0);
988         input_label.set_line_wrap(false);
989         input_label.set_selectable(false);
990         input_label.set_use_markup(true);
991         input_frame.set_shadow_type(Gtk::SHADOW_NONE);
992         input_frame.set_label_align(0,0.5);
993         input_frame.add(input_hbox);
994         input_frame.set_label_widget(input_label);
995
996         _connect_outputs.set_label (_("Automatically connect outputs"));
997         _connect_outputs.set_flags(Gtk::CAN_FOCUS);
998         _connect_outputs.set_relief(Gtk::RELIEF_NORMAL);
999         _connect_outputs.set_mode(true);
1000         _connect_outputs.set_active(Config->get_output_auto_connect() != ManualConnect);
1001         _connect_outputs.set_border_width(0);
1002         _limit_output_ports.set_label (_("Use only"));
1003         _limit_output_ports.set_flags(Gtk::CAN_FOCUS);
1004         _limit_output_ports.set_relief(Gtk::RELIEF_NORMAL);
1005         _limit_output_ports.set_mode(true);
1006         _limit_output_ports.set_sensitive(true);
1007         _limit_output_ports.set_border_width(0);
1008         _output_limit_count.set_flags(Gtk::CAN_FOCUS);
1009         _output_limit_count.set_update_policy(Gtk::UPDATE_ALWAYS);
1010         _output_limit_count.set_numeric(false);
1011         _output_limit_count.set_digits(0);
1012         _output_limit_count.set_wrap(false);
1013         _output_limit_count.set_sensitive(false);
1014         output_port_limit_hbox.pack_start(_limit_output_ports, Gtk::PACK_SHRINK, 6);
1015         output_port_limit_hbox.pack_start(_output_limit_count, Gtk::PACK_SHRINK, 0);
1016         output_port_limit_hbox.pack_start(chan_count_label_4, Gtk::PACK_SHRINK, 6);
1017
1018         _connect_outputs_to_master.set_label (_("... to master bus"));
1019         _connect_outputs_to_master.set_flags(Gtk::CAN_FOCUS);
1020         _connect_outputs_to_master.set_relief(Gtk::RELIEF_NORMAL);
1021         _connect_outputs_to_master.set_mode(true);
1022         _connect_outputs_to_master.set_active(Config->get_output_auto_connect() == AutoConnectMaster);
1023         _connect_outputs_to_master.set_border_width(0);
1024
1025         _connect_outputs_to_master.set_group (connect_outputs_group);
1026         _connect_outputs_to_physical.set_group (connect_outputs_group);
1027
1028         _connect_outputs_to_physical.set_label (_("... to physical outputs"));
1029         _connect_outputs_to_physical.set_flags(Gtk::CAN_FOCUS);
1030         _connect_outputs_to_physical.set_relief(Gtk::RELIEF_NORMAL);
1031         _connect_outputs_to_physical.set_mode(true);
1032         _connect_outputs_to_physical.set_active(Config->get_output_auto_connect() == AutoConnectPhysical);
1033         _connect_outputs_to_physical.set_border_width(0);
1034
1035         output_conn_vbox.pack_start(_connect_outputs, Gtk::PACK_SHRINK, 0);
1036         output_conn_vbox.pack_start(_connect_outputs_to_master, Gtk::PACK_SHRINK, 0);
1037         output_conn_vbox.pack_start(_connect_outputs_to_physical, Gtk::PACK_SHRINK, 0);
1038         output_vbox.set_border_width(6);
1039
1040         output_port_vbox.pack_start(output_port_limit_hbox, Gtk::PACK_SHRINK, 0);
1041
1042         output_vbox.pack_start(output_conn_vbox);
1043         output_vbox.pack_start(output_port_vbox);
1044
1045         output_label.set_alignment(0, 0.5);
1046         output_label.set_padding(0,0);
1047         output_label.set_line_wrap(false);
1048         output_label.set_selectable(false);
1049         output_label.set_use_markup(true);
1050         output_frame.set_shadow_type(Gtk::SHADOW_NONE);
1051         output_frame.set_label_align(0,0.5);
1052
1053         output_hbox.pack_start (output_vbox, Gtk::PACK_SHRINK, 18);
1054
1055         output_frame.add(output_hbox);
1056         output_frame.set_label_widget(output_label);
1057
1058         more_options_vbox.pack_start(advanced_table, Gtk::PACK_SHRINK, 0);
1059         more_options_vbox.pack_start(bus_frame, Gtk::PACK_SHRINK, 6);
1060         more_options_vbox.pack_start(input_frame, Gtk::PACK_SHRINK, 6);
1061         more_options_vbox.pack_start(output_frame, Gtk::PACK_SHRINK, 0);
1062
1063         /* signals */
1064
1065         _connect_inputs.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::connect_inputs_clicked));
1066         _connect_outputs.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::connect_outputs_clicked));
1067         _limit_input_ports.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::limit_inputs_clicked));
1068         _limit_output_ports.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::limit_outputs_clicked));
1069         _create_master_bus.signal_clicked().connect (sigc::mem_fun (*this, &SessionDialog::master_bus_button_clicked));
1070
1071         /* note that more_options_vbox is "visible" by default even
1072          * though it may not be displayed to the user, this is so the dialog
1073          * doesn't resize.
1074          */
1075         more_options_vbox.show_all ();
1076 }
1077
1078 bool
1079 SessionDialog::create_master_bus() const
1080 {
1081         return _create_master_bus.get_active();
1082 }
1083
1084 int
1085 SessionDialog::master_channel_count() const
1086 {
1087         return _master_bus_channel_count.get_value_as_int();
1088 }
1089
1090 bool
1091 SessionDialog::connect_inputs() const
1092 {
1093         return _connect_inputs.get_active();
1094 }
1095
1096 bool
1097 SessionDialog::limit_inputs_used_for_connection() const
1098 {
1099         return _limit_input_ports.get_active();
1100 }
1101
1102 int
1103 SessionDialog::input_limit_count() const
1104 {
1105         return _input_limit_count.get_value_as_int();
1106 }
1107
1108 bool
1109 SessionDialog::connect_outputs() const
1110 {
1111         return _connect_outputs.get_active();
1112 }
1113
1114 bool
1115 SessionDialog::limit_outputs_used_for_connection() const
1116 {
1117         return _limit_output_ports.get_active();
1118 }
1119
1120 int
1121 SessionDialog::output_limit_count() const
1122 {
1123         return _output_limit_count.get_value_as_int();
1124 }
1125
1126 bool
1127 SessionDialog::connect_outs_to_master() const
1128 {
1129         return _connect_outputs_to_master.get_active();
1130 }
1131
1132 bool
1133 SessionDialog::connect_outs_to_physical() const
1134 {
1135         return _connect_outputs_to_physical.get_active();
1136 }
1137
1138 void
1139 SessionDialog::connect_inputs_clicked ()
1140 {
1141         _limit_input_ports.set_sensitive(_connect_inputs.get_active());
1142
1143         if (_connect_inputs.get_active() && _limit_input_ports.get_active()) {
1144                 _input_limit_count.set_sensitive(true);
1145         } else {
1146                 _input_limit_count.set_sensitive(false);
1147         }
1148 }
1149
1150 void
1151 SessionDialog::connect_outputs_clicked ()
1152 {
1153         bool const co = _connect_outputs.get_active ();
1154         _limit_output_ports.set_sensitive(co);
1155         _connect_outputs_to_master.set_sensitive(co);
1156         _connect_outputs_to_physical.set_sensitive(co);
1157
1158         if (co && _limit_output_ports.get_active()) {
1159                 _output_limit_count.set_sensitive(true);
1160         } else {
1161                 _output_limit_count.set_sensitive(false);
1162         }
1163 }
1164
1165 void
1166 SessionDialog::limit_inputs_clicked ()
1167 {
1168         _input_limit_count.set_sensitive(_limit_input_ports.get_active());
1169 }
1170
1171 void
1172 SessionDialog::limit_outputs_clicked ()
1173 {
1174         _output_limit_count.set_sensitive(_limit_output_ports.get_active());
1175 }
1176
1177 void
1178 SessionDialog::master_bus_button_clicked ()
1179 {
1180         bool const yn = _create_master_bus.get_active();
1181
1182         _master_bus_channel_count.set_sensitive(yn);
1183         _connect_outputs_to_master.set_sensitive(yn);
1184 }
1185
1186 void
1187 SessionDialog::recent_row_activated (const Gtk::TreePath&, Gtk::TreeViewColumn*)
1188 {
1189         response (RESPONSE_ACCEPT);
1190 }
1191
1192 bool
1193 SessionDialog::recent_button_press (GdkEventButton* ev)
1194 {
1195         if ((ev->type == GDK_BUTTON_PRESS) && (ev->button == 3) ) {
1196
1197                 TreeModel::Path path;
1198                 TreeViewColumn* column;
1199                 int cellx, celly;
1200                 if (recent_session_display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly)) {
1201                         Glib::RefPtr<Gtk::TreeView::Selection> selection = recent_session_display.get_selection();
1202                         if (selection) {
1203                                 selection->unselect_all();
1204                                 selection->select(path);
1205                         }
1206                 }
1207
1208                 if (recent_session_display.get_selection()->count_selected_rows() > 0) {
1209                         recent_context_mennu (ev);
1210                 }
1211         }
1212         return false;
1213 }
1214
1215 void
1216 SessionDialog::recent_context_mennu (GdkEventButton *ev)
1217 {
1218         using namespace Gtk::Menu_Helpers;
1219
1220         TreeIter iter = recent_session_display.get_selection()->get_selected();
1221         assert (iter);
1222         string s = (*iter)[recent_session_columns.fullpath];
1223         if (Glib::file_test (s, Glib::FILE_TEST_IS_REGULAR)) {
1224                 s = Glib::path_get_dirname (s);
1225         }
1226         if (!Glib::file_test (s, Glib::FILE_TEST_IS_DIR)) {
1227                 return;
1228         }
1229
1230         Gtk::Menu* m = manage (new Menu);
1231         MenuList& items = m->items ();
1232         items.push_back (MenuElem (s));
1233         items.push_back (SeparatorElem());
1234         items.push_back (MenuElem (_("Remove from recent"), sigc::mem_fun (*this, &SessionDialog::recent_remove_selected)));
1235         m->popup (ev->button, ev->time);
1236 }
1237
1238 void
1239 SessionDialog::recent_remove_selected ()
1240 {
1241         TreeIter iter = recent_session_display.get_selection()->get_selected();
1242         assert (iter);
1243         string s = (*iter)[recent_session_columns.fullpath];
1244         if (Glib::file_test (s, Glib::FILE_TEST_IS_REGULAR)) {
1245                 s = Glib::path_get_dirname (s);
1246         }
1247         ARDOUR::remove_recent_sessions (s);
1248         redisplay_recent_sessions ();
1249 }
1250
1251 void
1252 SessionDialog::disable_plugins_clicked ()
1253 {
1254         ARDOUR::Session::set_disable_all_loaded_plugins (_disable_plugins.get_active());
1255 }
1256
1257 void
1258 SessionDialog::existing_session_selected ()
1259 {
1260         _existing_session_chooser_used = true;
1261         recent_session_display.get_selection()->unselect_all();
1262         /* mark this sensitive in case we come back here after a failed open
1263          * attempt and the user has hacked up the fix. sigh.
1264          */
1265         open_button->set_sensitive (true);
1266         response (RESPONSE_ACCEPT);
1267 }
1268
1269 void
1270 SessionDialog::updates_button_clicked ()
1271 {
1272         //now open a browser window so user can see more
1273         PBD::open_uri (Config->get_updates_url());
1274 }
1275
1276 bool
1277 SessionDialog::info_scroller_update()
1278 {
1279         info_scroller_count++;
1280
1281         char buf[512];
1282         snprintf (buf, std::min(info_scroller_count,sizeof(buf)-1), "%s", ARDOUR_UI::instance()->announce_string().c_str() );
1283         buf[info_scroller_count] = 0;
1284         info_scroller_label.set_text (buf);
1285         info_scroller_label.show();
1286
1287         if (info_scroller_count > ARDOUR_UI::instance()->announce_string().length()) {
1288                 info_scroller_connection.disconnect();
1289         }
1290
1291         return true;
1292 }
1293
1294 bool
1295 SessionDialog::on_delete_event (GdkEventAny* ev)
1296 {
1297         response (RESPONSE_CANCEL);
1298         return ArdourDialog::on_delete_event (ev);
1299 }
1300