c74db60deffab8e3b8380eeb20e1c1d470ae89e6
[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/session.h"
41 #include "ardour/audioengine.h"
42 #include "ardour/ardour.h"
43 #include "ardour/profile.h"
44 #include "ardour/route.h"
45
46 #include "ardour_ui.h"
47 #include "keyboard.h"
48 #include "public_editor.h"
49 #include "audio_clock.h"
50 #include "actions.h"
51 #include "utils.h"
52 #include "theme_manager.h"
53 #include "midi_tracer.h"
54 #include "shuttle_control.h"
55 #include "global_port_matrix.h"
56 #include "location_ui.h"
57 #include "rc_option_editor.h"
58 #include "time_info_box.h"
59
60 #include "i18n.h"
61
62 using namespace std;
63 using namespace ARDOUR;
64 using namespace PBD;
65 using namespace Gtkmm2ext;
66 using namespace Gtk;
67 using namespace Glib;
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         /* all other dialogs are created conditionally */
83
84         we_have_dependents ();
85
86         theme_manager->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleThemeManager")));
87
88 #ifdef TOP_MENUBAR
89         HBox* status_bar_packer = manage (new HBox);
90         EventBox* status_bar_event_box = manage (new EventBox);
91
92         status_bar_event_box->add (status_bar_label);
93         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
94         status_bar_label.set_size_request (300, -1);
95         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
96         status_bar_packer->pack_start (error_log_button, false, false);
97
98         status_bar_label.show ();
99         status_bar_event_box->show ();
100         status_bar_packer->show ();
101         error_log_button.show ();
102
103         error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
104         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
105
106         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
107         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
108 #else
109         top_packer.pack_start (menu_bar_base, false, false);
110 #endif
111
112         top_packer.pack_start (transport_frame, false, false);
113
114         editor->add_toplevel_controls (top_packer);
115
116         setup_transport();
117         build_menu_bar ();
118
119         setup_tooltips ();
120
121         return 0;
122 }
123
124 void
125 ARDOUR_UI::setup_tooltips ()
126 {
127         set_tip (roll_button, _("Play from playhead"));
128         set_tip (stop_button, _("Stop playback"));
129         set_tip (rec_button, _("Toggle record"));
130         set_tip (play_selection_button, _("Play range/selection"));
131         set_tip (join_play_range_button, _("Always play range/selection"));
132         set_tip (goto_start_button, _("Go to start of session"));
133         set_tip (goto_end_button, _("Go to end of session"));
134         set_tip (auto_loop_button, _("Play loop range"));
135
136         set_tip (auto_return_button, _("Return to last playback start when stopped"));
137         set_tip (auto_play_button, _("Start playback after any locate"));
138         set_tip (auto_input_button, _("Be sensible about input monitoring"));
139         set_tip (punch_in_button, _("Start recording at auto-punch start"));
140         set_tip (punch_out_button, _("Stop recording at auto-punch end"));
141         set_tip (click_button, _("Enable/Disable audio click"));
142         set_tip (time_master_button, string_compose (_("Does %1 control the time?"), PROGRAM_NAME));
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 (primary_clock, _("Primary Clock"));
146         set_tip (secondary_clock, _("Secondary Clock"));
147
148         synchronize_sync_source_and_video_pullup ();
149
150         editor->setup_tooltips ();
151 }
152
153 bool
154 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
155 {
156         bool handled = false;
157
158         switch (ev->button) {
159         case 1:
160                 status_bar_label.set_text ("");
161                 handled = true;
162                 break;
163         default:
164                 break;
165         }
166
167         return handled;
168 }
169
170 void
171 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
172 {
173         string text;
174
175         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
176 #ifdef TOP_MENUBAR
177
178         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
179                 text = "<span color=\"red\" weight=\"bold\">";
180         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
181                 text = "<span color=\"yellow\" weight=\"bold\">";
182         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
183                 text = "<span color=\"green\" weight=\"bold\">";
184         } else {
185                 text = "<span color=\"white\" weight=\"bold\">???";
186         }
187
188         text += prefix;
189         text += "</span>";
190         text += msg;
191
192         status_bar_label.set_markup (text);
193 #endif
194 }
195
196 XMLNode*
197 ARDOUR_UI::tearoff_settings (const char* name) const
198 {
199         XMLNode* ui_node = Config->extra_xml(X_("UI"));
200
201         if (ui_node) {
202                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
203                 if (tearoff_node) {
204                         XMLNode* mnode = tearoff_node->child (name);
205                         return mnode;
206                 }
207         }
208
209         return 0;
210 }
211
212 void
213 ARDOUR_UI::setup_transport ()
214 {
215         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
216         transport_tearoff->set_name ("TransportBase");
217         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
218
219         if (Profile->get_sae()) {
220                 transport_tearoff->set_can_be_torn_off (false);
221         }
222
223         transport_hbox.pack_start (*transport_tearoff, true, false);
224
225         transport_base.set_name ("TransportBase");
226         transport_base.add (transport_hbox);
227
228         transport_frame.set_shadow_type (SHADOW_OUT);
229         transport_frame.set_name ("BaseFrame");
230         transport_frame.add (transport_base);
231
232         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
233                                                  static_cast<Widget*>(&transport_frame)));
234         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
235                                                  static_cast<Widget*> (&transport_frame), 1));
236         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
237                                                  static_cast<Widget*>(&transport_frame)));
238         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
239                                                   static_cast<Widget*> (&transport_frame), 1));
240
241         goto_start_button.set_name ("TransportButton");
242         goto_end_button.set_name ("TransportButton");
243         roll_button.set_name ("TransportButton");
244         stop_button.set_name ("TransportButton");
245         play_selection_button.set_name ("TransportButton");
246         rec_button.set_name ("TransportRecButton");
247         auto_loop_button.set_name ("TransportButton");
248         join_play_range_button.set_name ("TransportButton");
249
250         auto_return_button.set_name ("TransportButton");
251         auto_play_button.set_name ("TransportButton");
252         auto_input_button.set_name ("TransportButton");
253         punch_in_button.set_name ("TransportButton");
254         punch_out_button.set_name ("TransportButton");
255         click_button.set_name ("TransportButton");
256         time_master_button.set_name ("TransportButton");
257         sync_button.set_name ("TransportSyncButton");
258
259         stop_button.set_size_request(29, -1);
260         roll_button.set_size_request(29, -1);
261         auto_loop_button.set_size_request(29, -1);
262         play_selection_button.set_size_request(29, -1);
263         goto_start_button.set_size_request(29, -1);
264         goto_end_button.set_size_request(29, -1);
265         rec_button.set_size_request(29, -1);
266
267         Widget* w;
268
269         stop_button.set_visual_state (1);
270
271         w = manage (new Image (get_icon (X_("transport_start"))));
272         w->show();
273         goto_start_button.add (*w);
274         w = manage (new Image (get_icon (X_("transport_end"))));
275         w->show();
276         goto_end_button.add (*w);
277         w = manage (new Image (get_icon (X_("transport_play"))));
278         w->show();
279         roll_button.add (*w);
280         w = manage (new Image (get_icon (X_("transport_stop"))));
281         w->show();
282         stop_button.add (*w);
283         w = manage (new Image (get_icon (X_("transport_range"))));
284         w->show();
285         play_selection_button.add (*w);
286         w = manage (new Image (get_icon (X_("transport_record"))));
287         w->show();
288         rec_button.add (*w);
289         w = manage (new Image (get_icon (X_("transport_loop"))));
290         w->show();
291         auto_loop_button.add (*w);
292         w = manage (new Image (get_icon (X_("tool_object_range"))));
293         w->show ();
294         join_play_range_button.add (*w);
295
296         RefPtr<Action> act;
297
298         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
299         act->connect_proxy (stop_button);
300         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
301         act->connect_proxy (roll_button);
302         act = ActionManager::get_action (X_("Transport"), X_("Record"));
303         act->connect_proxy (rec_button);
304         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
305         act->connect_proxy (goto_start_button);
306         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
307         act->connect_proxy (goto_end_button);
308         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
309         act->connect_proxy (auto_loop_button);
310         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
311         act->connect_proxy (play_selection_button);
312         act = ActionManager::get_action (X_("Transport"), X_("ToggleTimeMaster"));
313         act->connect_proxy (time_master_button);
314         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
315         act->connect_proxy (sync_button);
316
317
318         /* clocks, etc. */
319
320         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &AudioClock::set), 'p'));
321         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &AudioClock::set), 's'));
322
323         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
324         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
325         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
326
327         ActionManager::get_action ("Transport", "ToggleAutoReturn")->connect_proxy (auto_return_button);
328         ActionManager::get_action ("Transport", "ToggleAutoPlay")->connect_proxy (auto_play_button);
329         ActionManager::get_action ("Transport", "ToggleAutoInput")->connect_proxy (auto_input_button);
330         ActionManager::get_action ("Transport", "ToggleClick")->connect_proxy (click_button);
331         ActionManager::get_action ("Transport", "TogglePunchIn")->connect_proxy (punch_in_button);
332         ActionManager::get_action ("Transport", "TogglePunchOut")->connect_proxy (punch_out_button);
333
334         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
335
336         preroll_button.set_name ("TransportButton");
337         postroll_button.set_name ("TransportButton");
338
339         preroll_clock->set_mode (AudioClock::MinSec);
340         preroll_clock->set_name ("TransportClockDisplay");
341         postroll_clock->set_mode (AudioClock::MinSec);
342         postroll_clock->set_name ("TransportClockDisplay");
343
344         /* alerts */
345
346         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
347
348         solo_alert_button.set_name ("TransportSoloAlert");
349         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
350         auditioning_alert_button.set_name ("TransportAuditioningAlert");
351         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
352
353         alert_box.pack_start (solo_alert_button, false, false);
354         alert_box.pack_start (auditioning_alert_button, false, false);
355
356         HBox* transport_hbox = manage (new HBox);
357
358         transport_tearoff_hbox.set_border_width (3);
359
360         transport_hbox->pack_start (goto_start_button, false, false);
361         transport_hbox->pack_start (goto_end_button, false, false);
362
363         /* translators: Egternal is "External" with a descender character */
364         set_size_request_to_display_given_text (sync_button, X_("Egternal"), 4, 10);
365
366         // transport_tearoff_hbox.pack_start (*svbox, false, false, 3);
367
368         if (Profile->get_sae()) {
369                 transport_hbox->pack_start (auto_loop_button);
370                 transport_hbox->pack_start (roll_button);
371         } else {
372                 transport_hbox->pack_start (auto_loop_button, false, false);
373
374                 Frame* jpframe = manage (new Frame);
375                 HBox* jpbox = manage (new HBox);
376
377                 jpframe->add (*jpbox);
378                 jpframe->set_shadow_type (SHADOW_NONE);
379
380                 jpbox->pack_start (play_selection_button, false, false);
381                 jpbox->pack_start (join_play_range_button, false, false);
382                 jpbox->pack_start (roll_button, false, false);
383
384                 transport_hbox->pack_start (*jpframe, false, false);
385         }
386         transport_hbox->pack_start (stop_button, false, false);
387         transport_hbox->pack_start (rec_button, false, false, 6);
388
389         HBox* clock_box = manage (new HBox);
390         clock_box->set_border_width (2);
391         primary_clock->set_border_width (2);
392         clock_box->pack_start (*primary_clock, false, false);
393         if (!ARDOUR::Profile->get_small_screen()) {
394                 secondary_clock->set_border_width (2);
395                 clock_box->pack_start (*secondary_clock, false, false);
396         }
397
398         if (!Profile->get_sae()) {
399                 VBox* time_controls_box = manage (new VBox);
400                 time_controls_box->pack_start (sync_button, false, false);
401                 time_controls_box->pack_start (time_master_button, false, false);
402                 clock_box->pack_start (*time_controls_box, false, false, 1);
403         }
404
405         shuttle_box = new ShuttleControl;
406         shuttle_box->show ();
407
408         VBox* transport_vbox = manage (new VBox);
409         transport_vbox->set_name ("TransportBase");
410         transport_vbox->set_border_width (3);
411         transport_vbox->set_spacing (3);
412         transport_vbox->pack_start (*transport_hbox, true, true, 0);
413         transport_vbox->pack_start (*shuttle_box, false, false, 0);
414
415         transport_tearoff_hbox.pack_start (*transport_vbox, false, false, 0);
416         transport_tearoff_hbox.pack_start (*clock_box, false, false, 0);
417
418         time_info_box = manage (new TimeInfoBox);
419         transport_tearoff_hbox.pack_start (*time_info_box, false, false);
420
421         HBox* toggle_box = manage(new HBox);
422
423         VBox* punch_box = manage (new VBox);
424         punch_box->pack_start (punch_in_button, false, false);
425         punch_box->pack_start (punch_out_button, false, false);
426         toggle_box->pack_start (*punch_box, false, false);
427
428         VBox* auto_box = manage (new VBox);
429         auto_box->pack_start (auto_play_button, false, false);
430         auto_box->pack_start (auto_return_button, false, false);
431         if (!Profile->get_small_screen()) {
432                 toggle_box->pack_start (*auto_box, false, false);
433         }
434
435         VBox* io_box = manage (new VBox);
436         io_box->pack_start (auto_input_button, false, false);
437         io_box->pack_start (click_button, false, false);
438         if (!Profile->get_small_screen()) {
439                 toggle_box->pack_start (*io_box, false, false);
440         }
441
442         /* desensitize */
443
444         set_transport_sensitivity (false);
445
446 //      toggle_box->pack_start (preroll_button, false, false);
447 //      toggle_box->pack_start (preroll_clock, false, false);
448
449 //      toggle_box->pack_start (postroll_button, false, false);
450 //      toggle_box->pack_start (postroll_clock, false, false);
451
452         transport_tearoff_hbox.pack_start (*toggle_box, false, false, 4);
453         if (Profile->get_small_screen()) {
454                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false, 4);
455         }
456         transport_tearoff_hbox.pack_start (alert_box, false, false);
457
458         if (Profile->get_sae()) {
459                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
460                 transport_tearoff_hbox.pack_end (*img, false, false, 6);
461         }
462
463         XMLNode* tnode = tearoff_settings ("transport");
464         if (tnode) {
465                 transport_tearoff->set_state (*tnode);
466         }
467 }
468
469 void
470 ARDOUR_UI::manage_window (Window& win)
471 {
472         win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
473         win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
474         win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
475 }
476
477 void
478 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
479 {
480 //      editor->ensure_float (transport_tearoff->tearoff_window());
481         b->remove (*w);
482 }
483
484 void
485 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
486 {
487         b->pack_start (*w);
488         b->reorder_child (*w, n);
489 }
490
491 void
492 ARDOUR_UI::soloing_changed (bool onoff)
493 {
494         if (solo_alert_button.get_active() != onoff) {
495                 solo_alert_button.set_active (onoff);
496         }
497 }
498
499 void
500 ARDOUR_UI::_auditioning_changed (bool onoff)
501 {
502         if (auditioning_alert_button.get_active() != onoff) {
503                 auditioning_alert_button.set_active (onoff);
504                 set_transport_sensitivity (!onoff);
505         }
506 }
507
508 void
509 ARDOUR_UI::auditioning_changed (bool onoff)
510 {
511         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
512 }
513
514 bool
515 ARDOUR_UI::audition_alert_press (GdkEventButton*)
516 {
517         if (_session) {
518                 _session->cancel_audition();
519         }
520         return true;
521 }
522
523 bool
524 ARDOUR_UI::solo_alert_press (GdkEventButton*)
525 {
526         if (_session) {
527                 if (_session->soloing()) {
528                         _session->set_solo (_session->get_routes(), false);
529                 } else if (_session->listening()) {
530                         _session->set_listen (_session->get_routes(), false);
531                 }
532         }
533         return true;
534 }
535
536 void
537 ARDOUR_UI::solo_blink (bool onoff)
538 {
539         if (_session == 0) {
540                 return;
541         }
542
543         if (_session->soloing() || _session->listening()) {
544                 if (onoff) {
545                         solo_alert_button.set_state (STATE_ACTIVE);
546                 } else {
547                         solo_alert_button.set_state (STATE_NORMAL);
548                 }
549         } else {
550                 solo_alert_button.set_active (false);
551                 solo_alert_button.set_state (STATE_NORMAL);
552         }
553 }
554
555 void
556 ARDOUR_UI::sync_blink (bool onoff)
557 {
558         if (_session == 0 || !_session->config.get_external_sync()) {
559                 /* internal sync */
560                 sync_button.set_visual_state (0);
561                 return;
562         }
563
564         if (!_session->transport_locked()) {
565                 /* not locked, so blink on and off according to the onoff argument */
566
567                 if (onoff) {
568                         sync_button.set_visual_state (1); // "-active"
569                 } else {
570                         sync_button.set_visual_state (0); // normal
571                 }
572         } else {
573                 /* locked */
574                 sync_button.set_visual_state (1); // "-active"
575         }
576 }
577
578 void
579 ARDOUR_UI::audition_blink (bool onoff)
580 {
581         if (_session == 0) {
582                 return;
583         }
584
585         if (_session->is_auditioning()) {
586                 if (onoff) {
587                         auditioning_alert_button.set_state (STATE_ACTIVE);
588                 } else {
589                         auditioning_alert_button.set_state (STATE_NORMAL);
590                 }
591         } else {
592                 auditioning_alert_button.set_active (false);
593                 auditioning_alert_button.set_state (STATE_NORMAL);
594         }
595 }
596
597 void
598 ARDOUR_UI::set_transport_sensitivity (bool yn)
599 {
600         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
601         shuttle_box->set_sensitive (yn);
602 }
603
604 void
605 ARDOUR_UI::editor_realized ()
606 {
607         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
608         Config->map_parameters (pc);
609
610         reset_dpi ();
611 }
612
613 void
614 ARDOUR_UI::maximise_editing_space ()
615 {
616         if (!editor) {
617                 return;
618         }
619
620         transport_tearoff->set_visible (false);
621         editor->maximise_editing_space ();
622         if (Config->get_keep_tearoffs()) {
623                 transport_tearoff->set_visible (true);
624         }
625 }
626
627 void
628 ARDOUR_UI::restore_editing_space ()
629 {
630         if (!editor) {
631                 return;
632         }
633
634         transport_tearoff->set_visible (true);
635         editor->restore_editing_space ();
636 }
637
638 bool
639 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
640 {
641         if (ev->button != 3) {
642                 /* this handler is just for button-3 clicks */
643                 return false;
644         }
645
646         RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
647         assert (act);
648
649         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
650         tact->set_active ();
651
652         rc_option_editor->set_current_page (_("Misc"));
653         return true;
654 }