make sure preferences are visible
[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
70 static GtkNotebook*
71 tab_window_root_drop (GtkNotebook* src,
72                       GtkWidget* w,
73                       gint x,
74                       gint y,
75                       gpointer user_data)
76 {
77         return ARDOUR_UI::instance()->tab_window_root_drop (src, w, x, y, user_data);
78 }
79
80 int
81 ARDOUR_UI::setup_windows ()
82 {
83         if (create_editor ()) {
84                 error << _("UI: cannot setup editor") << endmsg;
85                 return -1;
86         }
87
88         if (create_mixer ()) {
89                 error << _("UI: cannot setup mixer") << endmsg;
90                 return -1;
91         }
92
93         if (create_meterbridge ()) {
94                 error << _("UI: cannot setup meterbridge") << endmsg;
95                 return -1;
96         }
97
98         /* all other dialogs are created conditionally */
99
100         we_have_dependents ();
101
102 #ifdef TOP_MENUBAR
103         HBox* status_bar_packer = manage (new HBox);
104         EventBox* status_bar_event_box = manage (new EventBox);
105
106         status_bar_event_box->add (status_bar_label);
107         status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
108         status_bar_label.set_size_request (300, -1);
109         status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
110
111         status_bar_label.show ();
112         status_bar_event_box->show ();
113         status_bar_packer->show ();
114
115         status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
116
117         editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
118         editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 2);
119 #else
120         top_packer.pack_start (menu_bar_base, false, false);
121 #endif
122
123         main_vpacker.pack_start (top_packer, false, false);
124
125         /* now add the transport frame to the top of main window */
126         
127         main_vpacker.pack_start (transport_frame, false, false);
128         main_vpacker.pack_start (_tabs, true, true);
129
130 #ifdef TOP_MENUBAR
131         main_vpacker.pack_start (status_bar_hpacker, false, false);
132 #endif
133
134         setup_transport();
135         build_menu_bar ();
136         setup_tooltips ();
137
138         /* pack the main vpacker into the main window and show everything
139          */
140         
141         _main_window.add (main_vpacker);
142         transport_frame.show_all ();
143         _main_window.show_all ();
144
145         setup_toplevel_window (_main_window, "", this);
146         
147         rc_option_editor = new RCOptionEditor;
148         rc_option_editor->add_to_notebook (_tabs, _("Preferences"), 2);
149         rc_option_editor->contents().show_all ();
150         
151         _tabs.signal_switch_page().connect (sigc::mem_fun (*this, &ARDOUR_UI::tabs_switch));
152
153         /* It would be nice if Gtkmm had wrapped this rather than just
154          * deprecating the old set_window_creation_hook() method, but oh well...
155          */
156         g_signal_connect (_tabs.gobj(), "create-window", (GCallback) ::tab_window_root_drop, this);
157
158         return 0;
159 }
160
161 void
162 ARDOUR_UI::tabs_switch (GtkNotebookPage*, guint page_number)
163 {
164         if (page_number == 2) {
165                 if (!rc_option_editor) {
166                         rc_option_editor = new RCOptionEditor;
167                         rc_option_editor_placeholder.pack_start (*rc_option_editor, true, true);
168                         rc_option_editor_placeholder.show_all ();
169                 }
170         }
171 }
172
173 void
174 ARDOUR_UI::setup_tooltips ()
175 {
176         set_tip (roll_button, _("Play from playhead"));
177         set_tip (stop_button, _("Stop playback"));
178         set_tip (rec_button, _("Toggle record"));
179         set_tip (play_selection_button, _("Play range/selection"));
180         set_tip (goto_start_button, _("Go to start of session"));
181         set_tip (goto_end_button, _("Go to end of session"));
182         set_tip (auto_loop_button, _("Play loop range"));
183         set_tip (midi_panic_button, _("MIDI Panic\nSend note off and reset controller messages on all MIDI channels"));
184         set_tip (auto_return_button, _("Return to last playback start when stopped"));
185         set_tip (follow_edits_button, _("Playhead follows range selections and edits"));
186         set_tip (auto_input_button, _("Be sensible about input monitoring"));
187         set_tip (click_button, _("Enable/Disable audio click"));
188         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
189         set_tip (auditioning_alert_button, _("When active, auditioning is taking place.\nClick to stop the audition"));
190         set_tip (feedback_alert_button, _("When active, there is a feedback loop."));
191         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"));
192         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"));
193         set_tip (editor_meter_peak_display, _("Reset All Peak Indicators"));
194         set_tip (error_alert_button, _("Show Error Log and acknowledge warnings"));
195
196         synchronize_sync_source_and_video_pullup ();
197
198         editor->setup_tooltips ();
199 }
200
201 bool
202 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
203 {
204         bool handled = false;
205
206         switch (ev->button) {
207         case 1:
208                 status_bar_label.set_text ("");
209                 handled = true;
210                 break;
211         default:
212                 break;
213         }
214
215         return handled;
216 }
217
218 void
219 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
220 {
221         string text;
222
223         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
224
225         ArdourLogLevel ll = LogLevelNone;
226
227         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
228                 text = "<span color=\"red\" weight=\"bold\">";
229                 ll = LogLevelError;
230         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
231                 text = "<span color=\"yellow\" weight=\"bold\">";
232                 ll = LogLevelWarning;
233         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
234                 text = "<span color=\"green\" weight=\"bold\">";
235                 ll = LogLevelInfo;
236         } else {
237                 text = "<span color=\"white\" weight=\"bold\">???";
238         }
239
240         _log_not_acknowledged = std::max(_log_not_acknowledged, ll);
241
242 #ifdef TOP_MENUBAR
243         text += prefix;
244         text += "</span>";
245         text += msg;
246
247         status_bar_label.set_markup (text);
248 #endif
249 }
250
251 XMLNode*
252 ARDOUR_UI::tearoff_settings (const char* name) const
253 {
254         XMLNode* ui_node = Config->extra_xml(X_("UI"));
255
256         if (ui_node) {
257                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
258                 if (tearoff_node) {
259                         XMLNode* mnode = tearoff_node->child (name);
260                         return mnode;
261                 }
262         }
263
264         return 0;
265 }
266
267 #define PX_SCALE(px) std::max((float)px, rintf((float)px * UIConfiguration::instance().get_ui_scale()))
268
269 void
270 ARDOUR_UI::setup_transport ()
271 {
272         RefPtr<Action> act;
273
274         transport_tearoff_hbox.set_border_width (PX_SCALE(3));
275         transport_tearoff_hbox.set_spacing (PX_SCALE(3));
276
277         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
278         transport_tearoff->set_name ("TransportBase");
279         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
280
281         if (Profile->get_sae() || Profile->get_mixbus()) {
282                 transport_tearoff->set_can_be_torn_off (false);
283         }
284
285         transport_hbox.pack_start (*transport_tearoff, true, false);
286
287         transport_base.set_name ("TransportBase");
288         transport_base.add (transport_hbox);
289
290         transport_frame.set_shadow_type (SHADOW_OUT);
291         transport_frame.set_name ("BaseFrame");
292         transport_frame.add (transport_base);
293
294         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
295                                                  static_cast<Widget*>(&transport_frame)));
296         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
297                                                  static_cast<Widget*> (&transport_frame), 1));
298         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
299                                                  static_cast<Widget*>(&transport_frame)));
300         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
301                                                   static_cast<Widget*> (&transport_frame), 1));
302
303         auto_return_button.set_text(_("Auto Return"));
304
305         follow_edits_button.set_text(_("Follow Edits"));
306
307 //      auto_input_button.set_text (_("Auto Input"));
308
309         click_button.set_icon (ArdourIcon::TransportMetronom);
310
311         act = ActionManager::get_action ("Transport", "ToggleClick");
312         click_button.set_related_action (act);
313         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
314
315         auto_return_button.set_name ("transport option button");
316         follow_edits_button.set_name ("transport option button");
317         auto_input_button.set_name ("transport option button");
318
319         /* these have to provide a clear indication of active state */
320
321         click_button.set_name ("transport button");
322         sync_button.set_name ("transport active option button");
323
324         stop_button.set_active (true);
325
326         goto_start_button.set_icon (ArdourIcon::TransportStart);
327         goto_end_button.set_icon (ArdourIcon::TransportEnd);
328         roll_button.set_icon (ArdourIcon::TransportPlay);
329         stop_button.set_icon (ArdourIcon::TransportStop);
330         play_selection_button.set_icon (ArdourIcon::TransportRange);
331         auto_loop_button.set_icon (ArdourIcon::TransportLoop);
332         rec_button.set_icon (ArdourIcon::RecButton);
333         midi_panic_button.set_icon (ArdourIcon::TransportPanic);
334
335         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
336         stop_button.set_related_action (act);
337         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
338         roll_button.set_related_action (act);
339         act = ActionManager::get_action (X_("Transport"), X_("Record"));
340         rec_button.set_related_action (act);
341         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
342         goto_start_button.set_related_action (act);
343         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
344         goto_end_button.set_related_action (act);
345         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
346         auto_loop_button.set_related_action (act);
347         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
348         play_selection_button.set_related_action (act);
349         act = ActionManager::get_action (X_("MIDI"), X_("panic"));
350         midi_panic_button.set_related_action (act);
351         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
352         sync_button.set_related_action (act);
353
354         /* clocks, etc. */
355
356         ARDOUR_UI::Clock.connect (sigc::mem_fun (primary_clock, &AudioClock::set));
357         ARDOUR_UI::Clock.connect (sigc::mem_fun (secondary_clock, &AudioClock::set));
358
359         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
360         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
361         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
362
363         act = ActionManager::get_action ("Transport", "ToggleAutoReturn");
364         auto_return_button.set_related_action (act);
365         act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
366         follow_edits_button.set_related_action (act);
367         act = ActionManager::get_action ("Transport", "ToggleAutoInput");
368         auto_input_button.set_related_action (act);
369
370         /* alerts */
371
372         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
373
374         solo_alert_button.set_name ("rude solo");
375         act = ActionManager::get_action (X_("Main"), X_("cancel-solo"));
376         solo_alert_button.set_related_action (act);
377         auditioning_alert_button.set_name ("rude audition");
378         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
379         feedback_alert_button.set_name ("feedback alert");
380         feedback_alert_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::feedback_alert_press), false);
381         error_alert_button.set_name ("error alert");
382         error_alert_button.signal_button_release_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::error_alert_press), false);
383         act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
384         error_alert_button.set_related_action(act);
385         error_alert_button.set_fallthrough_to_parent(true);
386
387         alert_box.set_homogeneous (true);
388         alert_box.set_spacing (PX_SCALE(2));
389         alert_box.pack_start (solo_alert_button, true, true);
390         alert_box.pack_start (auditioning_alert_button, true, true);
391         alert_box.pack_start (feedback_alert_button, true, true);
392
393         /* all transport buttons should be the same size vertically and
394          * horizontally
395          */
396
397         Glib::RefPtr<SizeGroup> transport_button_size_group = SizeGroup::create (SIZE_GROUP_BOTH);
398         transport_button_size_group->add_widget (goto_start_button);
399         transport_button_size_group->add_widget (goto_end_button);
400         transport_button_size_group->add_widget (auto_loop_button);
401         transport_button_size_group->add_widget (rec_button);
402         transport_button_size_group->add_widget (play_selection_button);
403         transport_button_size_group->add_widget (roll_button);
404         transport_button_size_group->add_widget (stop_button);
405
406         /* the icon for this has an odd aspect ratio, so fatten up the button */
407         midi_panic_button.set_size_request (PX_SCALE(25), -1);
408         goto_start_button.set_size_request (PX_SCALE(28), PX_SCALE(44));
409         click_button.set_size_request (PX_SCALE(32), PX_SCALE(44));
410
411
412         HBox* tbox1 = manage (new HBox);
413         HBox* tbox2 = manage (new HBox);
414         HBox* tbox = manage (new HBox);
415
416         VBox* vbox1 = manage (new VBox);
417         VBox* vbox2 = manage (new VBox);
418
419         Alignment* a1 = manage (new Alignment);
420         Alignment* a2 = manage (new Alignment);
421
422         tbox1->set_spacing (PX_SCALE(2));
423         tbox2->set_spacing (PX_SCALE(2));
424         tbox->set_spacing (PX_SCALE(2));
425
426         if (!Profile->get_trx()) {
427                 tbox1->pack_start (midi_panic_button, true, true, 5);
428                 tbox1->pack_start (click_button, true, true, 5);
429         }
430
431         tbox1->pack_start (goto_start_button, true, true);
432         tbox1->pack_start (goto_end_button, true, true);
433         tbox1->pack_start (auto_loop_button, true, true);
434
435         if (!Profile->get_trx()) {
436                 tbox2->pack_start (play_selection_button, true, true);
437         }
438         tbox2->pack_start (roll_button, true, true);
439         tbox2->pack_start (stop_button, true, true);
440         tbox2->pack_start (rec_button, true, true, 5);
441
442         vbox1->pack_start (*tbox1, true, true);
443         vbox2->pack_start (*tbox2, true, true);
444
445         a1->add (*vbox1);
446         a1->set (0.5, 0.5, 0.0, 1.0);
447         a2->add (*vbox2);
448         a2->set (0.5, 0.5, 0.0, 1.0);
449
450         tbox->pack_start (*a1, false, false);
451         tbox->pack_start (*a2, false, false);
452
453         HBox* clock_box = manage (new HBox);
454
455         clock_box->pack_start (*primary_clock, false, false);
456         if (!ARDOUR::Profile->get_small_screen() && !ARDOUR::Profile->get_trx()) {
457                 clock_box->pack_start (*secondary_clock, false, false);
458         }
459         clock_box->set_spacing (PX_SCALE(3));
460
461         shuttle_box = manage (new ShuttleControl);
462         shuttle_box->show ();
463
464         VBox* transport_vbox = manage (new VBox);
465         transport_vbox->set_name ("TransportBase");
466         transport_vbox->set_border_width (0);
467         transport_vbox->set_spacing (PX_SCALE(3));
468         transport_vbox->pack_start (*tbox, true, true, 0);
469
470         if (!Profile->get_trx()) {
471                 transport_vbox->pack_start (*shuttle_box, false, false, 0);
472         }
473
474         time_info_box = manage (new TimeInfoBox);
475
476         if (ARDOUR::Profile->get_trx()) {
477                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
478         }
479
480         transport_tearoff_hbox.pack_start (*transport_vbox, false, false);
481
482         /* transport related toggle controls */
483
484         VBox* auto_box = manage (new VBox);
485         auto_box->set_homogeneous (true);
486         auto_box->set_spacing (PX_SCALE(2));
487         auto_box->pack_start (sync_button, true, true);
488         if (!ARDOUR::Profile->get_trx()) {
489                 auto_box->pack_start (follow_edits_button, true, true);
490                 auto_box->pack_start (auto_return_button, true, true);
491         }
492
493         if (!ARDOUR::Profile->get_trx()) {
494                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
495         }
496         transport_tearoff_hbox.pack_start (*clock_box, true, true);
497
498         if (ARDOUR::Profile->get_trx()) {
499                 transport_tearoff_hbox.pack_start (*auto_box, false, false);
500         }
501
502         if (!ARDOUR::Profile->get_trx()) {
503                 transport_tearoff_hbox.pack_start (*time_info_box, false, false);
504         }
505
506         if (!ARDOUR::Profile->get_trx()) {
507                 transport_tearoff_hbox.pack_start (alert_box, false, false);
508                 transport_tearoff_hbox.pack_start (meter_box, false, false);
509                 transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false);
510         }
511
512         if (Profile->get_sae()) {
513                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
514                 transport_tearoff_hbox.pack_end (*img, false, false);
515         }
516
517         /* desensitize */
518
519         set_transport_sensitivity (false);
520
521         XMLNode* tnode = tearoff_settings ("transport");
522         if (tnode) {
523                 transport_tearoff->set_state (*tnode);
524         }
525 }
526 #undef PX_SCALE
527
528 void
529 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
530 {
531         b->remove (*w);
532 }
533
534 void
535 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
536 {
537         b->pack_start (*w);
538         b->reorder_child (*w, n);
539 }
540
541 void
542 ARDOUR_UI::reattach_all_tearoffs ()
543 {
544         if (transport_tearoff) transport_tearoff->put_it_back();
545         if (editor) editor->reattach_all_tearoffs ();
546 }
547
548 void
549 ARDOUR_UI::soloing_changed (bool onoff)
550 {
551         if (solo_alert_button.get_active() != onoff) {
552                 solo_alert_button.set_active (onoff);
553         }
554 }
555
556 void
557 ARDOUR_UI::_auditioning_changed (bool onoff)
558 {
559         auditioning_alert_button.set_active (onoff);
560         set_transport_sensitivity (!onoff);
561 }
562
563 void
564 ARDOUR_UI::auditioning_changed (bool onoff)
565 {
566         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
567 }
568
569 bool
570 ARDOUR_UI::audition_alert_press (GdkEventButton*)
571 {
572         if (_session) {
573                 _session->cancel_audition();
574         }
575         return true;
576 }
577
578 bool
579 ARDOUR_UI::feedback_alert_press (GdkEventButton *)
580 {
581         return true;
582 }
583
584 bool
585 ARDOUR_UI::error_alert_press (GdkEventButton* ev)
586 {
587         bool do_toggle = true;
588         if (ev->button == 1) {
589                 if (_log_not_acknowledged == LogLevelError) {
590                         // just acknowledge the error, don't hide the log if it's already visible
591                         RefPtr<Action> act = ActionManager::get_action (X_("Editor"), X_("toggle-log-window"));
592                         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
593                         if (tact && tact->get_active()) {
594                                 do_toggle = false;
595                         }
596                 }
597                 _log_not_acknowledged = LogLevelNone;
598                 error_blink (false); // immediate acknowledge
599         }
600         // maybe fall through to to button toggle
601         return !do_toggle;
602 }
603
604 void
605 ARDOUR_UI::solo_blink (bool onoff)
606 {
607         if (_session == 0) {
608                 return;
609         }
610
611         if (_session->soloing() || _session->listening()) {
612                 if (onoff) {
613                         solo_alert_button.set_active (true);
614                 } else {
615                         solo_alert_button.set_active (false);
616                 }
617         } else {
618                 solo_alert_button.set_active (false);
619         }
620 }
621
622 void
623 ARDOUR_UI::sync_blink (bool onoff)
624 {
625         if (_session == 0 || !_session->config.get_external_sync()) {
626                 /* internal sync */
627                 sync_button.set_active (false);
628                 return;
629         }
630
631         if (!_session->transport_locked()) {
632                 /* not locked, so blink on and off according to the onoff argument */
633
634                 if (onoff) {
635                         sync_button.set_active (true);
636                 } else {
637                         sync_button.set_active (false);
638                 }
639         } else {
640                 /* locked */
641                 sync_button.set_active (true);
642         }
643 }
644
645 void
646 ARDOUR_UI::audition_blink (bool onoff)
647 {
648         if (_session == 0) {
649                 return;
650         }
651
652         if (_session->is_auditioning()) {
653                 if (onoff) {
654                         auditioning_alert_button.set_active (true);
655                 } else {
656                         auditioning_alert_button.set_active (false);
657                 }
658         } else {
659                 auditioning_alert_button.set_active (false);
660         }
661 }
662
663 void
664 ARDOUR_UI::feedback_blink (bool onoff)
665 {
666         if (_feedback_exists) {
667                 if (onoff) {
668                         feedback_alert_button.set_active (true);
669                 } else {
670                         feedback_alert_button.set_active (false);
671                 }
672         } else {
673                 feedback_alert_button.set_active (false);
674         }
675 }
676
677 void
678 ARDOUR_UI::error_blink (bool onoff)
679 {
680         switch (_log_not_acknowledged) {
681                 case LogLevelError:
682                         // blink
683                         if (onoff) {
684                                 error_alert_button.set_custom_led_color(0xff0000ff); // bright red
685                         } else {
686                                 error_alert_button.set_custom_led_color(0x880000ff); // dark red
687                         }
688                         break;
689                 case LogLevelWarning:
690                         error_alert_button.set_custom_led_color(0xccaa00ff); // yellow
691                         break;
692                 case LogLevelInfo:
693                         error_alert_button.set_custom_led_color(0x88cc00ff); // lime green
694                         break;
695                 default:
696                         error_alert_button.set_custom_led_color(0x333333ff); // gray
697                         break;
698         }
699 }
700
701
702
703 void
704 ARDOUR_UI::set_transport_sensitivity (bool yn)
705 {
706         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
707         shuttle_box->set_sensitive (yn);
708 }
709
710 void
711 ARDOUR_UI::editor_realized ()
712 {
713         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
714         Config->map_parameters (pc);
715
716         UIConfiguration::instance().reset_dpi ();
717 }
718
719 void
720 ARDOUR_UI::update_tearoff_visibility ()
721 {
722         if (editor) {
723                 editor->update_tearoff_visibility ();
724         }
725 }
726
727 void
728 ARDOUR_UI::maximise_editing_space ()
729 {
730         if (editor) {
731                 editor->maximise_editing_space ();
732         }
733 }
734
735 void
736 ARDOUR_UI::restore_editing_space ()
737 {
738         if (editor) {
739                 editor->restore_editing_space ();
740         }
741 }
742
743 void
744 ARDOUR_UI::show_ui_prefs ()
745 {
746         tabs().set_current_page (2);
747         rc_option_editor->set_current_page (_("GUI"));
748 }
749
750
751 bool
752 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
753 {
754         if (ev->button != 3) {
755                 /* this handler is just for button-3 clicks */
756                 return false;
757         }
758
759         tabs().set_current_page (2);
760         rc_option_editor->set_current_page (_("Misc"));
761         return true;
762 }
763
764 void
765 ARDOUR_UI::toggle_follow_edits ()
766 {
767         RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleFollowEdits"));
768         assert (act);
769
770         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
771         assert (tact);
772
773         UIConfiguration::instance().set_follow_edits (tact->get_active ());
774 }
775
776