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