space out transport buttons
[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 (click_button, _("Enable/Disable audio click"));
140         set_tip (time_master_button, string_compose (_("Does %1 control the time?"), PROGRAM_NAME));
141         set_tip (solo_alert_button, _("When active, something is soloed.\nClick to de-solo everything"));
142         set_tip (auditioning_alert_button, _("When active, auditioning is taking place\nClick to stop the audition"));
143         set_tip (primary_clock, _("Primary Clock"));
144         set_tip (secondary_clock, _("Secondary Clock"));
145
146         synchronize_sync_source_and_video_pullup ();
147
148         editor->setup_tooltips ();
149 }
150
151 bool
152 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
153 {
154         bool handled = false;
155
156         switch (ev->button) {
157         case 1:
158                 status_bar_label.set_text ("");
159                 handled = true;
160                 break;
161         default:
162                 break;
163         }
164
165         return handled;
166 }
167
168 void
169 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
170 {
171         string text;
172
173         UI::display_message (prefix, prefix_len, ptag, mtag, msg);
174 #ifdef TOP_MENUBAR
175
176         if (strcmp (prefix, _("[ERROR]: ")) == 0) {
177                 text = "<span color=\"red\" weight=\"bold\">";
178         } else if (strcmp (prefix, _("[WARNING]: ")) == 0) {
179                 text = "<span color=\"yellow\" weight=\"bold\">";
180         } else if (strcmp (prefix, _("[INFO]: ")) == 0) {
181                 text = "<span color=\"green\" weight=\"bold\">";
182         } else {
183                 text = "<span color=\"white\" weight=\"bold\">???";
184         }
185
186         text += prefix;
187         text += "</span>";
188         text += msg;
189
190         status_bar_label.set_markup (text);
191 #endif
192 }
193
194 XMLNode*
195 ARDOUR_UI::tearoff_settings (const char* name) const
196 {
197         XMLNode* ui_node = Config->extra_xml(X_("UI"));
198
199         if (ui_node) {
200                 XMLNode* tearoff_node = ui_node->child (X_("Tearoffs"));
201                 if (tearoff_node) {
202                         XMLNode* mnode = tearoff_node->child (name);
203                         return mnode;
204                 }
205         }
206
207         return 0;
208 }
209
210 void
211 ARDOUR_UI::setup_transport ()
212 {
213         transport_tearoff = manage (new TearOff (transport_tearoff_hbox));
214         transport_tearoff->set_name ("TransportBase");
215         transport_tearoff->tearoff_window().signal_key_press_event().connect (sigc::bind (sigc::ptr_fun (relay_key_press), &transport_tearoff->tearoff_window()), false);
216
217         if (Profile->get_sae()) {
218                 transport_tearoff->set_can_be_torn_off (false);
219         }
220
221         transport_hbox.pack_start (*transport_tearoff, true, false);
222
223         transport_base.set_name ("TransportBase");
224         transport_base.add (transport_hbox);
225
226         transport_frame.set_shadow_type (SHADOW_OUT);
227         transport_frame.set_name ("BaseFrame");
228         transport_frame.add (transport_base);
229
230         transport_tearoff->Detach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
231                                                  static_cast<Widget*>(&transport_frame)));
232         transport_tearoff->Attach.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
233                                                  static_cast<Widget*> (&transport_frame), 1));
234         transport_tearoff->Hidden.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::detach_tearoff), static_cast<Box*>(&top_packer),
235                                                  static_cast<Widget*>(&transport_frame)));
236         transport_tearoff->Visible.connect (sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::reattach_tearoff), static_cast<Box*> (&top_packer),
237                                                   static_cast<Widget*> (&transport_frame), 1));
238
239         auto_return_button.set_name ("TransportButton");
240         auto_play_button.set_name ("TransportButton");
241         auto_input_button.set_name ("TransportButton");
242         click_button.set_name ("TransportButton");
243         time_master_button.set_name ("TransportButton");
244         sync_button.set_name ("TransportSyncButton");
245
246         stop_button.set_size_request(29, -1);
247         roll_button.set_size_request(29, -1);
248         auto_loop_button.set_size_request(29, -1);
249         play_selection_button.set_size_request(29, -1);
250         goto_start_button.set_size_request(29, -1);
251         goto_end_button.set_size_request(29, -1);
252         rec_button.set_size_request(29, -1);
253
254         Widget* w;
255
256         stop_button.set_active_state (Active);
257
258
259         goto_start_button.set_image (get_icon (X_("transport_start")));
260         goto_end_button.set_image (get_icon (X_("transport_end")));
261         roll_button.set_image (get_icon (X_("transport_play")));
262         stop_button.set_image (get_icon (X_("transport_stop")));
263         play_selection_button.set_image (get_icon (X_("transport_range")));
264         rec_button.set_image (get_icon (X_("transport_record")));
265         auto_loop_button.set_image (get_icon (X_("transport_loop")));
266         join_play_range_button.set_image (get_icon (X_("tool_object_range")));
267
268         RefPtr<Action> act;
269
270         act = ActionManager::get_action (X_("Transport"), X_("Stop"));
271         stop_button.set_related_action (act);
272         act = ActionManager::get_action (X_("Transport"), X_("Roll"));
273         roll_button.set_related_action (act);
274         act = ActionManager::get_action (X_("Transport"), X_("Record"));
275         rec_button.set_related_action (act);
276         act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
277         goto_start_button.set_related_action (act);
278         act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
279         goto_end_button.set_related_action (act);
280         act = ActionManager::get_action (X_("Transport"), X_("Loop"));
281         auto_loop_button.set_related_action (act);
282         act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
283         play_selection_button.set_related_action (act);
284
285
286         act = ActionManager::get_action (X_("Transport"), X_("ToggleTimeMaster"));
287         act->connect_proxy (time_master_button);
288         act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
289         act->connect_proxy (sync_button);
290
291
292         /* clocks, etc. */
293
294         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &AudioClock::set), 'p'));
295         ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &AudioClock::set), 's'));
296
297         primary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
298         secondary_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
299         big_clock->ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
300
301         ActionManager::get_action ("Transport", "ToggleAutoReturn")->connect_proxy (auto_return_button);
302         ActionManager::get_action ("Transport", "ToggleAutoPlay")->connect_proxy (auto_play_button);
303         ActionManager::get_action ("Transport", "ToggleAutoInput")->connect_proxy (auto_input_button);
304
305         /* alerts */
306
307         /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
308
309         solo_alert_button.set_name ("TransportSoloAlert");
310         solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
311         auditioning_alert_button.set_name ("TransportAuditioningAlert");
312         auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
313
314         alert_box.pack_start (solo_alert_button, false, false);
315         alert_box.pack_start (auditioning_alert_button, false, false);
316
317         HBox* tbox = manage (new HBox);
318         tbox->set_spacing (2);
319
320         transport_tearoff_hbox.set_border_width (3);
321
322         tbox->pack_start (goto_start_button, false, false);
323         tbox->pack_start (goto_end_button, false, false);
324
325         /* translators: Egternal is "External" with a descender character */
326         set_size_request_to_display_given_text (sync_button, X_("Egternal"), 4, 10);
327
328         // transport_tearoff_hbox.pack_start (*svbox, false, false, 3);
329
330         if (Profile->get_sae()) {
331                 tbox->pack_start (auto_loop_button);
332                 tbox->pack_start (roll_button);
333         } else {
334                 tbox->pack_start (auto_loop_button, false, false);
335
336                 Frame* jpframe = manage (new Frame);
337                 HBox* jpbox = manage (new HBox);
338
339                 jpframe->add (*jpbox);
340                 jpframe->set_shadow_type (SHADOW_NONE);
341                 
342                 jpbox->pack_start (play_selection_button, false, false);
343                 jpbox->pack_start (join_play_range_button, false, false);
344                 jpbox->pack_start (roll_button, false, false);
345
346                 tbox->pack_start (*jpframe, false, false);
347         }
348         tbox->pack_start (stop_button, false, false);
349         tbox->pack_start (rec_button, false, false, 6);
350
351         HBox* clock_box = manage (new HBox);
352         clock_box->set_border_width (2);
353         primary_clock->set_border_width (2);
354         clock_box->pack_start (*primary_clock, false, false);
355         if (!ARDOUR::Profile->get_small_screen()) {
356                 secondary_clock->set_border_width (2);
357                 clock_box->pack_start (*secondary_clock, false, false);
358         }
359
360
361         shuttle_box = new ShuttleControl;
362         shuttle_box->show ();
363
364         VBox* transport_vbox = manage (new VBox);
365         transport_vbox->set_name ("TransportBase");
366         transport_vbox->set_border_width (3);
367         transport_vbox->set_spacing (3);
368         transport_vbox->pack_start (*tbox, true, true, 0);
369         transport_vbox->pack_start (*shuttle_box, false, false, 0);
370
371         transport_tearoff_hbox.pack_start (*transport_vbox, false, false, 0);
372
373         Table* time_controls_table = manage (new Table (2, 2));
374         time_controls_table->set_col_spacings (6);
375         time_controls_table->attach (sync_button, 0, 1, 0, 1, Gtk::AttachOptions(FILL|EXPAND), Gtk::AttachOptions(0));
376         time_controls_table->attach (time_master_button, 0, 1, 1, 2, Gtk::AttachOptions(FILL|EXPAND), Gtk::AttachOptions(0));
377
378         w = manage (new Image (get_icon (X_("metronome"))));
379         w->show ();
380         click_button.add (*w);
381
382         ActionManager::get_action ("Transport", "ToggleClick")->connect_proxy (click_button);
383
384         click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
385         
386         time_controls_table->attach (click_button, 1, 2, 0, 2, Gtk::AttachOptions(FILL|EXPAND), FILL);
387
388         transport_tearoff_hbox.pack_start (*clock_box, false, false);
389         transport_tearoff_hbox.pack_start (*time_controls_table, false, false, 4);
390
391         time_info_box = manage (new TimeInfoBox);
392         transport_tearoff_hbox.pack_start (*time_info_box, false, false);
393
394         HBox* toggle_box = manage(new HBox);
395
396         VBox* auto_box = manage (new VBox);
397         auto_box->pack_start (auto_play_button, false, false);
398         auto_box->pack_start (auto_return_button, false, false);
399         if (!Profile->get_small_screen()) {
400                 toggle_box->pack_start (*auto_box, false, false);
401         }
402
403         VBox* io_box = manage (new VBox);
404         io_box->pack_start (auto_input_button, false, false);
405         //io_box->pack_start (click_button, false, false);
406         if (!Profile->get_small_screen()) {
407                 toggle_box->pack_start (*io_box, false, false);
408         }
409
410         /* desensitize */
411
412         set_transport_sensitivity (false);
413
414         transport_tearoff_hbox.pack_start (*toggle_box, false, false, 4);
415         if (Profile->get_small_screen()) {
416                 transport_tearoff_hbox.pack_start (_editor_transport_box, false, false, 4);
417         }
418         transport_tearoff_hbox.pack_start (alert_box, false, false);
419
420         if (Profile->get_sae()) {
421                 Image* img = manage (new Image ((::get_icon (X_("sae")))));
422                 transport_tearoff_hbox.pack_end (*img, false, false, 6);
423         }
424
425         XMLNode* tnode = tearoff_settings ("transport");
426         if (tnode) {
427                 transport_tearoff->set_state (*tnode);
428         }
429 }
430
431 void
432 ARDOUR_UI::manage_window (Window& win)
433 {
434         win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
435         win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
436         win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
437 }
438
439 void
440 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
441 {
442 //      editor->ensure_float (transport_tearoff->tearoff_window());
443         b->remove (*w);
444 }
445
446 void
447 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
448 {
449         b->pack_start (*w);
450         b->reorder_child (*w, n);
451 }
452
453 void
454 ARDOUR_UI::soloing_changed (bool onoff)
455 {
456         if (solo_alert_button.get_active() != onoff) {
457                 solo_alert_button.set_active (onoff);
458         }
459 }
460
461 void
462 ARDOUR_UI::_auditioning_changed (bool onoff)
463 {
464         if (auditioning_alert_button.get_active() != onoff) {
465                 auditioning_alert_button.set_active (onoff);
466                 set_transport_sensitivity (!onoff);
467         }
468 }
469
470 void
471 ARDOUR_UI::auditioning_changed (bool onoff)
472 {
473         UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
474 }
475
476 bool
477 ARDOUR_UI::audition_alert_press (GdkEventButton*)
478 {
479         if (_session) {
480                 _session->cancel_audition();
481         }
482         return true;
483 }
484
485 bool
486 ARDOUR_UI::solo_alert_press (GdkEventButton*)
487 {
488         if (_session) {
489                 if (_session->soloing()) {
490                         _session->set_solo (_session->get_routes(), false);
491                 } else if (_session->listening()) {
492                         _session->set_listen (_session->get_routes(), false);
493                 }
494         }
495         return true;
496 }
497
498 void
499 ARDOUR_UI::solo_blink (bool onoff)
500 {
501         if (_session == 0) {
502                 return;
503         }
504
505         if (_session->soloing() || _session->listening()) {
506                 if (onoff) {
507                         solo_alert_button.set_state (STATE_ACTIVE);
508                 } else {
509                         solo_alert_button.set_state (STATE_NORMAL);
510                 }
511         } else {
512                 solo_alert_button.set_active (false);
513                 solo_alert_button.set_state (STATE_NORMAL);
514         }
515 }
516
517 void
518 ARDOUR_UI::sync_blink (bool onoff)
519 {
520         if (_session == 0 || !_session->config.get_external_sync()) {
521                 /* internal sync */
522                 sync_button.set_visual_state (0);
523                 return;
524         }
525
526         if (!_session->transport_locked()) {
527                 /* not locked, so blink on and off according to the onoff argument */
528
529                 if (onoff) {
530                         sync_button.set_visual_state (1); // "-active"
531                 } else {
532                         sync_button.set_visual_state (0); // normal
533                 }
534         } else {
535                 /* locked */
536                 sync_button.set_visual_state (1); // "-active"
537         }
538 }
539
540 void
541 ARDOUR_UI::audition_blink (bool onoff)
542 {
543         if (_session == 0) {
544                 return;
545         }
546
547         if (_session->is_auditioning()) {
548                 if (onoff) {
549                         auditioning_alert_button.set_state (STATE_ACTIVE);
550                 } else {
551                         auditioning_alert_button.set_state (STATE_NORMAL);
552                 }
553         } else {
554                 auditioning_alert_button.set_active (false);
555                 auditioning_alert_button.set_state (STATE_NORMAL);
556         }
557 }
558
559 void
560 ARDOUR_UI::set_transport_sensitivity (bool yn)
561 {
562         ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
563         shuttle_box->set_sensitive (yn);
564 }
565
566 void
567 ARDOUR_UI::editor_realized ()
568 {
569         boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
570         Config->map_parameters (pc);
571
572         reset_dpi ();
573 }
574
575 void
576 ARDOUR_UI::maximise_editing_space ()
577 {
578         if (!editor) {
579                 return;
580         }
581
582         transport_tearoff->set_visible (false);
583         editor->maximise_editing_space ();
584         if (Config->get_keep_tearoffs()) {
585                 transport_tearoff->set_visible (true);
586         }
587 }
588
589 void
590 ARDOUR_UI::restore_editing_space ()
591 {
592         if (!editor) {
593                 return;
594         }
595
596         transport_tearoff->set_visible (true);
597         editor->restore_editing_space ();
598 }
599
600 bool
601 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
602 {
603         if (ev->button != 3) {
604                 /* this handler is just for button-3 clicks */
605                 return false;
606         }
607
608         RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
609         assert (act);
610
611         RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
612         tact->set_active ();
613
614         rc_option_editor->set_current_page (_("Misc"));
615         return true;
616 }