fix logic for display of transport bar meters
[ardour.git] / gtk2_ardour / ardour_ui_options.cc
1 /*
2     Copyright (C) 2005 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 "pbd/convert.h"
25 #include "pbd/stacktrace.h"
26
27 #include <gtkmm2ext/utils.h>
28
29 #include "ardour/rc_configuration.h"
30 #include "ardour/session.h"
31
32 #include "audio_clock.h"
33 #include "ardour_ui.h"
34 #include "actions.h"
35 #include "gui_thread.h"
36 #include "public_editor.h"
37 #include "main_clock.h"
38
39 #include "i18n.h"
40
41 using namespace Gtk;
42 using namespace Gtkmm2ext;
43 using namespace ARDOUR;
44 using namespace PBD;
45
46 void
47 ARDOUR_UI::toggle_keep_tearoffs ()
48 {
49         ActionManager::toggle_config_state ("Common", "KeepTearoffs", &RCConfiguration::set_keep_tearoffs, &RCConfiguration::get_keep_tearoffs);
50
51         ARDOUR_UI::update_tearoff_visibility();
52 }
53
54 void
55 ARDOUR_UI::toggle_external_sync()
56 {
57         if (_session) {
58                 if (_session->config.get_video_pullup() != 0.0f) {
59                         if (Config->get_sync_source() == Engine) {
60                                 MessageDialog msg (
61                                         _("It is not possible to use JACK as the the sync source\n\
62 when the pull up/down setting is non-zero."));
63                                 msg.run ();
64                                 return;
65                         }
66                 }
67
68                 ActionManager::toggle_config_state_foo ("Transport", "ToggleExternalSync", sigc::mem_fun (_session->config, &SessionConfiguration::set_external_sync), sigc::mem_fun (_session->config, &SessionConfiguration::get_external_sync));
69
70                 /* activating a slave is a session-property.
71                  * The slave type is a RC property.
72                  * When the slave is active is must not be reconfigured.
73                  * This is a UI limitation, imposed by audio-clock and
74                  * status displays which combine RC-config & session-properties.
75                  *
76                  * Notficy RCOptionEditor by emitting a signal if the active
77                  * status changed:
78                  */
79                 Config->ParameterChanged("sync-source");
80         }
81 }
82
83 void
84 ARDOUR_UI::toggle_time_master ()
85 {
86         ActionManager::toggle_config_state_foo ("Transport", "ToggleTimeMaster", sigc::mem_fun (_session->config, &SessionConfiguration::set_jack_time_master), sigc::mem_fun (_session->config, &SessionConfiguration::get_jack_time_master));
87 }
88
89 void
90 ARDOUR_UI::toggle_send_mtc ()
91 {
92         ActionManager::toggle_config_state ("options", "SendMTC", &RCConfiguration::set_send_mtc, &RCConfiguration::get_send_mtc);
93 }
94
95 void
96 ARDOUR_UI::toggle_send_mmc ()
97 {
98         ActionManager::toggle_config_state ("options", "SendMMC", &RCConfiguration::set_send_mmc, &RCConfiguration::get_send_mmc);
99 }
100
101 void
102 ARDOUR_UI::toggle_send_midi_clock ()
103 {
104         ActionManager::toggle_config_state ("options", "SendMidiClock", &RCConfiguration::set_send_midi_clock, &RCConfiguration::get_send_midi_clock);
105 }
106
107 void
108 ARDOUR_UI::toggle_use_mmc ()
109 {
110         ActionManager::toggle_config_state ("options", "UseMMC", &RCConfiguration::set_mmc_control, &RCConfiguration::get_mmc_control);
111 }
112
113 void
114 ARDOUR_UI::toggle_send_midi_feedback ()
115 {
116         ActionManager::toggle_config_state ("options", "SendMIDIfeedback", &RCConfiguration::set_midi_feedback, &RCConfiguration::get_midi_feedback);
117 }
118
119 void
120 ARDOUR_UI::toggle_auto_input ()
121 {
122         ActionManager::toggle_config_state_foo ("Transport", "ToggleAutoInput", sigc::mem_fun (_session->config, &SessionConfiguration::set_auto_input), sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_input));
123 }
124
125 void
126 ARDOUR_UI::toggle_auto_play ()
127 {
128         ActionManager::toggle_config_state_foo ("Transport", "ToggleAutoPlay", sigc::mem_fun (_session->config, &SessionConfiguration::set_auto_play), sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_play));
129 }
130
131 void
132 ARDOUR_UI::toggle_auto_return ()
133 {
134         ActionManager::toggle_config_state_foo ("Transport", "ToggleAutoReturn", sigc::mem_fun (_session->config, &SessionConfiguration::set_auto_return), sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_return));
135 }
136
137 void
138 ARDOUR_UI::toggle_click ()
139 {
140         ActionManager::toggle_config_state ("Transport", "ToggleClick", &RCConfiguration::set_clicking, &RCConfiguration::get_clicking);
141 }
142
143 void
144 ARDOUR_UI::unset_dual_punch ()
145 {
146         Glib::RefPtr<Action> action = ActionManager::get_action ("Transport", "TogglePunch");
147
148         if (action) {
149                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(action);
150                 if (tact) {
151                         ignore_dual_punch = true;
152                         tact->set_active (false);
153                         ignore_dual_punch = false;
154                 }
155         }
156 }
157
158 void
159 ARDOUR_UI::toggle_punch ()
160 {
161         if (ignore_dual_punch) {
162                 return;
163         }
164
165         Glib::RefPtr<Action> action = ActionManager::get_action ("Transport", "TogglePunch");
166
167         if (action) {
168
169                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(action);
170
171                 if (!tact) {
172                         return;
173                 }
174
175                 /* drive the other two actions from this one */
176
177                 Glib::RefPtr<Action> in_action = ActionManager::get_action ("Transport", "TogglePunchIn");
178                 Glib::RefPtr<Action> out_action = ActionManager::get_action ("Transport", "TogglePunchOut");
179
180                 if (in_action && out_action) {
181                         Glib::RefPtr<ToggleAction> tiact = Glib::RefPtr<ToggleAction>::cast_dynamic(in_action);
182                         Glib::RefPtr<ToggleAction> toact = Glib::RefPtr<ToggleAction>::cast_dynamic(out_action);
183                         tiact->set_active (tact->get_active());
184                         toact->set_active (tact->get_active());
185                 }
186         }
187 }
188
189 void
190 ARDOUR_UI::toggle_punch_in ()
191 {
192         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("TogglePunchIn"));
193         if (!act) {
194                 return;
195         }
196
197         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
198         if (!tact) {
199                 return;
200         }
201
202         if (tact->get_active() != _session->config.get_punch_in()) {
203                 _session->config.set_punch_in (tact->get_active ());
204         }
205
206         if (tact->get_active()) {
207                 /* if punch-in is turned on, make sure the loop/punch ruler is visible, and stop it being hidden,
208                    to avoid confusing the user */
209                 show_loop_punch_ruler_and_disallow_hide ();
210         }
211
212         reenable_hide_loop_punch_ruler_if_appropriate ();
213 }
214
215 void
216 ARDOUR_UI::toggle_punch_out ()
217 {
218         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("TogglePunchOut"));
219         if (!act) {
220                 return;
221         }
222
223         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
224         if (!tact) {
225                 return;
226         }
227
228         if (tact->get_active() != _session->config.get_punch_out()) {
229                 _session->config.set_punch_out (tact->get_active ());
230         }
231
232         if (tact->get_active()) {
233                 /* if punch-out is turned on, make sure the loop/punch ruler is visible, and stop it being hidden,
234                    to avoid confusing the user */
235                 show_loop_punch_ruler_and_disallow_hide ();
236         }
237
238         reenable_hide_loop_punch_ruler_if_appropriate ();
239 }
240
241 void
242 ARDOUR_UI::show_loop_punch_ruler_and_disallow_hide ()
243 {
244         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Rulers"), "toggle-loop-punch-ruler");
245         if (!act) {
246                 return;
247         }
248
249         act->set_sensitive (false);
250
251         Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
252         if (!tact) {
253                 return;
254         }
255
256         if (!tact->get_active()) {
257                 tact->set_active ();
258         }
259 }
260
261 /* This is a bit of a silly name for a method */
262 void
263 ARDOUR_UI::reenable_hide_loop_punch_ruler_if_appropriate ()
264 {
265         if (!_session->config.get_punch_in() && !_session->config.get_punch_out()) {
266                 /* if punch in/out are now both off, reallow hiding of the loop/punch ruler */
267                 Glib::RefPtr<Action> act = ActionManager::get_action (X_("Rulers"), "toggle-loop-punch-ruler");
268                 if (act) {
269                         act->set_sensitive (true);
270                 }
271         }
272 }
273
274 void
275 ARDOUR_UI::toggle_video_sync()
276 {
277         Glib::RefPtr<Action> act = ActionManager::get_action ("Transport", "ToggleVideoSync");
278         if (act) {
279                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
280                 _session->config.set_use_video_sync (tact->get_active());
281         }
282 }
283
284 void
285 ARDOUR_UI::toggle_editing_space()
286 {
287         Glib::RefPtr<Action> act = ActionManager::get_action ("Common", "ToggleMaximalEditor");
288
289         if (act) {
290                 Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic(act);
291                 if (tact->get_active()) {
292                         maximise_editing_space ();
293                 } else {
294                         restore_editing_space ();
295                 }
296         }
297 }
298
299 void
300 ARDOUR_UI::setup_session_options ()
301 {
302         _session->config.ParameterChanged.connect (_session_connections, MISSING_INVALIDATOR, boost::bind (&ARDOUR_UI::parameter_changed, this, _1), gui_context());
303         boost::function<void (std::string)> pc (boost::bind (&ARDOUR_UI::parameter_changed, this, _1));
304         _session->config.map_parameters (pc);
305 }
306
307 void
308 ARDOUR_UI::parameter_changed (std::string p)
309 {
310         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::parameter_changed, p)
311
312         if (p == "external-sync") {
313
314                 ActionManager::map_some_state ("Transport", "ToggleExternalSync", sigc::mem_fun (_session->config, &SessionConfiguration::get_external_sync));
315
316                 if (!_session->config.get_external_sync()) {
317                         sync_button.set_text (_("Internal"));
318                         ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (true);
319                         ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (true);
320                         ActionManager::get_action ("Transport", "ToggleFollowEdits")->set_sensitive (true);
321                 } else {
322                         sync_button.set_text (sync_source_to_string (Config->get_sync_source(), true));
323                         /* XXX need to make auto-play is off as well as insensitive */
324                         ActionManager::get_action ("Transport", "ToggleAutoPlay")->set_sensitive (false);
325                         ActionManager::get_action ("Transport", "ToggleAutoReturn")->set_sensitive (false);
326                         ActionManager::get_action ("Transport", "ToggleFollowEdits")->set_sensitive (false);
327                 }
328
329         } else if (p == "always-play-range") {
330
331                 ActionManager::map_some_state ("Transport", "ToggleFollowEdits", &RCConfiguration::get_always_play_range);
332
333         } else if (p == "send-mtc") {
334
335                 ActionManager::map_some_state ("options", "SendMTC", &RCConfiguration::get_send_mtc);
336
337         } else if (p == "send-mmc") {
338
339                 ActionManager::map_some_state ("options", "SendMMC", &RCConfiguration::get_send_mmc);
340
341         } else if (p == "keep-tearoffs") {
342                 ActionManager::map_some_state ("Common", "KeepTearoffs", &RCConfiguration::get_keep_tearoffs);
343         } else if (p == "mmc-control") {
344                 ActionManager::map_some_state ("options", "UseMMC", &RCConfiguration::get_mmc_control);
345         } else if (p == "midi-feedback") {
346                 ActionManager::map_some_state ("options", "SendMIDIfeedback", &RCConfiguration::get_midi_feedback);
347         } else if (p == "auto-play") {
348                 ActionManager::map_some_state ("Transport", "ToggleAutoPlay", sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_play));
349         } else if (p == "auto-return") {
350                 ActionManager::map_some_state ("Transport", "ToggleAutoReturn", sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_return));
351         } else if (p == "auto-input") {
352                 ActionManager::map_some_state ("Transport", "ToggleAutoInput", sigc::mem_fun (_session->config, &SessionConfiguration::get_auto_input));
353         } else if (p == "punch-out") {
354                 ActionManager::map_some_state ("Transport", "TogglePunchOut", sigc::mem_fun (_session->config, &SessionConfiguration::get_punch_out));
355                 if (!_session->config.get_punch_out()) {
356                         unset_dual_punch ();
357                 }
358         } else if (p == "punch-in") {
359                 ActionManager::map_some_state ("Transport", "TogglePunchIn", sigc::mem_fun (_session->config, &SessionConfiguration::get_punch_in));
360                 if (!_session->config.get_punch_in()) {
361                         unset_dual_punch ();
362                 }
363         } else if (p == "clicking") {
364                 ActionManager::map_some_state ("Transport", "ToggleClick", &RCConfiguration::get_clicking);
365         } else if (p == "use-video-sync") {
366                 ActionManager::map_some_state ("Transport",  "ToggleVideoSync", sigc::mem_fun (_session->config, &SessionConfiguration::get_use_video_sync));
367         } else if (p == "video-pullup" || p == "timecode-format") {
368
369                 synchronize_sync_source_and_video_pullup ();
370                 reset_main_clocks ();
371                 editor->queue_visual_videotimeline_update();
372
373         } else if (p == "sync-source") {
374
375                 synchronize_sync_source_and_video_pullup ();
376
377         } else if (p == "show-track-meters") {
378                 editor->toggle_meter_updating();
379         } else if (p == "primary-clock-delta-edit-cursor") {
380                 if (Config->get_primary_clock_delta_edit_cursor()) {
381                         primary_clock->set_is_duration (true);
382                         primary_clock->set_editable (false);
383                         primary_clock->set_widget_name ("transport delta");
384                 } else {
385                         primary_clock->set_is_duration (false);
386                         primary_clock->set_editable (true);
387                         primary_clock->set_widget_name ("transport");
388                 }
389         } else if (p == "secondary-clock-delta-edit-cursor") {
390                 if (Config->get_secondary_clock_delta_edit_cursor()) {
391                         secondary_clock->set_is_duration (true);
392                         secondary_clock->set_editable (false);
393                         secondary_clock->set_widget_name ("secondary delta");
394                 } else {
395                         secondary_clock->set_is_duration (false);
396                         secondary_clock->set_editable (true);
397                         secondary_clock->set_widget_name ("secondary");
398                 }
399         } else if (p == "super-rapid-clock-update") {
400                 stop_clocking ();
401                 start_clocking ();
402         } else if (p == "show-editor-meter") {
403                 bool show = Config->get_show_editor_meter();
404
405                 if (editor_meter) {
406                         if (meter_box.get_parent()) {
407                                 transport_tearoff_hbox.remove (meter_box);
408                                 transport_tearoff_hbox.remove (editor_meter_peak_display);
409                         }
410
411                         if (show) {
412                                 transport_tearoff_hbox.pack_start (meter_box, false, false);
413                                 transport_tearoff_hbox.pack_start (editor_meter_peak_display, false, false);
414                                 meter_box.show();
415                                 editor_meter_peak_display.show();
416                         } 
417                 }
418         }
419 }
420
421 void
422 ARDOUR_UI::session_parameter_changed (std::string p)
423 {
424         if (p == "native-file-data-format" || p == "native-file-header-format") {
425                 update_format ();
426         }
427 }
428
429 void
430 ARDOUR_UI::reset_main_clocks ()
431 {
432         ENSURE_GUI_THREAD (*this, &ARDOUR_UI::reset_main_clocks)
433
434         if (_session) {
435                 primary_clock->set (_session->audible_frame(), true);
436                 secondary_clock->set (_session->audible_frame(), true);
437         } else {
438                 primary_clock->set (0, true);
439                 secondary_clock->set (0, true);
440         }
441 }
442
443 void
444 ARDOUR_UI::synchronize_sync_source_and_video_pullup ()
445 {
446         Glib::RefPtr<Action> act = ActionManager::get_action (X_("Transport"), X_("ToggleExternalSync"));
447
448         if (!act) {
449                 return;
450         }
451
452         if (!_session) {
453                 goto just_label;
454         }
455
456         if (_session->config.get_video_pullup() == 0.0f) {
457                 /* with no video pull up/down, any sync source is OK */
458                 act->set_sensitive (true);
459         } else {
460                 /* can't sync to JACK if video pullup != 0.0 */
461                 if (Config->get_sync_source() == Engine) {
462                         act->set_sensitive (false);
463                 } else {
464                         act->set_sensitive (true);
465                 }
466         }
467
468         /* XXX should really be able to set the video pull up
469            action to insensitive/sensitive, but there is no action.
470            FIXME
471         */
472
473   just_label:
474         if (act->get_sensitive ()) {
475                 set_tip (sync_button, _("Enable/Disable external positional sync"));
476         } else {
477                 set_tip (sync_button, _("Sync to JACK is not possible: video pull up/down is set"));
478         }
479
480 }
481