Merge branch 'cairocanvas'
[ardour.git] / gtk2_ardour / ardour_ui2.cc
1 /*
2     Copyright (C) 1999 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 <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <cerrno>
28 #include <iostream>
29 #include <cmath>
30
31 #include <sigc++/bind.h>
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include "pbd/fastlog.h"
35 #include <gtkmm2ext/cairocell.h>
36 #include <gtkmm2ext/utils.h>
37 #include <gtkmm2ext/click_box.h>
38 #include <gtkmm2ext/tearoff.h>
39
40 #include "ardour/profile.h"
41 #include "ardour/session.h"
42 #include "ardour/types.h"
43
44 #include "ardour_ui.h"
45 #include "keyboard.h"
46 #include "public_editor.h"
47 #include "audio_clock.h"
48 #include "actions.h"
49 #include "main_clock.h"
50 #include "utils.h"
51 #include "theme_manager.h"
52 #include "midi_tracer.h"
53 #include "shuttle_control.h"
54 #include "global_port_matrix.h"
55 #include "location_ui.h"
56 #include "rc_option_editor.h"
57 #include "time_info_box.h"
58
59 #include "i18n.h"
60
61 using namespace std;
62 using namespace ARDOUR;
63 using namespace PBD;
64 using namespace Gtkmm2ext;
65 using namespace Gtk;
66 using namespace Glib;
67 using namespace ARDOUR_UI_UTILS;
68
69 int
70 ARDOUR_UI::setup_windows ()
71 {
72         if (create_editor ()) {
73                 error << _("UI: cannot setup editor") << endmsg;
74                 return -1;
75         }
76
77         if (create_mixer ()) {
78                 error << _("UI: cannot setup mixer") << endmsg;
79                 return -1;
80         }
81
82         if (create_meterbridge ()) {
83                 error << _("UI: cannot setup meterbridge") << endmsg;
84                 return -1;
85         }
86
87         /* all other dialogs are created conditionally */
88
89         we_have_dependents ();
90
91 #ifdef TOP_MENUBAR
92         HBox* status_bar_packer = manage (new HBox);
93         EventBox* status_bar_event_box = manage (new EventBox);
94
95         status_bar_event_box->add (status_bar_label);
96         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
97         status_bar_label.set_size_request (300, -1);
98         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
99         status_bar_packer->pack_start (error_log_button, false, false);
100
101         status_bar_label.show ();
102         status_bar_event_box->show ();
103         status_bar_packer->show ();
104         error_log_button.show ();
105
106         error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
107         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
108
109         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
110         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
111 #else
112         top_packer.pack_start (menu_bar_base, false, false);
113 #endif
114
115         editor->add_toplevel_menu (top_packer);
116
117         editor->add_transport_frame (transport_frame);
118
119         setup_transport();
120
121         build_menu_bar ();
122
123         setup_tooltips ();
124
125         return 0;
126 }
127
128 void
129 ARDOUR_UI::setup_tooltips ()
130 {
131         set_tip (roll_button, _("Play from playhead"));
132         set_tip (stop_button, _("Stop playback"));
133         set_tip (rec_button, _("Toggle record"));
134         set_tip (play_selection_button, _("Play range/selection"));
135         set_tip (goto_start_button, _("Go to start of session"));
136         set_tip (goto_end_button, _("Go to end of session"));
137         set_tip (auto_loop_button, _("Play loop range"));
138         set_tip (midi_panic_button, _("MIDI Panic\nSend note off and reset controller messages on all MIDI channels"));
139         set_tip (auto_return_button, _("Return to last playback start when stopped"));
140         set_tip (follow_edits_button, _("Playhead follows Range Selections and Edits"));
141         set_tip (auto_input_button, _("Be sensible about input monitoring"));
142         set_tip (click_button, _("Enable/Disable audio click"));
143         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
144         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
145         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
146         set_tip (primary_clock, _("<b>Primary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\n"));
147         set_tip (secondary_clock, _("<b>Secondary Clock</b> right-click to set display mode. Click to edit, click+drag a digit or mouse-over+scroll wheel to modify.\nText edits: right-to-left overwrite <tt>Esc</tt>: cancel; <tt>Enter</tt>: confirm; postfix the edit with '+' or '-' to enter delta times.\n"));
148         set_tip (editor_meter_peak_display, _("Reset All Peak Indicators"));
149
150         synchronize_sync_source_and_video_pullup ();
151
152         editor->setup_tooltips ();
153 }
154
155 bool
156 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
157 {
158         bool handled = false;
159
160         switch (ev->button) {
161         case 1:
162                 status_bar_label.set_text ("");
163                 handled = true;
164                 break;
165         default:
166                 break;
167         }
168
169         return handled;
170 }
171
172 void
173 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
174 {
175         string text;
176
177         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
178 #ifdef TOP_MENUBAR
179
180         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
181                 text = "<span color=\"red\" weight=\"bold\">";
182         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
183                 text = "<span color=\"yellow\" weight=\"bold\">";
184         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
185                 text = "<span color=\"green\" weight=\"bold\">";
186         } else {
187                 text = "<span color=\"white\" weight=\"bold\">???";
188         }
189
190         text += prefix;
191         text += "</span>";
192         text += msg;
193
194         status_bar_label.set_markup (text);
195 #endif
196 }
197
198 XMLNode*
199 ARDOUR_UI::tearoff_settings (const char* name) const
200 {
201         XMLNode* ui_node = Config->extra_xml(X_("UI"));
202
203         if (ui_node) {
204                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
205                 if (tearoff_node) {
206                         XMLNode* mnode = tearoff_node->child (name);
207                         return mnode;
208                 }
209         }
210
211         return 0;
212 }
213
214 void
215 ARDOUR_UI::setup_transport ()
216 {
217         RefPtr<Action> act;
218
219         transport_tearoff_hbox.set_border_width (3);
220         transport_tearoff_hbox.set_spacing (3);
221
222         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
223         transport_tearoff->set_name ("TransportBase");
224         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
225
226         if (Profile->get_sae() || Profile->get_mixbus()) {
227                 transport_tearoff->set_can_be_torn_off (false);
228         }
229
230         transport_hbox.pack_start (*transport_tearoff, true, false);
231
232         transport_base.set_name ("TransportBase");
233         transport_base.add (transport_hbox);
234
235         transport_frame.set_shadow_type (SHADOW_OUT);
236         transport_frame.set_name ("BaseFrame");
237         transport_frame.add (transport_base);
238
239         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
240                                                  static_cast<Widget*>(&transport_frame)));
241         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
242                                                  static_cast<Widget*> (&transport_frame), 1));
243         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
244                                                  static_cast<Widget*>(&transport_frame)));
245         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
246                                                   static_cast<Widget*> (&transport_frame), 1));
247
248         auto_return_button.set_text(_("Auto Return"));
249
250         follow_edits_button.set_text(_("Follow Edits"));
251
252 //      auto_input_button.set_text (_("Auto Input"));
253
254         click_button.set_image (get_icon (X_("metronome")));
255         act = ActionManager::get_action ("Transport", "ToggleClick");
256         click_button.set_related_action (act);
257         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
258
259         auto_return_button.set_name ("transport option button");
260         follow_edits_button.set_name ("transport option button");
261         auto_input_button.set_name ("transport option button");
262
263         /* these have to provide a clear indication of active state */
264
265         click_button.set_name ("transport button");
266         sync_button.set_name ("transport active option button");
267
268         stop_button.set_active (true);
269
270         goto_start_button.set_image (get_icon (X_("transport_start")));
271         goto_end_button.set_image (get_icon (X_("transport_end")));
272         roll_button.set_image (get_icon (X_("transport_play")));
273         stop_button.set_image (get_icon (X_("transport_stop")));
274         play_selection_button.set_image (get_icon (X_("transport_range")));
275         auto_loop_button.set_image (get_icon (X_("transport_loop")));
276
277         rec_button.set_elements ((ArdourButton::Element) (ArdourButton::Edge|ArdourButton::Body|ArdourButton::RecButton));
278
279         midi_panic_button.set_image (get_icon (X_("midi_panic")));
280         /* the icon for this has an odd aspect ratio, so fatten up the button */
281         midi_panic_button.set_size_request (25, -1);
282         
283         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
284         stop_button.set_related_action (act);
285         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
286         roll_button.set_related_action (act);
287         act = ActionManager::get_action (X_("Transport"), X_("Record"));
288         rec_button.set_related_action (act);
289         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
290         goto_start_button.set_related_action (act);
291         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
292         goto_end_button.set_related_action (act);
293         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
294         auto_loop_button.set_related_action (act);
295         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
296         play_selection_button.set_related_action (act);
297         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
298         midi_panic_button.set_related_action (act);
299         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
300         sync_button.set_related_action (act);
301
302         /* clocks, etc. */
303
304         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
305         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
306
307         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
308         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
309         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
310
311         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
312         auto_return_button.set_related_action (act);
313         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
314         follow_edits_button.set_related_action (act);
315         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
316         auto_input_button.set_related_action (act);
317
318         /* alerts */
319
320         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
321
322         solo_alert_button.set_name ("rude solo");
323         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
324         auditioning_alert_button.set_name ("rude audition");
325         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
326         feedback_alert_button.set_name ("feedback alert");
327         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
328
329         alert_box.set_homogeneous (true);
330         alert_box.set_spacing (2);
331         alert_box.pack_start (solo_alert_button, true, true);
332         alert_box.pack_start (auditioning_alert_button, true, true);
333         alert_box.pack_start (feedback_alert_button, true, true);
334
335         /* all transport buttons should be the same size vertically and
336          * horizontally 
337          */
338
339         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
340         transport_button_size_group->add_widget (goto_start_button);
341         transport_button_size_group->add_widget (goto_end_button);
342         transport_button_size_group->add_widget (auto_loop_button);
343         transport_button_size_group->add_widget (rec_button);
344         transport_button_size_group->add_widget (play_selection_button);
345         transport_button_size_group->add_widget (roll_button);
346         transport_button_size_group->add_widget (stop_button);
347
348         goto_start_button.set_size_request (-1, 40);
349
350         HBox* tbox1 = manage (new HBox);
351         HBox* tbox2 = manage (new HBox);
352         HBox* tbox = manage (new HBox);
353
354         VBox* vbox1 = manage (new VBox);
355         VBox* vbox2 = manage (new VBox);
356
357         Alignment* a1 = manage (new Alignment);
358         Alignment* a2 = manage (new Alignment);
359
360         tbox1->set_spacing (2);
361         tbox2->set_spacing (2);
362         tbox->set_spacing (2);
363
364         if (!Profile->get_trx()) {
365                 tbox1->pack_start (midi_panic_button, false, false, 5);
366                 tbox1->pack_start (click_button, false, false, 5);
367         }
368
369         tbox1->pack_start (goto_start_button, false, false);
370         tbox1->pack_start (goto_end_button, false, false);
371         tbox1->pack_start (auto_loop_button, false, false);
372
373         if (!Profile->get_trx()) {
374                 tbox2->pack_start (play_selection_button, false, false);
375         }
376         tbox2->pack_start (roll_button, false, false);
377         tbox2->pack_start (stop_button, false, false);
378         tbox2->pack_start (rec_button, false, false, 5);
379
380         vbox1->pack_start (*tbox1, false, false);
381         vbox2->pack_start (*tbox2, false, false);
382
383         a1->add (*vbox1);
384         a1->set (0.5, 1.0, 0.0, 0.0);
385         a2->add (*vbox2);
386         a2->set (0.5, 1.0, 0.0, 0.0);
387
388         tbox->pack_start (*a1, false, false);
389         tbox->pack_start (*a2, false, false);
390
391         HBox* clock_box = manage (new HBox);
392
393         clock_box->pack_start (*primary_clock, false, false);
394         if (!ARDOUR::Profile->get_small_screen() && !ARDOUR::Profile->get_trx()) {
395                 clock_box->pack_start (*secondary_clock, false, false);
396         }
397         clock_box->set_spacing (3);
398
399         shuttle_box = manage (new ShuttleControl);
400         shuttle_box->show ();
401         
402         VBox* transport_vbox = manage (new VBox);
403         transport_vbox->set_name ("TransportBase");
404         transport_vbox->set_border_width (0);
405         transport_vbox->set_spacing (3);
406         transport_vbox->pack_start (*tbox, true, true, 0);
407
408         if (!Profile->get_trx()) {
409                 transport_vbox->pack_start (*shuttle_box, false, false, 0);
410         }
411
412         time_info_box = manage (new TimeInfoBox);
413
414         if (ARDOUR::Profile->get_trx()) {
415                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
416         }
417
418         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
419
420         /* transport related toggle controls */
421
422         VBox* auto_box = manage (new VBox);
423         auto_box->set_homogeneous (true);
424         auto_box->set_spacing (2);
425         auto_box->pack_start (sync_button, true, true);
426         if (!ARDOUR::Profile->get_trx()) {
427                 auto_box->pack_start (follow_edits_button, true, true);
428                 auto_box->pack_start (auto_return_button, true, true);
429         }
430
431         if (!ARDOUR::Profile->get_trx()) {
432                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
433         }
434         transport_tearoff_hbox.pack_start (*clock_box, true, true);
435
436         if (ARDOUR::Profile->get_trx()) {
437                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
438         }
439
440         if (!ARDOUR::Profile->get_trx()) {
441                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
442         }
443
444         if (ARDOUR::Profile->get_small_screen()) {
445                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false);
446         }
447
448         if (!ARDOUR::Profile->get_trx()) {
449                 transport_tearoff_hbox.pack_start (alert_box, false, false);
450                 transport_tearoff_hbox.pack_start (meter_box, false, false);
451                 transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false);
452         }
453
454         if (Profile->get_sae()) {
455                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
456                 transport_tearoff_hbox.pack_end (*img, false, false);
457         }
458
459         /* desensitize */
460
461         set_transport_sensitivity (false);
462
463         XMLNode* tnode = tearoff_settings ("transport");
464         if (tnode) {
465                 transport_tearoff->set_state (*tnode);
466         }
467 }
468
469 void
470 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
471 {
472 //      editor->ensure_float (transport_tearoff->tearoff_window());
473         b->remove (*w);
474 }
475
476 void
477 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
478 {
479         b->pack_start (*w);
480         b->reorder_child (*w, n);
481 }
482
483 void
484 ARDOUR_UI::soloing_changed (bool onoff)
485 {
486         if (solo_alert_button.get_active() != onoff) {
487                 solo_alert_button.set_active (onoff);
488         }
489 }
490
491 void
492 ARDOUR_UI::_auditioning_changed (bool onoff)
493 {
494         auditioning_alert_button.set_active (onoff);
495         set_transport_sensitivity (!onoff);
496 }
497
498 void
499 ARDOUR_UI::auditioning_changed (bool onoff)
500 {
501         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
502 }
503
504 bool
505 ARDOUR_UI::audition_alert_press (GdkEventButton*)
506 {
507         if (_session) {
508                 _session->cancel_audition();
509         }
510         return true;
511 }
512
513 bool
514 ARDOUR_UI::solo_alert_press (GdkEventButton*)
515 {
516         if (_session) {
517                 if (_session->soloing()) {
518                         _session->set_solo (_session->get_routes(), false);
519                 } else if (_session->listening()) {
520                         _session->set_listen (_session->get_routes(), false);
521                 }
522         }
523         return true;
524 }
525
526 bool
527 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
528 {
529         return true;
530 }
531
532 void
533 ARDOUR_UI::solo_blink (bool onoff)
534 {
535         if (_session == 0) {
536                 return;
537         }
538
539         if (_session->soloing() || _session->listening()) {
540                 if (onoff) {
541                         solo_alert_button.set_active (true);
542                 } else {
543                         solo_alert_button.set_active (false);
544                 }
545         } else {
546                 solo_alert_button.set_active (false);
547         }
548 }
549
550 void
551 ARDOUR_UI::sync_blink (bool onoff)
552 {
553         if (_session == 0 || !_session->config.get_external_sync()) {
554                 /* internal sync */
555                 sync_button.set_active (false);
556                 return;
557         }
558
559         if (!_session->transport_locked()) {
560                 /* not locked, so blink on and off according to the onoff argument */
561
562                 if (onoff) {
563                         sync_button.set_active (true);
564                 } else {
565                         sync_button.set_active (false);
566                 }
567         } else {
568                 /* locked */
569                 sync_button.set_active (true);
570         }
571 }
572
573 void
574 ARDOUR_UI::audition_blink (bool onoff)
575 {
576         if (_session == 0) {
577                 return;
578         }
579
580         if (_session->is_auditioning()) {
581                 if (onoff) {
582                         auditioning_alert_button.set_active (true);
583                 } else {
584                         auditioning_alert_button.set_active (false);
585                 }
586         } else {
587                 auditioning_alert_button.set_active (false);
588         }
589 }
590
591 void
592 ARDOUR_UI::feedback_blink (bool onoff)
593 {
594         if (_feedback_exists) {
595                 if (onoff) {
596                         feedback_alert_button.set_active (true);
597                 } else {
598                         feedback_alert_button.set_active (false);
599                 }
600         } else {
601                 feedback_alert_button.set_active (false);
602         }
603 }
604
605 void
606 ARDOUR_UI::set_transport_sensitivity (bool yn)
607 {
608         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
609         shuttle_box->set_sensitive (yn);
610 }
611
612 void
613 ARDOUR_UI::editor_realized ()
614 {
615         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
616         Config->map_parameters (pc);
617
618         reset_dpi ();
619 }
620
621 void
622 ARDOUR_UI::update_tearoff_visibility ()
623 {
624         if (editor) {
625                 editor->update_tearoff_visibility ();
626         }
627 }
628
629 void
630 ARDOUR_UI::maximise_editing_space ()
631 {
632         if (editor) {
633                 editor->maximise_editing_space ();
634         }
635 }
636
637 void
638 ARDOUR_UI::restore_editing_space ()
639 {
640         if (editor) {
641                 editor->restore_editing_space ();
642         }
643 }
644
645 void
646 ARDOUR_UI::show_ui_prefs ()
647 {
648         RefPtr<Action> act = ActionManager::get_action (X_("Window"), X_("toggle-rc-options-editor"));
649         assert (act);
650
651         act->activate();
652
653         rc_option_editor->set_current_page (_("GUI"));
654 }
655
656
657 bool
658 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
659 {
660         if (ev->button != 3) {
661                 /* this handler is just for button-3 clicks */
662                 return false;
663         }
664
665         RefPtr<Action> act = ActionManager::get_action (X_("Window"), X_("toggle-rc-options-editor"));
666         assert (act);
667
668         act->activate();
669
670         rc_option_editor->set_current_page (_("Misc"));
671         return true;
672 }
673
674 void
675 ARDOUR_UI::toggle_follow_edits ()
676 {
677         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
678         assert (act);
679
680         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
681         assert (tact);
682
683         Config->set_follow_edits (tact->get_active ());
684 }
685
686