colinf's patch to make the cursor be the dbl vertical arrow when over the track resiz...
[ardour2.git] / gtk2_ardour / editor_mixer.cc
blob6d2a882091909a0e32986b2cfc9e71995589cfd6
1 /*
2 Copyright (C) 2003-2004 Paul Davis
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.
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.
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.
20 #include <glibmm/miscutils.h>
21 #include <gtkmm2ext/utils.h>
22 #include <gtkmm2ext/window_title.h>
24 #include <pbd/enumwriter.h>
26 #include <ardour/audioengine.h>
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"
35 #include "i18n.h"
37 using namespace Gtkmm2ext;
38 using namespace PBD;
40 void
41 Editor::editor_mixer_button_toggled ()
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());
50 void
51 Editor::cms_deleted ()
53 current_mixer_strip = 0;
56 void
57 Editor::show_editor_mixer (bool yn)
59 boost::shared_ptr<ARDOUR::Route> r;
61 show_editor_mixer_when_tracks_arrive = false;
63 if (!session) {
64 show_editor_mixer_when_tracks_arrive = yn;
65 return;
68 if (yn) {
70 if (selection->tracks.empty()) {
72 if (track_views.empty()) {
73 show_editor_mixer_when_tracks_arrive = true;
74 return;
77 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
78 AudioTimeAxisView* atv;
80 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) != 0) {
81 r = atv->route();
82 break;
86 } else {
88 sort_track_selection ();
90 for (TrackSelection::iterator i = selection->tracks.begin(); i != selection->tracks.end(); ++i) {
91 AudioTimeAxisView* atv;
93 if ((atv = dynamic_cast<AudioTimeAxisView*> (*i)) != 0) {
94 r = atv->route();
95 break;
100 if (r) {
101 bool created;
103 if (current_mixer_strip == 0) {
104 create_editor_mixer ();
105 created = true;
106 } else {
107 created = false;
110 current_mixer_strip->set_route (r);
112 if (created) {
113 current_mixer_strip->set_width (editor_mixer_strip_width, (void*) this);
117 if (current_mixer_strip->get_parent() == 0) {
118 global_hpacker.pack_start (*current_mixer_strip, Gtk::PACK_SHRINK );
119 global_hpacker.reorder_child (*current_mixer_strip, 0);
120 current_mixer_strip->show_all ();
123 } else {
125 if (current_mixer_strip) {
126 if (current_mixer_strip->get_parent() != 0) {
127 global_hpacker.remove (*current_mixer_strip);
132 #ifdef GTKOSX
133 /* XXX gtk problem here */
134 ensure_all_elements_drawn();
135 #endif
138 #ifdef GTKOSX
139 void
140 Editor::ensure_all_elements_drawn ()
142 controls_layout.queue_draw ();
143 ruler_label_event_box.queue_draw ();
144 time_button_event_box.queue_draw ();
146 #endif
148 void
149 Editor::create_editor_mixer ()
151 current_mixer_strip = new MixerStrip (*ARDOUR_UI::instance()->the_mixer(),
152 *session,
153 false);
154 current_mixer_strip->Hiding.connect (mem_fun(*this, &Editor::current_mixer_strip_hidden));
155 current_mixer_strip->GoingAway.connect (mem_fun(*this, &Editor::current_mixer_strip_removed));
156 #ifdef GTKOSX
157 current_mixer_strip->WidthChanged.connect (mem_fun(*this, &Editor::ensure_all_elements_drawn));
158 #endif
159 current_mixer_strip->set_embedded (true);
162 void
163 Editor::set_selected_mixer_strip (TimeAxisView& view)
165 AudioTimeAxisView* at;
166 bool show = false;
167 bool created;
169 if (!session || (at = dynamic_cast<AudioTimeAxisView*>(&view)) == 0) {
170 return;
173 Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
174 if (act) {
175 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
176 if (!tact || !tact->get_active()) {
177 /* not showing mixer strip presently */
178 return;
182 if (current_mixer_strip == 0) {
183 create_editor_mixer ();
184 created = true;
185 } else {
186 created = false;
189 /* might be nothing to do */
191 if (current_mixer_strip->route() == at->route()) {
192 return;
195 if (current_mixer_strip->get_parent()) {
196 show = true;
199 current_mixer_strip->set_route (at->route());
201 if (created) {
202 current_mixer_strip->set_width (editor_mixer_strip_width, (void*) this);
205 if (show) {
206 show_editor_mixer (true);
210 double current = 0.0;
212 void
213 Editor::update_current_screen ()
215 if (session && session->engine().running()) {
217 nframes64_t frame;
219 //frame = session->audible_frame();
220 frame = session->transport_frame ();
222 if (_dragging_playhead) {
223 goto almost_done;
226 #undef DEBUG_CURRENT_SCREEN
227 #if DEBUG_CURRENT_SCREEN
229 cerr << "@ " << frame << " last " << last_update_frame << " follow " << _follow_playhead
230 << " ret " << session->requested_return_frame()
231 << " left " << leftmost_frame
232 << " right " << leftmost_frame + current_page_frames()
233 << " speed " << session->transport_speed ()
234 << endl;
235 #endif
237 /* only update if the playhead is on screen or we are following it */
239 if (_follow_playhead && session->requested_return_frame() < 0) {
241 //playhead_cursor->canvas_item.show();
243 if (frame != last_update_frame) {
246 if ( !_stationary_playhead ) {
247 if (frame < leftmost_frame || frame > leftmost_frame + current_page_frames()) {
249 #ifdef DEBUG_CURRENT_SCREEN
250 cerr << "\trecenter...\n";
251 #endif
252 if (session->transport_speed() < 0) {
253 if (frame > (current_page_frames()/2)) {
254 center_screen (frame-(current_page_frames()/2));
255 } else {
256 center_screen (current_page_frames()/2);
258 } else {
259 center_screen (frame+(current_page_frames()/2));
263 playhead_cursor->set_position (frame);
265 } else {
267 /* don't do continuous scroll till the new position is in the rightmost quarter of the
268 editor canvas
271 if (session->transport_speed()) {
272 double target = ((double)frame - (double)current_page_frames()/2.0) / frames_per_unit;
273 if (target <= 0.0) target = 0.0;
274 if ( fabs(target - current) < current_page_frames()/frames_per_unit ) {
275 target = (target * 0.15) + (current * 0.85);
276 } else {
277 /* relax */
279 //printf("frame: %d, cpf: %d, fpu: %6.6f, current: %6.6f, target : %6.6f\n", frame, current_page_frames(), frames_per_unit, current, target );
280 current = target;
281 horizontal_adjustment.set_value ( current );
284 playhead_cursor->set_position (frame);
290 } else {
292 if (frame != last_update_frame) {
293 playhead_cursor->set_position (frame);
297 almost_done:
298 last_update_frame = frame;
299 if (current_mixer_strip) {
300 current_mixer_strip->fast_update ();
306 void
307 Editor::current_mixer_strip_removed ()
309 if (current_mixer_strip) {
310 /* it is being deleted elsewhere */
311 current_mixer_strip = 0;
315 void
316 Editor::current_mixer_strip_hidden ()
318 for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
320 AudioTimeAxisView* tmp;
322 if ((tmp = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
323 if (tmp->route() == current_mixer_strip->route()) {
324 (*i)->set_selected (false);
325 break;
330 Glib::RefPtr<Gtk::Action> act = ActionManager::get_action (X_("Editor"), X_("show-editor-mixer"));
331 if (act) {
332 Glib::RefPtr<Gtk::ToggleAction> tact = Glib::RefPtr<Gtk::ToggleAction>::cast_dynamic(act);
333 tact->set_active (false);
337 void
338 Editor::session_going_away ()
340 _have_idled = false;
342 for (vector<sigc::connection>::iterator i = session_connections.begin(); i != session_connections.end(); ++i) {
343 (*i).disconnect ();
346 stop_scrolling ();
347 selection->clear ();
348 cut_buffer->clear ();
350 clicked_regionview = 0;
351 clicked_trackview = 0;
352 clicked_audio_trackview = 0;
353 clicked_crossfadeview = 0;
354 entered_regionview = 0;
355 entered_track = 0;
356 last_update_frame = 0;
357 drag_info.item = 0;
359 playhead_cursor->canvas_item.hide ();
361 /* hide all tracks */
363 hide_all_tracks (false);
365 /* rip everything out of the list displays */
367 region_list_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
368 route_list_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
369 named_selection_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
370 edit_group_display.set_model (Glib::RefPtr<Gtk::TreeStore>(0));
372 region_list_model->clear ();
373 route_display_model->clear ();
374 named_selection_model->clear ();
375 group_model->clear ();
377 region_list_display.set_model (region_list_model);
378 route_list_display.set_model (route_display_model);
379 named_selection_display.set_model (named_selection_model);
380 edit_group_display.set_model (group_model);
382 edit_point_clock_connection_a.disconnect();
383 edit_point_clock_connection_b.disconnect();
385 edit_point_clock.set_session (0);
386 zoom_range_clock.set_session (0);
387 nudge_clock.set_session (0);
389 /* clear tempo/meter rulers */
390 remove_metric_marks ();
391 hide_measures ();
392 clear_marker_display ();
394 if (current_bbt_points) {
395 delete current_bbt_points;
396 current_bbt_points = 0;
399 /* get rid of any existing editor mixer strip */
401 if (current_mixer_strip) {
402 if (current_mixer_strip->get_parent() != 0) {
403 global_hpacker.remove (*current_mixer_strip);
405 delete current_mixer_strip;
406 current_mixer_strip = 0;
409 WindowTitle title(Glib::get_application_name());
410 title += _("Editor");
412 set_title (title.get_string());
414 session = 0;
417 void
418 Editor::maybe_add_mixer_strip_width (XMLNode& node)
420 if (current_mixer_strip) {
421 node.add_property ("mixer-width", enum_2_string (current_mixer_strip->get_width()));