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