Show correct bbt representation of region length in region list.
[ardour.git] / gtk2_ardour / editor_regions.cc
1 /*
2     Copyright (C) 2000-2005 Paul Davis
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <cstdlib>
21 #include <cmath>
22 #include <algorithm>
23 #include <string>
24 #include <sstream>
25
26 #include "pbd/basename.h"
27 #include "pbd/enumwriter.h"
28
29 #include "ardour/audioregion.h"
30 #include "ardour/audiofilesource.h"
31 #include "ardour/silentfilesource.h"
32 #include "ardour/region_factory.h"
33 #include "ardour/session.h"
34 #include "ardour/profile.h"
35
36 #include "gtkmm2ext/choice.h"
37 #include "gtkmm2ext/treeutils.h"
38 #include "gtkmm2ext/utils.h"
39
40 #include "audio_clock.h"
41 #include "editor.h"
42 #include "editing.h"
43 #include "keyboard.h"
44 #include "ardour_ui.h"
45 #include "gui_thread.h"
46 #include "actions.h"
47 #include "region_view.h"
48 #include "utils.h"
49 #include "editor_regions.h"
50 #include "editor_drag.h"
51 #include "main_clock.h"
52 #include "tooltips.h"
53 #include "ui_config.h"
54
55 #include "i18n.h"
56
57 using namespace std;
58 using namespace ARDOUR;
59 using namespace ARDOUR_UI_UTILS;
60 using namespace PBD;
61 using namespace Gtk;
62 using namespace Glib;
63 using namespace Editing;
64 using Gtkmm2ext::Keyboard;
65
66 struct ColumnInfo {
67     int         index;
68     const char* label;
69     const char* tooltip;
70 };
71
72 EditorRegions::EditorRegions (Editor* e)
73         : EditorComponent (e)
74         , old_focus (0)
75         , name_editable (0)
76         , _menu (0)
77         , _show_automatic_regions (true)
78         , ignore_region_list_selection_change (false)
79         , ignore_selected_region_change (false)
80         , _no_redisplay (false)
81         , _sort_type ((Editing::RegionListSortType) 0)
82         , expanded (false)
83 {
84         _display.set_size_request (100, -1);
85         _display.set_rules_hint (true);
86         _display.set_name ("EditGroupList");
87         _display.set_fixed_height_mode (true);
88
89         /* Try to prevent single mouse presses from initiating edits.
90            This relies on a hack in gtktreeview.c:gtk_treeview_button_press()
91         */
92         _display.set_data ("mouse-edits-require-mod1", (gpointer) 0x1);
93
94         _model = TreeStore::create (_columns);
95         _model->set_sort_func (0, sigc::mem_fun (*this, &EditorRegions::sorter));
96         _model->set_sort_column (0, SORT_ASCENDING);
97
98         /* column widths */
99         int bbt_width, sync_width, check_width, height;
100
101         Glib::RefPtr<Pango::Layout> layout = _display.create_pango_layout (X_("000|000|000"));
102         Gtkmm2ext::get_pixel_size (layout, bbt_width, height);
103
104         layout = _display.create_pango_layout (X_("Start "));
105         Gtkmm2ext::get_pixel_size (layout, sync_width, height);
106
107         check_width = 20;
108
109         TreeViewColumn* col_name = manage (new TreeViewColumn ("", _columns.name));
110         col_name->set_fixed_width (120);
111         col_name->set_sizing (TREE_VIEW_COLUMN_FIXED);
112         TreeViewColumn* col_position = manage (new TreeViewColumn ("", _columns.position));
113         col_position->set_fixed_width (bbt_width);
114         col_position->set_sizing (TREE_VIEW_COLUMN_FIXED);
115         TreeViewColumn* col_end = manage (new TreeViewColumn ("", _columns.end));
116         col_end->set_fixed_width (bbt_width);
117         col_end->set_sizing (TREE_VIEW_COLUMN_FIXED);
118         TreeViewColumn* col_length = manage (new TreeViewColumn ("", _columns.length));
119         col_length->set_fixed_width (bbt_width);
120         col_length->set_sizing (TREE_VIEW_COLUMN_FIXED);
121         TreeViewColumn* col_sync = manage (new TreeViewColumn ("", _columns.sync));
122         col_sync->set_fixed_width (sync_width);
123         col_sync->set_sizing (TREE_VIEW_COLUMN_FIXED);
124         TreeViewColumn* col_fadein = manage (new TreeViewColumn ("", _columns.fadein));
125         col_fadein->set_fixed_width (bbt_width);
126         col_fadein->set_sizing (TREE_VIEW_COLUMN_FIXED);
127         TreeViewColumn* col_fadeout = manage (new TreeViewColumn ("", _columns.fadeout));
128         col_fadeout->set_fixed_width (bbt_width);
129         col_fadeout->set_sizing (TREE_VIEW_COLUMN_FIXED);
130         TreeViewColumn* col_locked = manage (new TreeViewColumn ("", _columns.locked));
131         col_locked->set_fixed_width (check_width);
132         col_locked->set_sizing (TREE_VIEW_COLUMN_FIXED);
133         TreeViewColumn* col_glued = manage (new TreeViewColumn ("", _columns.glued));
134         col_glued->set_fixed_width (check_width);
135         col_glued->set_sizing (TREE_VIEW_COLUMN_FIXED);
136         TreeViewColumn* col_muted = manage (new TreeViewColumn ("", _columns.muted));
137         col_muted->set_fixed_width (check_width);
138         col_muted->set_sizing (TREE_VIEW_COLUMN_FIXED);
139         TreeViewColumn* col_opaque = manage (new TreeViewColumn ("", _columns.opaque));
140         col_opaque->set_fixed_width (check_width);
141         col_opaque->set_sizing (TREE_VIEW_COLUMN_FIXED);
142
143         _display.append_column (*col_name);
144         _display.append_column (*col_position);
145         _display.append_column (*col_end);
146         _display.append_column (*col_length);
147         _display.append_column (*col_sync);
148         _display.append_column (*col_fadein);
149         _display.append_column (*col_fadeout);
150         _display.append_column (*col_locked);
151         _display.append_column (*col_glued);
152         _display.append_column (*col_muted);
153         _display.append_column (*col_opaque);
154
155         TreeViewColumn* col;
156         Gtk::Label* l;
157
158         ColumnInfo ci[] = {
159                 { 0,   _("Region"),    _("Region name, with number of channels in []'s") },
160                 { 1,   _("Position"),  _("Position of start of region") },
161                 { 2,   _("End"),       _("Position of end of region") },
162                 { 3,   _("Length"),    _("Length of the region") },
163                 { 4,   _("Sync"),      _("Position of region sync point, relative to start of the region") },
164                 { 5,   _("Fade In"),   _("Length of region fade-in (units: secondary clock), () if disabled") },
165                 { 6,   _("Fade Out"),  _("Length of region fade-out (units: secondary clock), () if disabled") },
166                 { 7,  S_("Lock|L"),    _("Region position locked?") },
167                 { 8,  S_("Gain|G"),    _("Region position glued to Bars|Beats time?") },
168                 { 9,  S_("Mute|M"),    _("Region muted?") },
169                 { 10, S_("Opaque|O"),  _("Region opaque (blocks regions below it from being heard)?") },
170                 { -1, 0, 0 }
171         };
172
173         for (int i = 0; ci[i].index >= 0; ++i) {
174                 col = _display.get_column (ci[i].index);
175                 l = manage (new Label (ci[i].label));
176                 set_tooltip (*l, ci[i].tooltip);
177                 col->set_widget (*l);
178                 l->show ();
179
180                 if (ci[i].index > 6) {
181                         col->set_expand (false);
182                         col->set_alignment (ALIGN_CENTER);
183                 }
184         }
185         _display.set_model (_model);
186
187         _display.set_headers_visible (true);
188         _display.set_rules_hint ();
189
190         /* show path as the row tooltip */
191         _display.set_tooltip_column (14); /* path */
192
193         CellRendererText* region_name_cell = dynamic_cast<CellRendererText*>(_display.get_column_cell_renderer (0));
194         region_name_cell->property_editable() = true;
195         region_name_cell->signal_edited().connect (sigc::mem_fun (*this, &EditorRegions::name_edit));
196         region_name_cell->signal_editing_started().connect (sigc::mem_fun (*this, &EditorRegions::name_editing_started));
197
198         _display.get_selection()->set_select_function (sigc::mem_fun (*this, &EditorRegions::selection_filter));
199
200         TreeViewColumn* tv_col = _display.get_column(0);
201         CellRendererText* renderer = dynamic_cast<CellRendererText*>(_display.get_column_cell_renderer (0));
202         tv_col->add_attribute(renderer->property_text(), _columns.name);
203         tv_col->add_attribute(renderer->property_foreground_gdk(), _columns.color_);
204         tv_col->set_expand (true);
205
206         CellRendererToggle* locked_cell = dynamic_cast<CellRendererToggle*> (_display.get_column_cell_renderer (7));
207         locked_cell->property_activatable() = true;
208         locked_cell->signal_toggled().connect (sigc::mem_fun (*this, &EditorRegions::locked_changed));
209
210         TreeViewColumn* locked_col = _display.get_column (7);
211         locked_col->add_attribute (locked_cell->property_visible(), _columns.property_toggles_visible);
212
213         CellRendererToggle* glued_cell = dynamic_cast<CellRendererToggle*> (_display.get_column_cell_renderer (8));
214         glued_cell->property_activatable() = true;
215         glued_cell->signal_toggled().connect (sigc::mem_fun (*this, &EditorRegions::glued_changed));
216
217         TreeViewColumn* glued_col = _display.get_column (8);
218         glued_col->add_attribute (glued_cell->property_visible(), _columns.property_toggles_visible);
219
220         CellRendererToggle* muted_cell = dynamic_cast<CellRendererToggle*> (_display.get_column_cell_renderer (9));
221         muted_cell->property_activatable() = true;
222         muted_cell->signal_toggled().connect (sigc::mem_fun (*this, &EditorRegions::muted_changed));
223
224         TreeViewColumn* muted_col = _display.get_column (9);
225         muted_col->add_attribute (muted_cell->property_visible(), _columns.property_toggles_visible);
226
227         CellRendererToggle* opaque_cell = dynamic_cast<CellRendererToggle*> (_display.get_column_cell_renderer (10));
228         opaque_cell->property_activatable() = true;
229         opaque_cell->signal_toggled().connect (sigc::mem_fun (*this, &EditorRegions::opaque_changed));
230
231         TreeViewColumn* opaque_col = _display.get_column (10);
232         opaque_col->add_attribute (opaque_cell->property_visible(), _columns.property_toggles_visible);
233
234         _display.get_selection()->set_mode (SELECTION_MULTIPLE);
235         _display.add_object_drag (_columns.region.index(), "regions");
236         _display.set_drag_column (_columns.name.index());
237
238         /* setup DnD handling */
239
240         list<TargetEntry> region_list_target_table;
241
242         region_list_target_table.push_back (TargetEntry ("text/plain"));
243         region_list_target_table.push_back (TargetEntry ("text/uri-list"));
244         region_list_target_table.push_back (TargetEntry ("application/x-rootwin-drop"));
245
246         _display.add_drop_targets (region_list_target_table);
247         _display.signal_drag_data_received().connect (sigc::mem_fun(*this, &EditorRegions::drag_data_received));
248
249         _scroller.add (_display);
250         _scroller.set_policy (POLICY_AUTOMATIC, POLICY_AUTOMATIC);
251
252         _display.signal_button_press_event().connect (sigc::mem_fun(*this, &EditorRegions::button_press), false);
253         _change_connection = _display.get_selection()->signal_changed().connect (sigc::mem_fun(*this, &EditorRegions::selection_changed));
254
255         _scroller.signal_key_press_event().connect (sigc::mem_fun(*this, &EditorRegions::key_press), false);
256         _scroller.signal_focus_in_event().connect (sigc::mem_fun (*this, &EditorRegions::focus_in), false);
257         _scroller.signal_focus_out_event().connect (sigc::mem_fun (*this, &EditorRegions::focus_out));
258
259         _display.signal_enter_notify_event().connect (sigc::mem_fun (*this, &EditorRegions::enter_notify), false);
260         _display.signal_leave_notify_event().connect (sigc::mem_fun (*this, &EditorRegions::leave_notify), false);
261
262         // _display.signal_popup_menu().connect (sigc::bind (sigc::mem_fun (*this, &Editor::show__display_context_menu), 1, 0));
263
264         //ARDOUR_UI::instance()->secondary_clock.mode_changed.connect (sigc::mem_fun(*this, &Editor::redisplay_regions));
265         ARDOUR_UI::instance()->secondary_clock->mode_changed.connect (sigc::mem_fun(*this, &EditorRegions::update_all_rows));
266         ARDOUR::Region::RegionPropertyChanged.connect (region_property_connection, MISSING_INVALIDATOR, boost::bind (&EditorRegions::region_changed, this, _1, _2), gui_context());
267         ARDOUR::RegionFactory::CheckNewRegion.connect (check_new_region_connection, MISSING_INVALIDATOR, boost::bind (&EditorRegions::add_region, this, _1), gui_context());
268
269         e->EditorFreeze.connect (editor_freeze_connection, MISSING_INVALIDATOR, boost::bind (&EditorRegions::freeze_tree_model, this), gui_context());
270         e->EditorThaw.connect (editor_thaw_connection, MISSING_INVALIDATOR, boost::bind (&EditorRegions::thaw_tree_model, this), gui_context());
271 }
272
273 bool
274 EditorRegions::focus_in (GdkEventFocus*)
275 {
276         Window* win = dynamic_cast<Window*> (_scroller.get_toplevel ());
277
278         if (win) {
279                 old_focus = win->get_focus ();
280         } else {
281                 old_focus = 0;
282         }
283
284         name_editable = 0;
285
286         /* try to do nothing on focus in (doesn't work, hence selection_count nonsense) */
287         return true;
288 }
289
290 bool
291 EditorRegions::focus_out (GdkEventFocus*)
292 {
293         if (old_focus) {
294                 old_focus->grab_focus ();
295                 old_focus = 0;
296         }
297
298         name_editable = 0;
299
300         return false;
301 }
302
303 bool
304 EditorRegions::enter_notify (GdkEventCrossing*)
305 {
306         if (name_editable) {
307                 return true;
308         }
309
310         /* arm counter so that ::selection_filter() will deny selecting anything for the
311            next two attempts to change selection status.
312         */
313         _scroller.grab_focus ();
314         Keyboard::magic_widget_grab_focus ();
315         return false;
316 }
317
318 bool
319 EditorRegions::leave_notify (GdkEventCrossing*)
320 {
321         if (old_focus) {
322                 old_focus->grab_focus ();
323                 old_focus = 0;
324         }
325
326         Keyboard::magic_widget_drop_focus ();
327         return false;
328 }
329
330 void
331 EditorRegions::set_session (ARDOUR::Session* s)
332 {
333         SessionHandlePtr::set_session (s);
334         redisplay ();
335 }
336
337 void
338 EditorRegions::add_region (boost::shared_ptr<Region> region)
339 {
340         if (!region || !_session) {
341                 return;
342         }
343
344         string str;
345         TreeModel::Row row;
346         Gdk::Color c;
347         bool missing_source = boost::dynamic_pointer_cast<SilentFileSource>(region->source()) != NULL;
348
349         if (!_show_automatic_regions && region->automatic()) {
350                 return;
351         }
352
353         if (region->hidden()) {
354
355                 TreeModel::iterator iter = _model->get_iter ("0");
356                 TreeModel::Row parent;
357
358                 if (!iter) {
359                         parent = *(_model->append());
360                         parent[_columns.name] = _("Hidden");
361                         boost::shared_ptr<Region> proxy = parent[_columns.region];
362                         proxy.reset ();
363                 } else {
364                         string s = (*iter)[_columns.name];
365                         if (s != _("Hidden")) {
366                                 parent = *(_model->insert(iter));
367                                 parent[_columns.name] = _("Hidden");
368                                 boost::shared_ptr<Region> proxy = parent[_columns.region];
369                                 proxy.reset ();
370                         } else {
371                                 parent = *iter;
372                         }
373                 }
374
375                 row = *(_model->append (parent.children()));
376
377         } else if (region->whole_file()) {
378
379                 TreeModel::iterator i;
380                 TreeModel::Children rows = _model->children();
381
382                 for (i = rows.begin(); i != rows.end(); ++i) {
383                         boost::shared_ptr<Region> rr = (*i)[_columns.region];
384
385                         if (rr && region->region_list_equivalent (rr)) {
386                                 return;
387                         }
388                 }
389
390                 row = *(_model->append());
391
392                 if (missing_source) {
393                         // c.set_rgb(65535,0,0);     // FIXME: error color from style
394                         set_color_from_rgba (c, UIConfiguration::instance().color ("region list missing source"));
395
396                 } else if (region->automatic()){
397                         // c.set_rgb(0,65535,0);     // FIXME: error color from style
398                         set_color_from_rgba (c, UIConfiguration::instance().color ("region list automatic"));
399
400                 } else {
401                         set_color_from_rgba (c, UIConfiguration::instance().color ("region list whole file"));
402                 }
403
404                 row[_columns.color_] = c;
405
406                 if (region->source()->name()[0] == '/') { // external file
407
408                         if (region->whole_file()) {
409
410                                 boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(region->source());
411                                 str = ".../";
412
413                                 if (afs) {
414                                         str = region_name_from_path (afs->path(), region->n_channels() > 1);
415                                 } else {
416                                         str += region->source()->name();
417                                 }
418
419                         } else {
420                                 str = region->name();
421                         }
422
423                 } else {
424                         str = region->name();
425                 }
426
427                 populate_row_name (region, row);
428                 row[_columns.region] = region;
429                 row[_columns.property_toggles_visible] = false;
430
431                 if (missing_source) {
432                         row[_columns.path] = _("(MISSING) ") + Gtkmm2ext::markup_escape_text (region->source()->name());
433
434                 } else {
435                         boost::shared_ptr<FileSource> fs = boost::dynamic_pointer_cast<FileSource>(region->source());
436                         if (fs) {
437                                 row[_columns.path] = Gtkmm2ext::markup_escape_text (fs->path());
438                         } else {
439                                 row[_columns.path] = Gtkmm2ext::markup_escape_text (region->source()->name());
440                         }
441                 }
442
443                 region_row_map.insert(pair<boost::shared_ptr<ARDOUR::Region>, Gtk::TreeModel::RowReference>(region, TreeRowReference(_model, TreePath (row))) );
444                 parent_regions_sources_map.insert(pair<string, Gtk::TreeModel::RowReference>(region->source_string(), TreeRowReference(_model, TreePath (row))) );
445
446                 return;
447
448         } else {
449                 // find parent node, add as new child
450                 TreeModel::iterator i;
451
452                 boost::unordered_map<string, Gtk::TreeModel::RowReference>::iterator it;
453
454                 it = parent_regions_sources_map.find (region->source_string());
455
456                 if (it != parent_regions_sources_map.end()){
457
458                         TreeModel::iterator j = _model->get_iter ((*it).second.get_path());
459
460                         TreeModel::iterator ii;
461                         TreeModel::Children subrows = (*j).children();
462
463                         /* XXXX: should we be accounting for all regions? */
464                         /*
465                         for (ii = subrows.begin(); ii != subrows.end(); ++ii) {
466                                 boost::shared_ptr<Region> rr = (*ii)[_columns.region];
467
468                                 if (region->region_list_equivalent (rr)) {
469                                         return;
470                                 }
471                         }
472                         */
473
474                         row = *(_model->insert (subrows.end()));
475
476                 } else {
477                         row = *(_model->append());
478                 }
479
480                 row[_columns.property_toggles_visible] = true;
481         }
482
483         row[_columns.region] = region;
484
485         region_row_map.insert(pair<boost::shared_ptr<ARDOUR::Region>, Gtk::TreeModel::RowReference>(region, TreeRowReference(_model, TreePath (row))) );
486
487         populate_row(region, (*row));
488 }
489
490 void
491 EditorRegions::remove_unused_regions ()
492 {
493         vector<string> choices;
494         string prompt;
495
496         if (!_session) {
497                 return;
498         }
499
500         prompt  = _("Do you really want to remove unused regions?"
501                     "\n(This is destructive and cannot be undone)");
502
503         choices.push_back (_("No, do nothing."));
504         choices.push_back (_("Yes, remove."));
505
506         Gtkmm2ext::Choice prompter (_("Remove unused regions"), prompt, choices);
507
508         if (prompter.run () == 1) {
509                 _no_redisplay = true;
510                 _session->cleanup_regions ();
511                 _no_redisplay = false;
512                 redisplay ();
513         }
514 }
515
516 void
517 EditorRegions::region_changed (boost::shared_ptr<Region> r, const PropertyChange& what_changed)
518 {
519         PropertyChange our_interests;
520
521         our_interests.add (ARDOUR::Properties::name);
522         our_interests.add (ARDOUR::Properties::position);
523         our_interests.add (ARDOUR::Properties::length);
524         our_interests.add (ARDOUR::Properties::start);
525         our_interests.add (ARDOUR::Properties::locked);
526         our_interests.add (ARDOUR::Properties::position_lock_style);
527         our_interests.add (ARDOUR::Properties::muted);
528         our_interests.add (ARDOUR::Properties::opaque);
529         our_interests.add (ARDOUR::Properties::fade_in);
530         our_interests.add (ARDOUR::Properties::fade_out);
531         our_interests.add (ARDOUR::Properties::fade_in_active);
532         our_interests.add (ARDOUR::Properties::fade_out_active);
533
534         if (what_changed.contains (our_interests)) {
535
536                 if (last_row != 0) {
537
538                         TreeModel::iterator j = _model->get_iter (last_row.get_path());
539                         boost::shared_ptr<Region> c = (*j)[_columns.region];
540
541                         if (c == r) {
542                                 populate_row (r, (*j));
543
544                                 if (what_changed.contains (ARDOUR::Properties::hidden)) {
545                                         redisplay ();
546                                 }
547
548                                 return;
549                         }
550                 }
551
552                 RegionRowMap::iterator it;
553
554                 it = region_row_map.find (r);
555
556                 if (it != region_row_map.end()){
557
558                         TreeModel::iterator j = _model->get_iter ((*it).second.get_path());
559                         boost::shared_ptr<Region> c = (*j)[_columns.region];
560
561                         if (c == r) {
562                                 populate_row (r, (*j));
563
564                                 if (what_changed.contains (ARDOUR::Properties::hidden)) {
565                                         redisplay ();
566                                 }
567
568                                 return;
569                         }
570                 }
571         }
572
573         if (what_changed.contains (ARDOUR::Properties::hidden)) {
574                 redisplay ();
575         }
576 }
577
578 void
579 EditorRegions::selection_changed ()
580 {
581         if (ignore_region_list_selection_change) {
582                 return;
583         }
584
585         _editor->_region_selection_change_updates_region_list = false;
586
587         if (_display.get_selection()->count_selected_rows() > 0) {
588
589                 TreeIter iter;
590                 TreeView::Selection::ListHandle_Path rows = _display.get_selection()->get_selected_rows ();
591
592                 _editor->get_selection().clear_regions ();
593
594                 for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) {
595
596                         if ((iter = _model->get_iter (*i))) {
597
598                                 boost::shared_ptr<Region> region = (*iter)[_columns.region];
599
600                                 // they could have clicked on a row that is just a placeholder, like "Hidden"
601                                 // although that is not allowed by our selection filter. check it anyway
602                                 // since we need a region ptr.
603
604                                 if (region) {
605
606                                         _change_connection.block (true);
607                                         _editor->set_selected_regionview_from_region_list (region, Selection::Add);
608                                         _change_connection.block (false);
609                                 }
610                         }
611
612                 }
613         } else {
614                 _editor->get_selection().clear_regions ();
615         }
616
617         _editor->_region_selection_change_updates_region_list = true;
618 }
619
620 void
621 EditorRegions::set_selected (RegionSelection& regions)
622 {
623         for (RegionSelection::iterator i = regions.begin(); i != regions.end(); ++i) {
624
625                 boost::shared_ptr<Region> r ((*i)->region());
626
627                 RegionRowMap::iterator it;
628
629                 it = region_row_map.find (r);
630
631                 if (it != region_row_map.end()){
632                         TreeModel::iterator j = _model->get_iter ((*it).second.get_path());
633                         _display.get_selection()->select(*j);
634                 }
635         }
636 }
637
638 void
639 EditorRegions::redisplay ()
640 {
641         if (_no_redisplay || !_session) {
642                 return;
643         }
644
645         bool tree_expanded = false;
646
647         /* If the list was expanded prior to rebuilding, expand it again afterwards */
648         if (toggle_full_action()->get_active()) {
649                 tree_expanded = true;
650         }
651
652         _display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
653         _model->clear ();
654         _model->set_sort_column (-2, SORT_ASCENDING); //Disable sorting to gain performance
655
656
657         region_row_map.clear();
658         parent_regions_sources_map.clear();
659
660         /* now add everything we have, via a temporary list used to help with sorting */
661
662         const RegionFactory::RegionMap& regions (RegionFactory::regions());
663
664         for (RegionFactory::RegionMap::const_iterator i = regions.begin(); i != regions.end(); ++i) {
665
666                 if ( i->second->whole_file()) {
667                         /* add automatic regions first so that children can find their parents as we add them */
668                         add_region (i->second);
669                         continue;
670                 }
671
672                 tmp_region_list.push_front (i->second);
673         }
674
675         for (list<boost::shared_ptr<Region> >::iterator r = tmp_region_list.begin(); r != tmp_region_list.end(); ++r) {
676                 add_region (*r);
677         }
678
679         _model->set_sort_column (0, SORT_ASCENDING); // renabale sorting
680         _display.set_model (_model);
681
682         tmp_region_list.clear();
683
684         if (tree_expanded) {
685                 _display.expand_all();
686         }
687 }
688
689 void
690 EditorRegions::update_row (boost::shared_ptr<Region> region)
691 {
692         if (!region || !_session) {
693                 return;
694         }
695
696         RegionRowMap::iterator it;
697
698         it = region_row_map.find (region);
699
700         if (it != region_row_map.end()){
701
702                 TreeModel::iterator j = _model->get_iter ((*it).second.get_path());
703                 populate_row(region, (*j));
704         }
705 }
706
707 void
708 EditorRegions::update_all_rows ()
709 {
710         if (!_session) {
711                 return;
712         }
713
714         RegionRowMap::iterator i;
715
716         for (i = region_row_map.begin(); i != region_row_map.end(); ++i) {
717
718                 TreeModel::iterator j = _model->get_iter ((*i).second.get_path());
719
720                 boost::shared_ptr<Region> region = (*j)[_columns.region];
721
722                 if (!region->automatic()) {
723                         populate_row(region, (*j));
724                 }
725         }
726 }
727
728 void
729 EditorRegions::format_position (framepos_t pos, char* buf, size_t bufsize, bool onoff)
730 {
731         Timecode::BBT_Time bbt;
732         Timecode::Time timecode;
733
734         if (pos < 0) {
735                 error << string_compose (_("EditorRegions::format_position: negative timecode position: %1"), pos) << endmsg;
736                 snprintf (buf, bufsize, "invalid");
737                 return;
738         }
739
740         switch (ARDOUR_UI::instance()->secondary_clock->mode ()) {
741         case AudioClock::BBT:
742                 bbt = _session->tempo_map().bbt_at_frame (pos);
743                 if (onoff) {
744                         snprintf (buf, bufsize, "%03d|%02d|%04d" , bbt.bars, bbt.beats, bbt.ticks);
745                 } else {
746                         snprintf (buf, bufsize, "(%03d|%02d|%04d)" , bbt.bars, bbt.beats, bbt.ticks);
747                 }
748                 break;
749
750         case AudioClock::MinSec:
751                 framepos_t left;
752                 int hrs;
753                 int mins;
754                 float secs;
755
756                 left = pos;
757                 hrs = (int) floor (left / (_session->frame_rate() * 60.0f * 60.0f));
758                 left -= (framecnt_t) floor (hrs * _session->frame_rate() * 60.0f * 60.0f);
759                 mins = (int) floor (left / (_session->frame_rate() * 60.0f));
760                 left -= (framecnt_t) floor (mins * _session->frame_rate() * 60.0f);
761                 secs = left / (float) _session->frame_rate();
762                 if (onoff) {
763                         snprintf (buf, bufsize, "%02d:%02d:%06.3f", hrs, mins, secs);
764                 } else {
765                         snprintf (buf, bufsize, "(%02d:%02d:%06.3f)", hrs, mins, secs);
766                 }
767                 break;
768
769         case AudioClock::Frames:
770                 if (onoff) {
771                         snprintf (buf, bufsize, "%" PRId64, pos);
772                 } else {
773                         snprintf (buf, bufsize, "(%" PRId64 ")", pos);
774                 }
775                 break;
776
777         case AudioClock::Timecode:
778         default:
779                 _session->timecode_time (pos, timecode);
780                 if (onoff) {
781                         snprintf (buf, bufsize, "%02d:%02d:%02d:%02d", timecode.hours, timecode.minutes, timecode.seconds, timecode.frames);
782                 } else {
783                         snprintf (buf, bufsize, "(%02d:%02d:%02d:%02d)", timecode.hours, timecode.minutes, timecode.seconds, timecode.frames);
784                 }
785                 break;
786         }
787 }
788
789 void
790 EditorRegions::populate_row (boost::shared_ptr<Region> region, TreeModel::Row const &row)
791 {
792         boost::shared_ptr<AudioRegion> audioregion = boost::dynamic_pointer_cast<AudioRegion>(region);
793         //uint32_t used = _session->playlists->region_use_count (region);
794         /* Presently a region is only used once so let's save on the sequential scan to determine use count */
795         uint32_t used = 1;
796
797         populate_row_position (region, row, used);
798         populate_row_end (region, row, used);
799         populate_row_sync (region, row, used);
800         populate_row_fade_in (region, row, used, audioregion);
801         populate_row_fade_out (region, row, used, audioregion);
802         populate_row_locked (region, row, used);
803         populate_row_glued (region, row, used);
804         populate_row_muted (region, row, used);
805         populate_row_opaque (region, row, used);
806         populate_row_length (region, row);
807         populate_row_source (region, row);
808         populate_row_name (region, row);
809         populate_row_used (region, row, used);
810 }
811
812 #if 0
813         if (audioRegion && fades_in_seconds) {
814
815                 framepos_t left;
816                 int mins;
817                 int millisecs;
818
819                 left = audioRegion->fade_in()->back()->when;
820                 mins = (int) floor (left / (_session->frame_rate() * 60.0f));
821                 left -= (framepos_t) floor (mins * _session->frame_rate() * 60.0f);
822                 millisecs = (int) floor ((left * 1000.0f) / _session->frame_rate());
823
824                 if (audioRegion->fade_in()->back()->when >= _session->frame_rate()) {
825                         sprintf (fadein_str, "%01dM %01dmS", mins, millisecs);
826                 } else {
827                         sprintf (fadein_str, "%01dmS", millisecs);
828                 }
829
830                 left = audioRegion->fade_out()->back()->when;
831                 mins = (int) floor (left / (_session->frame_rate() * 60.0f));
832                 left -= (framepos_t) floor (mins * _session->frame_rate() * 60.0f);
833                 millisecs = (int) floor ((left * 1000.0f) / _session->frame_rate());
834
835                 if (audioRegion->fade_out()->back()->when >= _session->frame_rate()) {
836                         sprintf (fadeout_str, "%01dM %01dmS", mins, millisecs);
837                 } else {
838                         sprintf (fadeout_str, "%01dmS", millisecs);
839                 }
840         }
841 #endif
842
843 void
844 EditorRegions::populate_row_used (boost::shared_ptr<Region>, TreeModel::Row const& row, uint32_t used)
845 {
846         char buf[8];
847         snprintf (buf, sizeof (buf), "%4d" , used);
848         row[_columns.used] = buf;
849 }
850
851 void
852 EditorRegions::populate_row_length (boost::shared_ptr<Region> region, TreeModel::Row const &row)
853 {
854         char buf[16];
855
856         if (ARDOUR_UI::instance()->secondary_clock->mode () == AudioClock::BBT) {
857                 TempoMap& map (_session->tempo_map());
858                 Timecode::BBT_Time bbt = map.bbt_at_beat (map.beat_at_frame (region->last_frame()) - map.beat_at_frame (region->first_frame()));
859                 snprintf (buf, sizeof (buf), "%03d|%02d|%04d" , bbt.bars, bbt.beats, bbt.ticks);
860         } else {
861                 format_position (region->length(), buf, sizeof (buf));
862         }
863
864         row[_columns.length] = buf;
865 }
866
867 void
868 EditorRegions::populate_row_end (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
869 {
870         if (region->whole_file()) {
871                 row[_columns.end] = "";
872         } else if (used > 1) {
873                 row[_columns.end] = _("Mult.");
874         } else if (region->last_frame() >= region->first_frame()) {
875                 char buf[16];
876                 format_position (region->last_frame(), buf, sizeof (buf));
877                 row[_columns.end] = buf;
878         } else {
879                 row[_columns.end] = "empty";
880         }
881 }
882
883 void
884 EditorRegions::populate_row_position (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
885 {
886         if (region->whole_file()) {
887                 row[_columns.position] = "";
888         } else if (used > 1) {
889                 row[_columns.position] = _("Mult.");
890         } else {
891                 char buf[16];
892                 format_position (region->position(), buf, sizeof (buf));
893                 row[_columns.position] = buf;
894         }
895 }
896
897 void
898 EditorRegions::populate_row_sync (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
899 {
900         if (region->whole_file()) {
901                 row[_columns.sync] = "";
902         } else if (used > 1) {
903                 row[_columns.sync] = _("Mult."); /* translators: a short phrase for "multiple" as in "many" */
904         } else {
905                 if (region->sync_position() == region->position()) {
906                         row[_columns.sync] = _("Start");
907                 } else if (region->sync_position() == (region->last_frame())) {
908                         row[_columns.sync] = _("End");
909                 } else {
910                         char buf[16];
911                         format_position (region->sync_position(), buf, sizeof (buf));
912                         row[_columns.sync] = buf;
913                 }
914         }
915 }
916
917 void
918 EditorRegions::populate_row_fade_in (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used, boost::shared_ptr<AudioRegion> audioregion)
919 {
920         if (!audioregion || region->whole_file()) {
921                 row[_columns.fadein] = "";
922         } else {
923                 if (used > 1) {
924                         row[_columns.fadein] = _("Multiple");
925                 } else {
926                         char buf[32];
927                         format_position (audioregion->fade_in()->back()->when, buf, sizeof (buf), audioregion->fade_in_active());
928                         row[_columns.fadein] = buf;
929                 }
930         }
931 }
932
933 void
934 EditorRegions::populate_row_fade_out (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used, boost::shared_ptr<AudioRegion> audioregion)
935 {
936         if (!audioregion || region->whole_file()) {
937                 row[_columns.fadeout] = "";
938         } else {
939                 if (used > 1) {
940                         row[_columns.fadeout] = _("Multiple");
941                 } else {
942                         char buf[32];
943                         format_position (audioregion->fade_out()->back()->when, buf, sizeof (buf), audioregion->fade_out_active());
944                         row[_columns.fadeout] = buf;
945                 }
946         }
947 }
948
949 void
950 EditorRegions::populate_row_locked (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
951 {
952         if (region->whole_file()) {
953                 row[_columns.locked] = false;
954         } else if (used > 1) {
955                 row[_columns.locked] = false;
956         } else {
957                 row[_columns.locked] = region->locked();
958         }
959 }
960
961 void
962 EditorRegions::populate_row_glued (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
963 {
964         if (region->whole_file() || used > 1) {
965                 row[_columns.glued] = false;
966         } else {
967                 if (region->position_lock_style() == MusicTime) {
968                         row[_columns.glued] = true;
969                 } else {
970                         row[_columns.glued] = false;
971                 }
972         }
973 }
974
975 void
976 EditorRegions::populate_row_muted (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
977 {
978         if (region->whole_file() || used > 1) {
979                 row[_columns.muted] = false;
980         } else {
981                 row[_columns.muted] = region->muted();
982         }
983 }
984
985 void
986 EditorRegions::populate_row_opaque (boost::shared_ptr<Region> region, TreeModel::Row const &row, uint32_t used)
987 {
988         if (region->whole_file() || used > 1) {
989                 row[_columns.opaque] = false;
990         } else {
991                 row[_columns.opaque] = region->opaque();
992         }
993 }
994
995 void
996 EditorRegions::populate_row_name (boost::shared_ptr<Region> region, TreeModel::Row const &row)
997 {
998         if (region->n_channels() > 1) {
999                 row[_columns.name] = string_compose("%1  [%2]", Gtkmm2ext::markup_escape_text (region->name()), region->n_channels());
1000         } else {
1001                 row[_columns.name] = Gtkmm2ext::markup_escape_text (region->name());
1002         }
1003 }
1004
1005 void
1006 EditorRegions::populate_row_source (boost::shared_ptr<Region> region, TreeModel::Row const &row)
1007 {
1008         if (boost::dynamic_pointer_cast<SilentFileSource>(region->source())) {
1009                 row[_columns.path] = _("MISSING ") + Gtkmm2ext::markup_escape_text (region->source()->name());
1010         } else {
1011                 row[_columns.path] = Gtkmm2ext::markup_escape_text (region->source()->name());
1012         }
1013 }
1014
1015 void
1016 EditorRegions::toggle_show_auto_regions ()
1017 {
1018         _show_automatic_regions = toggle_show_auto_regions_action()->get_active();
1019         redisplay ();
1020 }
1021
1022 void
1023 EditorRegions::toggle_full ()
1024 {
1025         set_full (toggle_full_action()->get_active ());
1026 }
1027
1028 void
1029 EditorRegions::set_full (bool f)
1030 {
1031         if (f) {
1032                 _display.expand_all ();
1033                 expanded = true;
1034         } else {
1035                 _display.collapse_all ();
1036                 expanded = false;
1037         }
1038 }
1039
1040 void
1041 EditorRegions::show_context_menu (int button, int time)
1042 {
1043         if (_menu == 0) {
1044                 _menu = dynamic_cast<Menu*> (ActionManager::get_widget ("/RegionListMenu"));
1045         }
1046
1047         if (_display.get_selection()->count_selected_rows() > 0) {
1048                 ActionManager::set_sensitive (ActionManager::region_list_selection_sensitive_actions, true);
1049         } else {
1050                 ActionManager::set_sensitive (ActionManager::region_list_selection_sensitive_actions, false);
1051         }
1052
1053         /* Enable the "Show" option if any selected regions are hidden, and vice versa for "Hide" */
1054
1055         bool have_shown = false;
1056         bool have_hidden = false;
1057
1058         TreeView::Selection::ListHandle_Path rows = _display.get_selection()->get_selected_rows ();
1059         for (TreeView::Selection::ListHandle_Path::iterator i = rows.begin(); i != rows.end(); ++i) {
1060                 TreeIter t = _model->get_iter (*i);
1061                 boost::shared_ptr<Region> r = (*t)[_columns.region];
1062                 if (r) {
1063                         if (r->hidden ()) {
1064                                 have_hidden = true;
1065                         } else {
1066                                 have_shown = true;
1067                         }
1068                 }
1069         }
1070
1071         hide_action()->set_sensitive (have_shown);
1072         show_action()->set_sensitive (have_hidden);
1073
1074         _menu->popup (button, time);
1075 }
1076
1077 bool
1078 EditorRegions::key_press (GdkEventKey* ev)
1079 {
1080         TreeViewColumn *col;
1081
1082         switch (ev->keyval) {
1083         case GDK_Tab:
1084         case GDK_ISO_Left_Tab:
1085
1086                 if (name_editable) {
1087                         name_editable->editing_done ();
1088                         name_editable = 0;
1089                 }
1090
1091                 col = _display.get_column (0); // select&focus on name column
1092
1093                 if (Keyboard::modifier_state_equals (ev->state, Keyboard::TertiaryModifier)) {
1094                         treeview_select_previous (_display, _model, col);
1095                 } else {
1096                         treeview_select_next (_display, _model, col);
1097                 }
1098
1099                 return true;
1100                 break;
1101
1102         default:
1103                 break;
1104         }
1105
1106         return false;
1107 }
1108
1109 bool
1110 EditorRegions::button_press (GdkEventButton *ev)
1111 {
1112         boost::shared_ptr<Region> region;
1113         TreeIter iter;
1114         TreeModel::Path path;
1115         TreeViewColumn* column;
1116         int cellx;
1117         int celly;
1118
1119         if (_display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly)) {
1120                 if ((iter = _model->get_iter (path))) {
1121                         region = (*iter)[_columns.region];
1122                 }
1123         }
1124
1125         if (Keyboard::is_context_menu_event (ev)) {
1126                 show_context_menu (ev->button, ev->time);
1127                 return false;
1128         }
1129
1130         if (region != 0 && Keyboard::is_button2_event (ev)) {
1131                 // start/stop audition
1132                 if (!Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
1133                         _editor->consider_auditioning (region);
1134                 }
1135                 return true;
1136         }
1137
1138         return false;
1139 }
1140
1141 int
1142 EditorRegions::sorter (TreeModel::iterator a, TreeModel::iterator b)
1143 {
1144         int cmp = 0;
1145
1146         boost::shared_ptr<Region> r1 = (*a)[_columns.region];
1147         boost::shared_ptr<Region> r2 = (*b)[_columns.region];
1148
1149         /* handle rows without regions, like "Hidden" */
1150
1151         if (r1 == 0) {
1152                 return -1;
1153         }
1154
1155         if (r2 == 0) {
1156                 return 1;
1157         }
1158
1159         boost::shared_ptr<AudioRegion> region1 = boost::dynamic_pointer_cast<AudioRegion> (r1);
1160         boost::shared_ptr<AudioRegion> region2 = boost::dynamic_pointer_cast<AudioRegion> (r2);
1161
1162         if (region1 == 0 || region2 == 0) {
1163                 std::string s1;
1164                 std::string s2;
1165                 switch (_sort_type) {
1166                 case ByName:
1167                         s1 = (*a)[_columns.name];
1168                         s2 = (*b)[_columns.name];
1169                         return (s1.compare (s2));
1170                 default:
1171                         return 0;
1172                 }
1173         }
1174
1175         switch (_sort_type) {
1176         case ByName:
1177                 cmp = region1->name().compare(region2->name());
1178                 break;
1179
1180         case ByLength:
1181                 cmp = region1->length() - region2->length();
1182                 break;
1183
1184         case ByPosition:
1185                 cmp = region1->position() - region2->position();
1186                 break;
1187
1188         case ByTimestamp:
1189                 cmp = region1->source()->timestamp() - region2->source()->timestamp();
1190                 break;
1191
1192         case ByStartInFile:
1193                 cmp = region1->start() - region2->start();
1194                 break;
1195
1196         case ByEndInFile:
1197                 // cerr << "Compare " << (region1->start() + region1->length()) << " and " << (region2->start() + region2->length()) << endl;
1198                 cmp = (region1->start() + region1->length()) - (region2->start() + region2->length());
1199                 break;
1200
1201         case BySourceFileName:
1202                 cmp = region1->source()->name().compare(region2->source()->name());
1203                 break;
1204
1205         case BySourceFileLength:
1206                 cmp = region1->source_length(0) - region2->source_length(0);
1207                 break;
1208
1209         case BySourceFileCreationDate:
1210                 cmp = region1->source()->timestamp() - region2->source()->timestamp();
1211                 break;
1212
1213         case BySourceFileFS:
1214                 if (region1->source()->name() == region2->source()->name()) {
1215                         cmp = region1->name().compare(region2->name());
1216                 } else {
1217                         cmp = region1->source()->name().compare(region2->source()->name());
1218                 }
1219                 break;
1220         }
1221
1222         // cerr << "Comparison on " << enum_2_string (_sort_type) << " gives " << cmp << endl;
1223
1224         if (cmp < 0) {
1225                 return -1;
1226         } else if (cmp > 0) {
1227                 return 1;
1228         } else {
1229                 return 0;
1230         }
1231 }
1232
1233 void
1234 EditorRegions::reset_sort_type (RegionListSortType type, bool force)
1235 {
1236         if (type != _sort_type || force) {
1237                 _sort_type = type;
1238                 _model->set_sort_func (0, (sigc::mem_fun (*this, &EditorRegions::sorter)));
1239         }
1240 }
1241
1242 void
1243 EditorRegions::reset_sort_direction (bool up)
1244 {
1245         _model->set_sort_column (0, up ? SORT_ASCENDING : SORT_DESCENDING);
1246 }
1247
1248 void
1249 EditorRegions::selection_mapover (sigc::slot<void,boost::shared_ptr<Region> > sl)
1250 {
1251         Glib::RefPtr<TreeSelection> selection = _display.get_selection();
1252         TreeView::Selection::ListHandle_Path rows = selection->get_selected_rows ();
1253         TreeView::Selection::ListHandle_Path::iterator i = rows.begin();
1254
1255         if (selection->count_selected_rows() == 0 || _session == 0) {
1256                 return;
1257         }
1258
1259         for (; i != rows.end(); ++i) {
1260                 TreeIter iter;
1261
1262                 if ((iter = _model->get_iter (*i))) {
1263
1264                         /* some rows don't have a region associated with them, but can still be
1265                            selected (XXX maybe prevent them from being selected)
1266                         */
1267
1268                         boost::shared_ptr<Region> r = (*iter)[_columns.region];
1269
1270                         if (r) {
1271                                 sl (r);
1272                         }
1273                 }
1274         }
1275 }
1276
1277
1278 void
1279 EditorRegions::drag_data_received (const RefPtr<Gdk::DragContext>& context,
1280                                    int x, int y,
1281                                    const SelectionData& data,
1282                                    guint info, guint time)
1283 {
1284         vector<string> paths;
1285
1286         if (data.get_target() == "GTK_TREE_MODEL_ROW") {
1287                 /* something is being dragged over the region list */
1288                 _editor->_drags->abort ();
1289                 _display.on_drag_data_received (context, x, y, data, info, time);
1290                 return;
1291         }
1292
1293         if (_editor->convert_drop_to_paths (paths, context, x, y, data, info, time) == 0) {
1294                 framepos_t pos = 0;
1295                 bool copy = ((context->get_actions() & (Gdk::ACTION_COPY | Gdk::ACTION_LINK | Gdk::ACTION_MOVE)) == Gdk::ACTION_COPY);
1296
1297                 if (UIConfiguration::instance().get_only_copy_imported_files() || copy) {
1298                         _editor->do_import (paths, Editing::ImportDistinctFiles, Editing::ImportAsRegion, SrcBest, pos);
1299                 } else {
1300                         _editor->do_embed (paths, Editing::ImportDistinctFiles, ImportAsRegion, pos);
1301                 }
1302                 context->drag_finish (true, false, time);
1303         }
1304 }
1305
1306 bool
1307 EditorRegions::selection_filter (const RefPtr<TreeModel>& model, const TreeModel::Path& path, bool already_selected)
1308 {
1309         /* not possible to select rows that do not represent regions, like "Hidden" */
1310
1311         if (already_selected) {
1312                 /* deselecting anything is OK with us */
1313                 return true;
1314         }
1315
1316         TreeModel::iterator iter = model->get_iter (path);
1317
1318         if (iter) {
1319                 boost::shared_ptr<Region> r =(*iter)[_columns.region];
1320                 if (!r) {
1321                         return false;
1322                 }
1323         }
1324
1325         return true;
1326 }
1327
1328 void
1329 EditorRegions::name_editing_started (CellEditable* ce, const Glib::ustring& path)
1330 {
1331         name_editable = ce;
1332
1333         /* give it a special name */
1334
1335         Gtk::Entry *e = dynamic_cast<Gtk::Entry*> (ce);
1336
1337         if (e) {
1338                 e->set_name (X_("RegionNameEditorEntry"));
1339
1340                 TreeIter iter;
1341                 if ((iter = _model->get_iter (path))) {
1342                         boost::shared_ptr<Region> region = (*iter)[_columns.region];
1343
1344                         if(region) {
1345                                 e->set_text(region->name());
1346                         }
1347                 }
1348         }
1349 }
1350
1351 void
1352 EditorRegions::name_edit (const std::string& path, const std::string& new_text)
1353 {
1354         name_editable = 0;
1355
1356         boost::shared_ptr<Region> region;
1357         TreeIter row_iter;
1358
1359         if ((row_iter = _model->get_iter (path))) {
1360                 region = (*row_iter)[_columns.region];
1361                 (*row_iter)[_columns.name] = new_text;
1362         }
1363
1364         /* now mapover everything */
1365
1366         if (region) {
1367                 vector<RegionView*> equivalents;
1368                 _editor->get_regions_corresponding_to (region, equivalents, false);
1369
1370                 for (vector<RegionView*>::iterator i = equivalents.begin(); i != equivalents.end(); ++i) {
1371                         if (new_text != (*i)->region()->name()) {
1372                                 (*i)->region()->set_name (new_text);
1373                         }
1374                 }
1375
1376                 populate_row_name (region, (*row_iter));
1377         }
1378 }
1379
1380 /** @return Region that has been dragged out of the list, or 0 */
1381 boost::shared_ptr<Region>
1382 EditorRegions::get_dragged_region ()
1383 {
1384         list<boost::shared_ptr<Region> > regions;
1385         TreeView* source;
1386         _display.get_object_drag_data (regions, &source);
1387
1388         if (regions.empty()) {
1389                 return boost::shared_ptr<Region> ();
1390         }
1391
1392         assert (regions.size() == 1);
1393         return regions.front ();
1394 }
1395
1396 void
1397 EditorRegions::clear ()
1398 {
1399         _display.set_model (Glib::RefPtr<Gtk::TreeStore> (0));
1400         _model->clear ();
1401         _display.set_model (_model);
1402
1403         /* Clean up the maps */
1404         region_row_map.clear();
1405         parent_regions_sources_map.clear();
1406 }
1407
1408 boost::shared_ptr<Region>
1409 EditorRegions::get_single_selection ()
1410 {
1411         Glib::RefPtr<TreeSelection> selected = _display.get_selection();
1412
1413         if (selected->count_selected_rows() != 1) {
1414                 return boost::shared_ptr<Region> ();
1415         }
1416
1417         TreeView::Selection::ListHandle_Path rows = selected->get_selected_rows ();
1418
1419         /* only one row selected, so rows.begin() is it */
1420
1421         TreeIter iter = _model->get_iter (*rows.begin());
1422
1423         if (!iter) {
1424                 return boost::shared_ptr<Region> ();
1425         }
1426
1427         return (*iter)[_columns.region];
1428 }
1429
1430 void
1431 EditorRegions::freeze_tree_model (){
1432
1433         _display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
1434         _model->set_sort_column (-2, SORT_ASCENDING); //Disable sorting to gain performance
1435
1436 }
1437
1438 void
1439 EditorRegions::thaw_tree_model (){
1440
1441         _model->set_sort_column (0, SORT_ASCENDING); // renabale sorting
1442         _display.set_model (_model);
1443
1444         if (toggle_full_action()->get_active()) {
1445                 _display.expand_all();
1446         }
1447 }
1448
1449 void
1450 EditorRegions::locked_changed (std::string const & path)
1451 {
1452         TreeIter i = _model->get_iter (path);
1453         if (i) {
1454                 boost::shared_ptr<ARDOUR::Region> region = (*i)[_columns.region];
1455                 if (region) {
1456                         region->set_locked (!(*i)[_columns.locked]);
1457                 }
1458         }
1459 }
1460
1461 void
1462 EditorRegions::glued_changed (std::string const & path)
1463 {
1464         TreeIter i = _model->get_iter (path);
1465         if (i) {
1466                 boost::shared_ptr<ARDOUR::Region> region = (*i)[_columns.region];
1467                 if (region) {
1468                         /* `glued' means MusicTime, and we're toggling here */
1469                         region->set_position_lock_style ((*i)[_columns.glued] ? AudioTime : MusicTime);
1470                 }
1471         }
1472
1473 }
1474
1475 void
1476 EditorRegions::muted_changed (std::string const & path)
1477 {
1478         TreeIter i = _model->get_iter (path);
1479         if (i) {
1480                 boost::shared_ptr<ARDOUR::Region> region = (*i)[_columns.region];
1481                 if (region) {
1482                         region->set_muted (!(*i)[_columns.muted]);
1483                 }
1484         }
1485
1486 }
1487
1488 void
1489 EditorRegions::opaque_changed (std::string const & path)
1490 {
1491         TreeIter i = _model->get_iter (path);
1492         if (i) {
1493                 boost::shared_ptr<ARDOUR::Region> region = (*i)[_columns.region];
1494                 if (region) {
1495                         region->set_opaque (!(*i)[_columns.opaque]);
1496                 }
1497         }
1498
1499 }
1500
1501 XMLNode &
1502 EditorRegions::get_state () const
1503 {
1504         XMLNode* node = new XMLNode (X_("RegionList"));
1505
1506         node->add_property (X_("sort-type"), enum_2_string (_sort_type));
1507
1508         RefPtr<Action> act = ActionManager::get_action (X_("RegionList"), X_("SortAscending"));
1509         bool const ascending = RefPtr<RadioAction>::cast_dynamic(act)->get_active ();
1510         node->add_property (X_("sort-ascending"), ascending ? "yes" : "no");
1511         node->add_property (X_("show-all"), toggle_full_action()->get_active() ? "yes" : "no");
1512         node->add_property (X_("show-automatic-regions"), _show_automatic_regions ? "yes" : "no");
1513
1514         return *node;
1515 }
1516
1517 void
1518 EditorRegions::set_state (const XMLNode & node)
1519 {
1520         bool changed = false;
1521
1522         if (node.name() != X_("RegionList")) {
1523                 return;
1524         }
1525
1526         XMLProperty const * p = node.property (X_("sort-type"));
1527
1528         if (p) {
1529                 Editing::RegionListSortType const t = static_cast<Editing::RegionListSortType> (string_2_enum (p->value(), _sort_type));
1530
1531                 if (_sort_type != t) {
1532                         changed = true;
1533                 }
1534
1535                 reset_sort_type (t, true);
1536                 RefPtr<RadioAction> ract = sort_type_action (t);
1537                 ract->set_active ();
1538         }
1539
1540         p = node.property (X_("sort-ascending"));
1541
1542         if (p) {
1543                 bool const yn = string_is_affirmative (p->value ());
1544                 SortType old_sort_type;
1545                 int old_sort_column;
1546
1547                 _model->get_sort_column_id (old_sort_column, old_sort_type);
1548
1549                 if (old_sort_type != (yn ? SORT_ASCENDING : SORT_DESCENDING)) {
1550                         changed = true;
1551                 }
1552
1553                 reset_sort_direction (yn);
1554                 RefPtr<Action> act;
1555
1556                 if (yn) {
1557                         act = ActionManager::get_action (X_("RegionList"), X_("SortAscending"));
1558                 } else {
1559                         act = ActionManager::get_action (X_("RegionList"), X_("SortDescending"));
1560                 }
1561
1562                 RefPtr<RadioAction>::cast_dynamic(act)->set_active ();
1563         }
1564
1565         p = node.property (X_("show-all"));
1566         if (p) {
1567                 bool const yn = string_is_affirmative (p->value ());
1568
1569                 if (expanded != yn) {
1570                         changed = true;
1571                 }
1572
1573                 set_full (yn);
1574                 toggle_full_action()->set_active (yn);
1575         }
1576
1577         p = node.property (X_("show-automatic-regions"));
1578         if (p) {
1579                 bool const yn = string_is_affirmative (p->value ());
1580
1581                 if (yn != _show_automatic_regions) {
1582                         _show_automatic_regions = yn;
1583                         toggle_show_auto_regions_action()->set_active (yn);
1584                         changed = true;
1585                 }
1586         }
1587
1588         if (changed) {
1589                 redisplay ();
1590         }
1591 }
1592
1593 RefPtr<RadioAction>
1594 EditorRegions::sort_type_action (Editing::RegionListSortType t) const
1595 {
1596         const char* action = 0;
1597
1598         switch (t) {
1599         case Editing::ByName:
1600                 action = X_("SortByRegionName");
1601                 break;
1602         case Editing::ByLength:
1603                 action = X_("SortByRegionLength");
1604                 break;
1605         case Editing::ByPosition:
1606                 action = X_("SortByRegionPosition");
1607                 break;
1608         case Editing::ByTimestamp:
1609                 action = X_("SortByRegionTimestamp");
1610                 break;
1611         case Editing::ByStartInFile:
1612                 action = X_("SortByRegionStartinFile");
1613                 break;
1614         case Editing::ByEndInFile:
1615                 action = X_("SortByRegionEndinFile");
1616                 break;
1617         case Editing::BySourceFileName:
1618                 action = X_("SortBySourceFileName");
1619                 break;
1620         case Editing::BySourceFileLength:
1621                 action = X_("SortBySourceFileLength");
1622                 break;
1623         case Editing::BySourceFileCreationDate:
1624                 action = X_("SortBySourceFileCreationDate");
1625                 break;
1626         case Editing::BySourceFileFS:
1627                 action = X_("SortBySourceFilesystem");
1628                 break;
1629         default:
1630                 fatal << string_compose (_("programming error: %1: %2"), "EditorRegions: impossible sort type", (int) t) << endmsg;
1631                 abort(); /*NOTREACHED*/
1632         }
1633
1634         RefPtr<Action> act = ActionManager::get_action (X_("RegionList"), action);
1635         assert (act);
1636
1637         return RefPtr<RadioAction>::cast_dynamic (act);
1638 }
1639
1640 RefPtr<Action>
1641 EditorRegions::hide_action () const
1642 {
1643         return ActionManager::get_action (X_("RegionList"), X_("rlHide"));
1644
1645 }
1646
1647 RefPtr<Action>
1648 EditorRegions::show_action () const
1649 {
1650         return ActionManager::get_action (X_("RegionList"), X_("rlShow"));
1651 }
1652
1653 RefPtr<Action>
1654 EditorRegions::remove_unused_regions_action () const
1655 {
1656         return ActionManager::get_action (X_("RegionList"), X_("removeUnusedRegions"));
1657 }
1658
1659 RefPtr<ToggleAction>
1660 EditorRegions::toggle_full_action () const
1661 {
1662         Glib::RefPtr<Action> act = ActionManager::get_action (X_("RegionList"), X_("rlShowAll"));
1663         assert (act);
1664         return Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1665 }
1666
1667 RefPtr<ToggleAction>
1668 EditorRegions::toggle_show_auto_regions_action () const
1669 {
1670         Glib::RefPtr<Action> act = ActionManager::get_action (X_("RegionList"), X_("rlShowAuto"));
1671         assert (act);
1672         return Glib::RefPtr<ToggleAction>::cast_dynamic (act);
1673 }