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