Unconditionally save instant.xml on session-close
[ardour.git] / gtk2_ardour / main_clock.cc
index ff68e9e22c794d5901d88fc6aa94ac593a24355c..6b0af8cf9ba67362ead7678f285bdafdb29c0015 100644 (file)
@@ -1,22 +1,26 @@
 /*
-    Copyright (C) 2012 Paul Davis
-
-    This program is free software; you can redistribute it and/or modify
-    it under the terms of the GNU General Public License as published by
-    the Free Software Foundation; either version 2 of the License, or
-    (at your option) any later version.
-
-    This program is distributed in the hope that it will be useful,
-    but WITHOUT ANY WARRANTY; without even the implied warranty of
-    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-    GNU General Public License for more details.
-
-    You should have received a copy of the GNU General Public License
-    along with this program; if not, write to the Free Software
-    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
-
-*/
-
+ * Copyright (C) 2012-2017 Robin Gareus <robin@gareus.org>
+ * Copyright (C) 2013-2017 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2015 Colin Fletcher <colin.m.fletcher@googlemail.com>
+ * Copyright (C) 2015 Tim Mayberry <mojofunk@gmail.com>
+ * Copyright (C) 2016 Nick Mainsbridge <mainsbridge@gmail.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
+#include "pbd/unwind.h"
 #include "ardour/tempo.h"
 
 #include "actions.h"
@@ -27,6 +31,7 @@
 #include "pbd/i18n.h"
 
 using namespace Gtk;
+using namespace ARDOUR;
 
 MainClock::MainClock (
        const std::string& clock_name,
@@ -34,7 +39,8 @@ MainClock::MainClock (
        bool primary
        )
        : AudioClock (clock_name, false, widget_name, true, true, false, true)
-         , _primary (primary)
+       , _primary (primary)
+       , _suspend_delta_mode_signal (false)
 {
 }
 
@@ -55,21 +61,33 @@ MainClock::build_ops_menu ()
 
        MenuList& ops_items = ops_menu->items();
        ops_items.push_back (SeparatorElem ());
-       ops_items.push_back (CheckMenuElem (_("Display delta to edit cursor"), sigc::mem_fun (*this, &MainClock::display_delta_to_edit_cursor)));
-       Gtk::CheckMenuItem* c = dynamic_cast<Gtk::CheckMenuItem *> (&ops_items.back());
+       RadioMenuItem::Group group;
+       PBD::Unwinder<bool> uw (_suspend_delta_mode_signal, true);
+       ClockDeltaMode mode;
        if (_primary) {
-               if (UIConfiguration::instance().get_primary_clock_delta_edit_cursor ()) {
-                       UIConfiguration::instance().set_primary_clock_delta_edit_cursor (false);
-                       c->set_active (true);
-               }
+               mode = UIConfiguration::instance().get_primary_clock_delta_mode ();
        } else {
-               if (UIConfiguration::instance().get_secondary_clock_delta_edit_cursor ()) {
-                       UIConfiguration::instance().set_secondary_clock_delta_edit_cursor (false);
-                       c->set_active (true);
-               }
+               mode = UIConfiguration::instance().get_secondary_clock_delta_mode ();
+       }
+
+       ops_items.push_back (RadioMenuElem (group, _("Display absolute time"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), NoDelta)));
+       if (mode == NoDelta) {
+               RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
+               i->set_active (true);
+       }
+       ops_items.push_back (RadioMenuElem (group, _("Display delta to edit cursor"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), DeltaEditPoint)));
+       if (mode == DeltaEditPoint) {
+               RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
+               i->set_active (true);
+       }
+       ops_items.push_back (RadioMenuElem (group, _("Display delta to origin marker"), sigc::bind (sigc::mem_fun (*this, &MainClock::set_display_delta_mode), DeltaOriginMarker)));
+       if (mode == DeltaOriginMarker) {
+               RadioMenuItem* i = dynamic_cast<RadioMenuItem *> (&ops_items.back ());
+               i->set_active (true);
        }
 
        ops_items.push_back (SeparatorElem());
+
        ops_items.push_back (MenuElem (_("Edit Tempo"), sigc::mem_fun(*this, &MainClock::edit_current_tempo)));
        ops_items.push_back (MenuElem (_("Edit Meter"), sigc::mem_fun(*this, &MainClock::edit_current_meter)));
        ops_items.push_back (MenuElem (_("Insert Tempo Change"), sigc::mem_fun(*this, &MainClock::insert_new_tempo)));
@@ -80,20 +98,51 @@ samplepos_t
 MainClock::absolute_time () const
 {
        if (get_is_duration ()) {
-               // delta to edit cursor
-               return current_time () + PublicEditor::instance().get_preferred_edit_position (Editing::EDIT_IGNORE_PHEAD);
+               return current_time () + offset ();
        } else {
                return current_time ();
        }
 }
 
 void
-MainClock::display_delta_to_edit_cursor ()
+MainClock::set (samplepos_t when, bool force, ARDOUR::samplecnt_t /*offset*/)
 {
+       ClockDeltaMode mode;
+       if (_primary) {
+               mode = UIConfiguration::instance().get_primary_clock_delta_mode ();
+       } else {
+               mode = UIConfiguration::instance().get_secondary_clock_delta_mode ();
+       }
+       if (!PublicEditor::instance().session()) {
+               mode = NoDelta;
+       }
+
+       switch (mode) {
+               case NoDelta:
+                       AudioClock::set (when, force, 0);
+                       break;
+               case DeltaEditPoint:
+                       AudioClock::set (when, force, PublicEditor::instance().get_preferred_edit_position (Editing::EDIT_IGNORE_PHEAD));
+                       break;
+               case DeltaOriginMarker:
+                       {
+                               Location* loc = PublicEditor::instance().session()->locations()->clock_origin_location ();
+                               AudioClock::set (when, force, loc ? loc->start() : 0);
+                       }
+                       break;
+       }
+}
+
+void
+MainClock::set_display_delta_mode (ClockDeltaMode m)
+{
+       if (_suspend_delta_mode_signal) {
+               return;
+       }
        if (_primary) {
-               UIConfiguration::instance().set_primary_clock_delta_edit_cursor (!UIConfiguration::instance().get_primary_clock_delta_edit_cursor ());
+               UIConfiguration::instance().set_primary_clock_delta_mode (m);
        } else {
-               UIConfiguration::instance().set_secondary_clock_delta_edit_cursor (!UIConfiguration::instance().get_secondary_clock_delta_edit_cursor ());
+               UIConfiguration::instance().set_secondary_clock_delta_mode (m);
        }
 }