most of the 2.X->3.0 commit (up to rev 4299) except for gtk2_ardour/editor_canvas...
[ardour.git] / gtk2_ardour / editor_mixer.cc
1 /*
2     Copyright (C) 2003-2004 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 <glibmm/miscutils.h>
21 #include <gtkmm2ext/utils.h>
22 #include <gtkmm2ext/window_title.h>
23
24 #include <pbd/enumwriter.h>
25
26 #include <ardour/audioengine.h>
27
28 #include "editor.h"
29 #include "mixer_strip.h"
30 #include "ardour_ui.h"
31 #include "selection.h"
32 #include "audio_time_axis.h"
33 #include "actions.h"
34
35 #include "i18n.h"
36
37 using namespace Gtkmm2ext;
38 using namespace PBD;
39
40 void
41 Editor::editor_mixer_button_toggled ()
42 {
43         Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
44         if (act) {
45                 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
46                 show_editor_mixer (tact->get_active());
47         }
48 }
49
50 void
51 Editor::editor_list_button_toggled ()
52 {
53         Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-list"));
54         if (act) {
55                 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
56                 show_editor_list (tact->get_active());
57         }
58 }
59
60 void
61 Editor::cms_deleted ()
62 {
63         current_mixer_strip = 0;
64 }
65
66 void
67 Editor::show_editor_mixer (bool yn)
68 {
69         boost::shared_ptr<ARDOUR::Route> r;
70
71         show_editor_mixer_when_tracks_arrive = false;
72
73         if (!session) {
74                 show_editor_mixer_when_tracks_arrive = yn;
75                 return;
76         }
77
78         if (yn) {
79
80                 if (selection->tracks.empty()) {
81                         
82                         if (track_views.empty()) {      
83                                 show_editor_mixer_when_tracks_arrive = true;
84                                 return;
85                         } 
86
87                         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
88                                 AudioTimeAxisView* atv;
89                                 
90                                 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) != 0) {
91                                         r = atv->route();
92                                         break;
93                                 }
94                         }
95
96                 } else {
97
98                         sort_track_selection ();
99                         
100                         for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
101                                 AudioTimeAxisView* atv;
102                                 
103                                 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) != 0) {
104                                         r = atv->route();
105                                         break;
106                                 }
107                         }
108                 }
109
110                 if (r) {
111                         bool created;
112
113                         if (current_mixer_strip == 0) {
114                                 create_editor_mixer ();
115                                 created = true;
116                         } else {
117                                 created = false;
118                         }
119
120                         current_mixer_strip->set_route (r);
121
122                         if (created) {
123                                 current_mixer_strip->set_width (editor_mixer_strip_width, (void*) this);
124                         }
125                 }
126                 
127                 if (current_mixer_strip->get_parent() == 0) {
128                         global_hpacker.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK );
129                         global_hpacker.reorder_child (*current_mixer_strip, 0);
130                         current_mixer_strip->show_all ();
131                 }
132
133         } else {
134
135                 if (current_mixer_strip) {
136                         if (current_mixer_strip->get_parent() != 0) {
137                                 global_hpacker.remove (*current_mixer_strip);
138                         }
139                 }
140         }
141
142 #ifdef GTKOSX
143         /* XXX gtk problem here */
144         ensure_all_elements_drawn();
145 #endif
146 }
147
148 #ifdef GTKOSX
149 void
150 Editor::ensure_all_elements_drawn ()
151 {
152         controls_layout.queue_draw ();
153         ruler_label_event_box.queue_draw ();
154         time_button_event_box.queue_draw ();
155 }
156 #endif
157
158 void
159 Editor::show_editor_list (bool yn)
160 {
161         if (yn) {
162                 the_notebook.show();
163         } else {
164                 the_notebook.hide();
165         }
166 }
167
168 void
169 Editor::create_editor_mixer ()
170 {
171         current_mixer_strip = new MixerStrip (*ARDOUR_UI::instance()->the_mixer(),
172                                               *session,
173                                               false);
174         current_mixer_strip->Hiding.connect (mem_fun(*this, &Editor::current_mixer_strip_hidden));
175         current_mixer_strip->GoingAway.connect (mem_fun(*this, &Editor::current_mixer_strip_removed));
176 #ifdef GTKOSX
177         current_mixer_strip->WidthChanged.connect (mem_fun(*this, &Editor::ensure_all_elements_drawn));
178 #endif
179         current_mixer_strip->set_embedded (true);
180 }       
181
182 void
183 Editor::set_selected_mixer_strip (TimeAxisView& view)
184 {
185         AudioTimeAxisView* at;
186         bool show = false;
187         bool created;
188
189         if (!session || (at = dynamic_cast<AudioTimeAxisView*>(&view)) == 0) {
190                 return;
191         }
192
193         Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
194         if (act) {
195                 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
196                 if (!tact || !tact->get_active()) {
197                         /* not showing mixer strip presently */
198                         return;
199                 }
200         }
201
202         if (current_mixer_strip == 0) {
203                 create_editor_mixer ();
204                 created = true;
205         } else {
206                 created = false;
207         }
208
209         /* might be nothing to do */
210         
211         if (current_mixer_strip->route() == at->route()) {
212                 return;
213         }
214         
215         if (current_mixer_strip->get_parent()) {
216                 show = true;
217         }
218
219         current_mixer_strip->set_route (at->route());
220
221         if (created) {
222                 current_mixer_strip->set_width (editor_mixer_strip_width, (void*) this);
223         }
224
225         if (show) {
226                 show_editor_mixer (true);
227         }
228 }
229
230 double current = 0.0;
231
232 void
233 Editor::update_current_screen ()
234 {
235         if (session && session->engine().running()) {
236
237                 nframes64_t frame;
238
239                 frame = session->audible_frame();
240
241                 if (_dragging_playhead) {
242                         goto almost_done;
243                 }
244
245                 /* only update if the playhead is on screen or we are following it */
246
247                 if (_follow_playhead && session->requested_return_frame() < 0) {
248
249                         //playhead_cursor->canvas_item.show();
250
251                         if (frame != last_update_frame) {
252
253
254 #undef CONTINUOUS_SCROLL
255 #ifndef  CONTINUOUS_SCROLL
256                                 if (frame < leftmost_frame || frame > leftmost_frame + current_page_frames()) {
257                                         
258                                         if (session->transport_speed() < 0) {
259                                                 if (frame > (current_page_frames()/2)) {
260                                                         center_screen (frame-(current_page_frames()/2));
261                                                 } else {
262                                                         center_screen (current_page_frames()/2);
263                                                 }
264                                         } else {
265                                                 center_screen (frame+(current_page_frames()/2));
266                                         }
267                                 }
268
269                                 playhead_cursor->set_position (frame);
270
271 #else  // CONTINUOUS_SCROLL
272                                 
273                                 /* don't do continuous scroll till the new position is in the rightmost quarter of the 
274                                    editor canvas
275                                 */
276                                 
277                                 if (session->transport_speed()) {
278                                         double target = ((double)frame - (double)current_page_frames()/2.0) / frames_per_unit;
279                                         if (target <= 0.0) target = 0.0;
280                                         if ( fabs(target - current) < current_page_frames()/frames_per_unit ) {
281                                                 target = (target * 0.15) + (current * 0.85);
282                                         } else {
283                                                 /* relax */
284                                         }
285                                         //printf("frame: %d,  cpf: %d,  fpu: %6.6f, current: %6.6f, target : %6.6f\n", frame, current_page_frames(), frames_per_unit, current, target );
286                                         current = target;
287                                         horizontal_adjustment.set_value ( current );
288                                 }
289                                 
290                                 playhead_cursor->set_position (frame);
291
292 #endif // CONTINUOUS_SCROLL
293
294                         }
295
296                 } else {
297                         
298                         if (frame != last_update_frame) {
299                                 playhead_cursor->set_position (frame);
300                         }
301                 }
302
303           almost_done:
304                 last_update_frame = frame;
305                 if (current_mixer_strip) {
306                         current_mixer_strip->fast_update ();
307                 }
308                 
309         }
310 }
311
312 void
313 Editor::current_mixer_strip_removed ()
314 {
315         if (current_mixer_strip) {
316                 /* it is being deleted elsewhere */
317                 current_mixer_strip = 0;
318         }
319 }
320
321 void
322 Editor::current_mixer_strip_hidden ()
323 {
324         for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
325                 
326                 AudioTimeAxisView* tmp;
327                 
328                 if ((tmp = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
329                         if (tmp->route() == current_mixer_strip->route()) {
330                                 (*i)->set_selected (false);
331                                 break;
332                         }
333                 }
334         }
335
336         Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
337         if (act) {
338                 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
339                 tact->set_active (false);
340         }
341 }
342
343 void
344 Editor::session_going_away ()
345 {
346         _have_idled = false;
347         
348         for (vector<sigc::connection>::iterator i = session_connections.begin(); i != session_connections.end(); ++i) {
349                 (*i).disconnect ();
350         }
351
352         stop_scrolling ();
353         selection->clear ();
354         cut_buffer->clear ();
355
356         clicked_regionview = 0;
357         clicked_axisview = 0;
358         clicked_routeview = 0;
359         clicked_crossfadeview = 0;
360         entered_regionview = 0;
361         entered_track = 0;
362         last_update_frame = 0;
363         drag_info.item = 0;
364
365         playhead_cursor->canvas_item.hide ();
366
367         /* hide all tracks */
368
369         hide_all_tracks (false);
370
371         /* rip everything out of the list displays */
372
373         region_list_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
374         route_list_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
375         named_selection_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
376         edit_group_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
377
378         region_list_model->clear ();
379         route_display_model->clear ();
380         named_selection_model->clear ();
381         group_model->clear ();
382
383         region_list_display.set_model (region_list_model);
384         route_list_display.set_model (route_display_model);
385         named_selection_display.set_model (named_selection_model);
386         edit_group_display.set_model (group_model);
387
388         edit_point_clock_connection_a.disconnect();
389         edit_point_clock_connection_b.disconnect();
390
391         edit_point_clock.set_session (0);
392         zoom_range_clock.set_session (0);
393         nudge_clock.set_session (0);
394
395         editor_list_button.set_active(false);
396         editor_list_button.set_sensitive(false);
397         
398         /* clear tempo/meter rulers */
399         remove_metric_marks ();
400         hide_measures ();
401         clear_marker_display ();
402
403         if (current_bbt_points) {
404                 delete current_bbt_points;
405                 current_bbt_points = 0;
406         }
407
408         /* mixer strip will be deleted all by itself 
409            when its route is deleted.
410         */
411
412         current_mixer_strip = 0;
413
414         WindowTitle title(Glib::get_application_name());
415         title += _("Editor");
416
417         set_title (title.get_string());
418
419         session = 0;
420 }
421
422 void
423 Editor::maybe_add_mixer_strip_width (XMLNode& node)
424 {
425         if (current_mixer_strip) {
426                 node.add_property ("mixer-width", enum_2_string (current_mixer_strip->get_width()));
427         }
428 }
429