add call to ./package to noderun script
[ardour2.git] / gtk2_ardour / ardour_ui2.cc
blob87d119bd4738a4d180b8d5f3bc8c83a10e0cce98
1 /*
2 Copyright (C) 1999 Paul Davis
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.
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.
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.
20 #ifdef WAF_BUILD
21 #include "gtk2ardour-config.h"
22 #endif
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <unistd.h>
27 #include <cerrno>
28 #include <iostream>
29 #include <cmath>
31 #include <sigc++/bind.h>
32 #include "pbd/error.h"
33 #include "pbd/basename.h"
34 #include "pbd/fastlog.h"
35 #include <gtkmm2ext/utils.h>
36 #include <gtkmm2ext/click_box.h>
37 #include <gtkmm2ext/tearoff.h>
39 #include "ardour/session.h"
40 #include "ardour/audioengine.h"
41 #include "ardour/ardour.h"
42 #include "ardour/profile.h"
43 #include "ardour/route.h"
45 #include "ardour_ui.h"
46 #include "keyboard.h"
47 #include "public_editor.h"
48 #include "audio_clock.h"
49 #include "actions.h"
50 #include "utils.h"
51 #include "theme_manager.h"
52 #include "midi_tracer.h"
53 #include "global_port_matrix.h"
54 #include "location_ui.h"
55 #include "rc_option_editor.h"
57 #include "i18n.h"
59 using namespace std;
60 using namespace ARDOUR;
61 using namespace PBD;
62 using namespace Gtkmm2ext;
63 using namespace Gtk;
64 using namespace Glib;
66 int
67 ARDOUR_UI::setup_windows ()
69 if (create_editor ()) {
70 error << _("UI: cannot setup editor") << endmsg;
71 return -1;
74 if (create_mixer ()) {
75 error << _("UI: cannot setup mixer") << endmsg;
76 return -1;
79 /* all other dialogs are created conditionally */
81 we_have_dependents ();
83 theme_manager->signal_unmap().connect (sigc::bind (sigc::ptr_fun(&ActionManager::uncheck_toggleaction), X_("<Actions>/Common/ToggleThemeManager")));
85 #ifdef TOP_MENUBAR
86 HBox* status_bar_packer = manage (new HBox);
87 EventBox* status_bar_event_box = manage (new EventBox);
89 status_bar_event_box->add (status_bar_label);
90 status_bar_event_box->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
91 status_bar_label.set_size_request (300, -1);
92 status_bar_packer->pack_start (*status_bar_event_box, true, true, 6);
93 status_bar_packer->pack_start (error_log_button, false, false);
95 status_bar_label.show ();
96 status_bar_event_box->show ();
97 status_bar_packer->show ();
98 error_log_button.show ();
100 error_log_button.signal_clicked().connect (mem_fun (*this, &UI::toggle_errors));
101 status_bar_event_box->signal_button_press_event().connect (mem_fun (*this, &ARDOUR_UI::status_bar_button_press));
103 editor->get_status_bar_packer().pack_start (*status_bar_packer, true, true);
104 editor->get_status_bar_packer().pack_start (menu_bar_base, false, false, 6);
105 #else
106 top_packer.pack_start (menu_bar_base, false, false);
107 #endif
109 top_packer.pack_start (transport_frame, false, false);
111 editor->add_toplevel_controls (top_packer);
113 setup_transport();
114 build_menu_bar ();
116 setup_tooltips ();
118 return 0;
121 void
122 ARDOUR_UI::setup_tooltips ()
124 set_tip (roll_button, _("Play from playhead"));
125 set_tip (stop_button, _("Stop playback"));
126 set_tip (rec_button, _("Toggle record"));
127 set_tip (play_selection_button, _("Play range/selection"));
128 set_tip (join_play_range_button, _("Always play range/selection"));
129 set_tip (goto_start_button, _("Go to start of session"));
130 set_tip (goto_end_button, _("Go to end of session"));
131 set_tip (auto_loop_button, _("Play loop range"));
133 set_tip (auto_return_button, _("Return to last playback start when stopped"));
134 set_tip (auto_play_button, _("Start playback after any locate"));
135 set_tip (auto_input_button, _("Be sensible about input monitoring"));
136 set_tip (punch_in_button, _("Start recording at auto-punch start"));
137 set_tip (punch_out_button, _("Stop recording at auto-punch end"));
138 set_tip (click_button, _("Enable/Disable audio click"));
139 set_tip (time_master_button, string_compose (_("Does %1 control the time?"), PROGRAM_NAME));
140 set_tip (shuttle_box, _("Shuttle speed control"));
141 set_tip (shuttle_units_button, _("Select semitones or %%-age for speed display"));
142 set_tip (speed_display_box, _("Current transport speed"));
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"));
148 synchronize_sync_source_and_video_pullup ();
150 editor->setup_tooltips ();
153 bool
154 ARDOUR_UI::status_bar_button_press (GdkEventButton* ev)
156 bool handled = false;
158 switch (ev->button) {
159 case 1:
160 status_bar_label.set_text ("");
161 handled = true;
162 break;
163 default:
164 break;
167 return handled;
170 void
171 ARDOUR_UI::display_message (const char *prefix, gint prefix_len, RefPtr<TextBuffer::Tag> ptag, RefPtr<TextBuffer::Tag> mtag, const char *msg)
173 string text;
175 UI::display_message (prefix, prefix_len, ptag, mtag, msg);
176 #ifdef TOP_MENUBAR
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\">???";
188 text += prefix;
189 text += "</span>";
190 text += msg;
192 status_bar_label.set_markup (text);
193 #endif
196 XMLNode*
197 ARDOUR_UI::tearoff_settings (const char* name) const
199 XMLNode* ui_node = Config->extra_xml(X_("UI"));
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;
209 return 0;
212 void
213 ARDOUR_UI::setup_transport ()
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);
219 if (Profile->get_sae()) {
220 transport_tearoff->set_can_be_torn_off (false);
223 transport_hbox.pack_start (*transport_tearoff, true, false);
225 transport_base.set_name ("TransportBase");
226 transport_base.add (transport_hbox);
228 transport_frame.set_shadow_type (SHADOW_OUT);
229 transport_frame.set_name ("BaseFrame");
230 transport_frame.add (transport_base);
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));
241 shuttle_box.set_name ("TransportButton");
242 goto_start_button.set_name ("TransportButton");
243 goto_end_button.set_name ("TransportButton");
244 roll_button.set_name ("TransportButton");
245 stop_button.set_name ("TransportButton");
246 play_selection_button.set_name ("TransportButton");
247 rec_button.set_name ("TransportRecButton");
248 auto_loop_button.set_name ("TransportButton");
249 join_play_range_button.set_name ("TransportButton");
251 auto_return_button.set_name ("TransportButton");
252 auto_play_button.set_name ("TransportButton");
253 auto_input_button.set_name ("TransportButton");
254 punch_in_button.set_name ("TransportButton");
255 punch_out_button.set_name ("TransportButton");
256 click_button.set_name ("TransportButton");
257 time_master_button.set_name ("TransportButton");
258 sync_button.set_name ("TransportSyncButton");
260 stop_button.set_size_request(29, -1);
261 roll_button.set_size_request(29, -1);
262 auto_loop_button.set_size_request(29, -1);
263 play_selection_button.set_size_request(29, -1);
264 goto_start_button.set_size_request(29, -1);
265 goto_end_button.set_size_request(29, -1);
266 rec_button.set_size_request(29, -1);
268 Widget* w;
270 stop_button.set_visual_state (1);
272 w = manage (new Image (get_icon (X_("transport_start"))));
273 w->show();
274 goto_start_button.add (*w);
275 w = manage (new Image (get_icon (X_("transport_end"))));
276 w->show();
277 goto_end_button.add (*w);
278 w = manage (new Image (get_icon (X_("transport_play"))));
279 w->show();
280 roll_button.add (*w);
281 w = manage (new Image (get_icon (X_("transport_stop"))));
282 w->show();
283 stop_button.add (*w);
284 w = manage (new Image (get_icon (X_("transport_range"))));
285 w->show();
286 play_selection_button.add (*w);
287 w = manage (new Image (get_icon (X_("transport_record"))));
288 w->show();
289 rec_button.add (*w);
290 w = manage (new Image (get_icon (X_("transport_loop"))));
291 w->show();
292 auto_loop_button.add (*w);
293 w = manage (new Image (get_icon (X_("join_tools"))));
294 w->show ();
295 join_play_range_button.add (*w);
297 RefPtr<Action> act;
299 act = ActionManager::get_action (X_("Transport"), X_("Stop"));
300 act->connect_proxy (stop_button);
301 act = ActionManager::get_action (X_("Transport"), X_("Roll"));
302 act->connect_proxy (roll_button);
303 act = ActionManager::get_action (X_("Transport"), X_("Record"));
304 act->connect_proxy (rec_button);
305 act = ActionManager::get_action (X_("Transport"), X_("GotoStart"));
306 act->connect_proxy (goto_start_button);
307 act = ActionManager::get_action (X_("Transport"), X_("GotoEnd"));
308 act->connect_proxy (goto_end_button);
309 act = ActionManager::get_action (X_("Transport"), X_("Loop"));
310 act->connect_proxy (auto_loop_button);
311 act = ActionManager::get_action (X_("Transport"), X_("PlaySelection"));
312 act->connect_proxy (play_selection_button);
313 act = ActionManager::get_action (X_("Transport"), X_("ToggleTimeMaster"));
314 act->connect_proxy (time_master_button);
315 act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
316 act->connect_proxy (sync_button);
318 shuttle_box.set_flags (CAN_FOCUS);
319 shuttle_box.add_events (Gdk::ENTER_NOTIFY_MASK|Gdk::LEAVE_NOTIFY_MASK|Gdk::BUTTON_RELEASE_MASK|Gdk::BUTTON_PRESS_MASK|Gdk::POINTER_MOTION_MASK|Gdk::SCROLL_MASK);
320 shuttle_box.set_size_request (100, 15);
322 shuttle_box.signal_button_press_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_button_press));
323 shuttle_box.signal_button_release_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_button_release));
324 shuttle_box.signal_scroll_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_scroll));
325 shuttle_box.signal_motion_notify_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_motion));
326 shuttle_box.signal_expose_event().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_box_expose));
328 /* clocks, etc. */
330 ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (primary_clock, &AudioClock::set), 'p'));
331 ARDOUR_UI::Clock.connect (sigc::bind (sigc::mem_fun (secondary_clock, &AudioClock::set), 's'));
333 primary_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::primary_clock_value_changed));
334 secondary_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::secondary_clock_value_changed));
335 big_clock.ValueChanged.connect (sigc::mem_fun(*this, &ARDOUR_UI::big_clock_value_changed));
337 ActionManager::get_action ("Transport", "ToggleAutoReturn")->connect_proxy (auto_return_button);
338 ActionManager::get_action ("Transport", "ToggleAutoPlay")->connect_proxy (auto_play_button);
339 ActionManager::get_action ("Transport", "ToggleAutoInput")->connect_proxy (auto_input_button);
340 ActionManager::get_action ("Transport", "ToggleClick")->connect_proxy (click_button);
341 ActionManager::get_action ("Transport", "TogglePunchIn")->connect_proxy (punch_in_button);
342 ActionManager::get_action ("Transport", "TogglePunchOut")->connect_proxy (punch_out_button);
344 click_button.signal_button_press_event().connect (sigc::mem_fun (*this, &ARDOUR_UI::click_button_clicked), false);
346 preroll_button.set_name ("TransportButton");
347 postroll_button.set_name ("TransportButton");
349 preroll_clock.set_mode (AudioClock::MinSec);
350 preroll_clock.set_name ("TransportClockDisplay");
351 postroll_clock.set_mode (AudioClock::MinSec);
352 postroll_clock.set_name ("TransportClockDisplay");
354 /* alerts */
356 /* CANNOT sigc::bind these to clicked or toggled, must use pressed or released */
358 solo_alert_button.set_name ("TransportSoloAlert");
359 solo_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::solo_alert_press), false);
360 auditioning_alert_button.set_name ("TransportAuditioningAlert");
361 auditioning_alert_button.signal_button_press_event().connect (sigc::mem_fun(*this,&ARDOUR_UI::audition_alert_press), false);
363 alert_box.pack_start (solo_alert_button, false, false);
364 alert_box.pack_start (auditioning_alert_button, false, false);
366 transport_tearoff_hbox.set_border_width (3);
368 transport_tearoff_hbox.pack_start (goto_start_button, false, false);
369 transport_tearoff_hbox.pack_start (goto_end_button, false, false);
371 Frame* sframe = manage (new Frame);
372 VBox* svbox = manage (new VBox);
373 HBox* shbox = manage (new HBox);
375 sframe->set_shadow_type (SHADOW_IN);
376 sframe->add (shuttle_box);
378 shuttle_box.set_name (X_("ShuttleControl"));
380 speed_display_box.add (speed_display_label);
381 speed_display_box.set_name (X_("ShuttleDisplay"));
382 set_size_request_to_display_given_text (speed_display_label, X_("> 24.0"), 2, 2);
384 shuttle_units_button.set_name (X_("ShuttleButton"));
385 shuttle_units_button.signal_clicked().connect (sigc::mem_fun(*this, &ARDOUR_UI::shuttle_unit_clicked));
387 shuttle_style_button.set_name (X_("ShuttleStyleButton"));
389 vector<string> shuttle_strings;
390 shuttle_strings.push_back (_("sprung"));
391 shuttle_strings.push_back (_("wheel"));
392 set_popdown_strings (shuttle_style_button, shuttle_strings, true);
393 shuttle_style_button.signal_changed().connect (sigc::mem_fun (*this, &ARDOUR_UI::shuttle_style_changed));
395 Frame* sdframe = manage (new Frame);
397 sdframe->set_shadow_type (SHADOW_IN);
398 sdframe->add (speed_display_box);
400 /* translators: Egternal is "External" with a descender character */
401 set_size_request_to_display_given_text (sync_button, X_("Egternal"), 4, 10);
403 shbox->pack_start (*sdframe, false, false);
404 shbox->pack_start (shuttle_units_button, true, true);
405 shbox->pack_start (shuttle_style_button, false, false);
407 svbox->pack_start (*sframe, false, false);
408 svbox->pack_start (*shbox, false, false);
410 transport_tearoff_hbox.pack_start (*svbox, false, false, 3);
412 if (Profile->get_sae()) {
413 transport_tearoff_hbox.pack_start (auto_loop_button);
414 transport_tearoff_hbox.pack_start (roll_button);
415 } else {
416 transport_tearoff_hbox.pack_start (auto_loop_button, false, false);
417 play_range_hbox.pack_start (play_selection_button, false, false);
418 play_range_hbox.pack_start (roll_button, false, false);
419 play_range_vbox.pack_start (play_range_hbox, false, false);
420 play_range_vbox.pack_start (join_play_range_button, false, false);
421 transport_tearoff_hbox.pack_start (play_range_vbox, false, false);
423 transport_tearoff_hbox.pack_start (stop_button, false, false);
424 transport_tearoff_hbox.pack_start (rec_button, false, false, 6);
426 HBox* clock_box = manage (new HBox);
427 clock_box->pack_start (primary_clock, false, false);
428 if (!ARDOUR::Profile->get_small_screen()) {
429 clock_box->pack_start (secondary_clock, false, false);
432 if (!Profile->get_sae()) {
433 VBox* time_controls_box = manage (new VBox);
434 time_controls_box->pack_start (sync_button, false, false);
435 time_controls_box->pack_start (time_master_button, false, false);
436 clock_box->pack_start (*time_controls_box, false, false, 1);
439 transport_tearoff_hbox.pack_start (*clock_box, false, false, 0);
441 HBox* toggle_box = manage(new HBox);
443 VBox* punch_box = manage (new VBox);
444 punch_box->pack_start (punch_in_button, false, false);
445 punch_box->pack_start (punch_out_button, false, false);
446 toggle_box->pack_start (*punch_box, false, false);
448 VBox* auto_box = manage (new VBox);
449 auto_box->pack_start (auto_play_button, false, false);
450 auto_box->pack_start (auto_return_button, false, false);
451 toggle_box->pack_start (*auto_box, false, false);
453 VBox* io_box = manage (new VBox);
454 io_box->pack_start (auto_input_button, false, false);
455 io_box->pack_start (click_button, false, false);
456 toggle_box->pack_start (*io_box, false, false);
458 /* desensitize */
460 set_transport_sensitivity (false);
462 // toggle_box->pack_start (preroll_button, false, false);
463 // toggle_box->pack_start (preroll_clock, false, false);
465 // toggle_box->pack_start (postroll_button, false, false);
466 // toggle_box->pack_start (postroll_clock, false, false);
468 transport_tearoff_hbox.pack_start (*toggle_box, false, false, 4);
469 transport_tearoff_hbox.pack_start (alert_box, false, false);
471 if (Profile->get_sae()) {
472 Image* img = manage (new Image ((::get_icon (X_("sae")))));
473 transport_tearoff_hbox.pack_end (*img, false, false, 6);
476 XMLNode* tnode = tearoff_settings ("transport");
477 if (tnode) {
478 transport_tearoff->set_state (*tnode);
482 void
483 ARDOUR_UI::manage_window (Window& win)
485 win.signal_delete_event().connect (sigc::bind (sigc::ptr_fun (just_hide_it), &win));
486 win.signal_enter_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::enter_window), &win));
487 win.signal_leave_notify_event().connect (sigc::bind (sigc::mem_fun (Keyboard::the_keyboard(), &Keyboard::leave_window), &win));
490 void
491 ARDOUR_UI::detach_tearoff (Box* b, Widget* w)
493 // editor->ensure_float (transport_tearoff->tearoff_window());
494 b->remove (*w);
497 void
498 ARDOUR_UI::reattach_tearoff (Box* b, Widget* w, int32_t n)
500 b->pack_start (*w);
501 b->reorder_child (*w, n);
504 void
505 ARDOUR_UI::soloing_changed (bool onoff)
507 if (solo_alert_button.get_active() != onoff) {
508 solo_alert_button.set_active (onoff);
512 void
513 ARDOUR_UI::_auditioning_changed (bool onoff)
515 if (auditioning_alert_button.get_active() != onoff) {
516 auditioning_alert_button.set_active (onoff);
517 set_transport_sensitivity (!onoff);
521 void
522 ARDOUR_UI::auditioning_changed (bool onoff)
524 UI::instance()->call_slot (MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::_auditioning_changed, this, onoff));
527 bool
528 ARDOUR_UI::audition_alert_press (GdkEventButton*)
530 if (_session) {
531 _session->cancel_audition();
533 return true;
536 bool
537 ARDOUR_UI::solo_alert_press (GdkEventButton*)
539 if (_session) {
540 if (_session->soloing()) {
541 _session->set_solo (_session->get_routes(), false);
542 } else if (_session->listening()) {
543 _session->set_listen (_session->get_routes(), false);
546 return true;
549 void
550 ARDOUR_UI::solo_blink (bool onoff)
552 if (_session == 0) {
553 return;
556 if (_session->soloing() || _session->listening()) {
557 if (onoff) {
558 solo_alert_button.set_state (STATE_ACTIVE);
559 } else {
560 solo_alert_button.set_state (STATE_NORMAL);
562 } else {
563 solo_alert_button.set_active (false);
564 solo_alert_button.set_state (STATE_NORMAL);
568 void
569 ARDOUR_UI::sync_blink (bool onoff)
571 if (_session == 0 || !_session->config.get_external_sync()) {
572 /* internal sync */
573 sync_button.set_visual_state (0);
574 return;
577 if (!_session->transport_locked()) {
578 /* not locked, so blink on and off according to the onoff argument */
580 if (onoff) {
581 sync_button.set_visual_state (1); // "-active"
582 } else {
583 sync_button.set_visual_state (0); // normal
585 } else {
586 /* locked */
587 sync_button.set_visual_state (1); // "-active"
591 void
592 ARDOUR_UI::audition_blink (bool onoff)
594 if (_session == 0) {
595 return;
598 if (_session->is_auditioning()) {
599 if (onoff) {
600 auditioning_alert_button.set_state (STATE_ACTIVE);
601 } else {
602 auditioning_alert_button.set_state (STATE_NORMAL);
604 } else {
605 auditioning_alert_button.set_active (false);
606 auditioning_alert_button.set_state (STATE_NORMAL);
610 void
611 ARDOUR_UI::build_shuttle_context_menu ()
613 using namespace Menu_Helpers;
615 shuttle_context_menu = new Menu();
616 MenuList& items = shuttle_context_menu->items();
618 Menu* speed_menu = manage (new Menu());
619 MenuList& speed_items = speed_menu->items();
621 RadioMenuItem::Group group;
623 speed_items.push_back (RadioMenuElem (group, "8", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 8.0f)));
624 if (shuttle_max_speed == 8.0) {
625 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
627 speed_items.push_back (RadioMenuElem (group, "6", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 6.0f)));
628 if (shuttle_max_speed == 6.0) {
629 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
631 speed_items.push_back (RadioMenuElem (group, "4", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 4.0f)));
632 if (shuttle_max_speed == 4.0) {
633 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
635 speed_items.push_back (RadioMenuElem (group, "3", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 3.0f)));
636 if (shuttle_max_speed == 3.0) {
637 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
639 speed_items.push_back (RadioMenuElem (group, "2", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 2.0f)));
640 if (shuttle_max_speed == 2.0) {
641 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
643 speed_items.push_back (RadioMenuElem (group, "1.5", sigc::bind (sigc::mem_fun (*this, &ARDOUR_UI::set_shuttle_max_speed), 1.5f)));
644 if (shuttle_max_speed == 1.5) {
645 static_cast<RadioMenuItem*>(&speed_items.back())->set_active ();
648 items.push_back (MenuElem (_("Maximum speed"), *speed_menu));
651 void
652 ARDOUR_UI::show_shuttle_context_menu ()
654 if (shuttle_context_menu == 0) {
655 build_shuttle_context_menu ();
658 shuttle_context_menu->popup (1, gtk_get_current_event_time());
661 void
662 ARDOUR_UI::set_shuttle_max_speed (float speed)
664 shuttle_max_speed = speed;
667 gint
668 ARDOUR_UI::shuttle_box_button_press (GdkEventButton* ev)
670 if (!_session) {
671 return true;
674 if (shuttle_controller_binding_proxy.button_press_handler (ev)) {
675 return true;
678 if (Keyboard::is_context_menu_event (ev)) {
679 show_shuttle_context_menu ();
680 return true;
683 switch (ev->button) {
684 case 1:
685 shuttle_box.add_modal_grab ();
686 shuttle_grabbed = true;
687 mouse_shuttle (ev->x, true);
688 break;
690 case 2:
691 case 3:
692 return true;
693 break;
696 return true;
699 gint
700 ARDOUR_UI::shuttle_box_button_release (GdkEventButton* ev)
702 if (!_session) {
703 return true;
706 switch (ev->button) {
707 case 1:
708 mouse_shuttle (ev->x, true);
709 shuttle_grabbed = false;
710 shuttle_box.remove_modal_grab ();
711 if (Config->get_shuttle_behaviour() == Sprung) {
712 if (_session->config.get_auto_play() || roll_button.get_visual_state()) {
713 shuttle_fract = SHUTTLE_FRACT_SPEED1;
714 _session->request_transport_speed (1.0);
715 stop_button.set_visual_state (0);
716 roll_button.set_visual_state (1);
717 } else {
718 shuttle_fract = 0;
719 _session->request_transport_speed (0.0);
721 shuttle_box.queue_draw ();
723 return true;
725 case 2:
726 if (_session->transport_rolling()) {
727 shuttle_fract = SHUTTLE_FRACT_SPEED1;
728 _session->request_transport_speed (1.0);
729 stop_button.set_visual_state (0);
730 roll_button.set_visual_state (1);
731 } else {
732 shuttle_fract = 0;
734 shuttle_box.queue_draw ();
735 return true;
737 case 3:
738 default:
739 return true;
743 use_shuttle_fract (true);
745 return true;
748 gint
749 ARDOUR_UI::shuttle_box_scroll (GdkEventScroll* ev)
751 if (!_session) {
752 return true;
755 switch (ev->direction) {
757 case GDK_SCROLL_UP:
758 shuttle_fract += 0.005;
759 break;
760 case GDK_SCROLL_DOWN:
761 shuttle_fract -= 0.005;
762 break;
763 default:
764 /* scroll left/right */
765 return false;
768 use_shuttle_fract (true);
770 return true;
773 gint
774 ARDOUR_UI::shuttle_box_motion (GdkEventMotion* ev)
776 if (!_session || !shuttle_grabbed) {
777 return true;
780 return mouse_shuttle (ev->x, false);
783 gint
784 ARDOUR_UI::mouse_shuttle (double x, bool force)
786 double const half_width = shuttle_box.get_width() / 2.0;
787 double distance = x - half_width;
789 if (distance > 0) {
790 distance = min (distance, half_width);
791 } else {
792 distance = max (distance, -half_width);
795 shuttle_fract = distance / half_width;
796 use_shuttle_fract (force);
797 return true;
800 void
801 ARDOUR_UI::set_shuttle_fract (double f)
803 shuttle_fract = f;
804 use_shuttle_fract (false);
807 void
808 ARDOUR_UI::use_shuttle_fract (bool force)
810 microseconds_t now = get_microseconds();
812 /* do not attempt to submit a motion-driven transport speed request
813 more than once per process cycle.
816 if (!force && (last_shuttle_request - now) < (microseconds_t) engine->usecs_per_cycle()) {
817 return;
820 last_shuttle_request = now;
822 double speed = 0;
824 if (Config->get_shuttle_units() == Semitones) {
826 double const step = 1.0 / 24.0; // range is 24 semitones up & down
827 double const semitones = round (shuttle_fract / step);
828 speed = pow (2.0, (semitones / 12.0));
830 } else {
832 bool const neg = (shuttle_fract < 0.0);
833 double fract = 1 - sqrt (1 - (shuttle_fract * shuttle_fract)); // Formula A1
835 if (neg) {
836 fract = -fract;
839 speed = shuttle_max_speed * fract;
842 _session->request_transport_speed_nonzero (speed);
844 shuttle_box.queue_draw ();
847 gint
848 ARDOUR_UI::shuttle_box_expose (GdkEventExpose* event)
850 gint x;
851 Glib::RefPtr<Gdk::Window> win (shuttle_box.get_window());
853 /* redraw the background */
855 win->draw_rectangle (shuttle_box.get_style()->get_bg_gc (shuttle_box.get_state()),
856 true,
857 event->area.x, event->area.y,
858 event->area.width, event->area.height);
861 x = (gint) floor ((shuttle_box.get_width() / 2.0) + (0.5 * (shuttle_box.get_width() * shuttle_fract)));
863 /* draw line */
865 win->draw_line (shuttle_box.get_style()->get_fg_gc (shuttle_box.get_state()),
869 shuttle_box.get_height());
870 return true;
873 void
874 ARDOUR_UI::shuttle_unit_clicked ()
876 if (shuttle_unit_menu == 0) {
877 shuttle_unit_menu = dynamic_cast<Menu*> (ActionManager::get_widget ("/ShuttleUnitPopup"));
879 shuttle_unit_menu->popup (1, gtk_get_current_event_time());
882 void
883 ARDOUR_UI::shuttle_style_changed ()
885 string str = shuttle_style_button.get_active_text ();
887 if (str == _("sprung")) {
888 Config->set_shuttle_behaviour (Sprung);
889 } else if (str == _("wheel")) {
890 Config->set_shuttle_behaviour (Wheel);
894 void
895 ARDOUR_UI::update_speed_display ()
897 if (!_session) {
898 if (last_speed_displayed != 0) {
899 speed_display_label.set_text (_("stop"));
900 last_speed_displayed = 0;
902 return;
905 char buf[32];
906 float x = _session->transport_speed ();
908 if (x != last_speed_displayed) {
910 if (x != 0) {
911 if (Config->get_shuttle_units() == Percentage) {
912 snprintf (buf, sizeof (buf), "%d", (int) round (x * 100));
913 } else {
915 if (x < 0) {
916 snprintf (buf, sizeof (buf), "< %d", (int) round (12.0 * fast_log2 (-x)));
917 } else {
918 snprintf (buf, sizeof (buf), "> %d", (int) round (12.0 * fast_log2 (x)));
921 speed_display_label.set_text (buf);
922 } else {
923 speed_display_label.set_text (_("stop"));
926 last_speed_displayed = x;
930 void
931 ARDOUR_UI::set_transport_sensitivity (bool yn)
933 ActionManager::set_sensitive (ActionManager::transport_sensitive_actions, yn);
934 shuttle_box.set_sensitive (yn);
937 void
938 ARDOUR_UI::editor_realized ()
940 boost::function<void (string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
941 Config->map_parameters (pc);
943 set_size_request_to_display_given_text (speed_display_box, _("-0.55"), 2, 2);
944 reset_dpi ();
947 void
948 ARDOUR_UI::maximise_editing_space ()
950 if (!editor) {
951 return;
954 transport_tearoff->set_visible (false);
955 editor->maximise_editing_space ();
956 if (Config->get_keep_tearoffs()) {
957 transport_tearoff->set_visible (true);
961 void
962 ARDOUR_UI::restore_editing_space ()
964 if (!editor) {
965 return;
968 transport_tearoff->set_visible (true);
969 editor->restore_editing_space ();
972 bool
973 ARDOUR_UI::click_button_clicked (GdkEventButton* ev)
975 if (ev->button != 3) {
976 /* this handler is just for button-3 clicks */
977 return false;
980 RefPtr<Action> act = ActionManager::get_action (X_("Common"), X_("ToggleRCOptionsEditor"));
981 assert (act);
983 RefPtr<ToggleAction> tact = RefPtr<ToggleAction>::cast_dynamic (act);
984 tact->set_active ();
986 rc_option_editor->set_current_page (_("Misc"));
987 return true;