NO-OP: mark various state property names as explicitly non-translated
[ardour.git] / gtk2_ardour / editor_markers.cc
index f885537393a859ebdaab6eae4138c95eb4dcd55f..996b5878bde2a92ffc1ce8b6ddd76c0789e6df33 100644 (file)
 #include "canvas/item.h"
 #include "canvas/rectangle.h"
 
+#include "widgets/prompter.h"
+
 #include "editor.h"
 #include "marker.h"
 #include "selection.h"
 #include "editing.h"
 #include "gui_thread.h"
 #include "actions.h"
-#include "prompter.h"
 #include "editor_drag.h"
 
 #include "pbd/i18n.h"
@@ -164,6 +165,7 @@ Editor::add_new_location_internal (Location* location)
        }
 
        location->name_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context());
+       location->position_lock_style_changed.connect (*this, invalidator (*this), boost::bind (&Editor::location_changed, this, _1), gui_context());
        location->FlagsChanged.connect (*this, invalidator (*this), boost::bind (&Editor::location_flags_changed, this, location), gui_context());
 
        pair<Location*,LocationMarkers*> newpair;
@@ -204,7 +206,12 @@ Editor::location_changed (Location *location)
                return;
        }
 
-       lam->set_name (location->name ());
+       if (location->position_lock_style() == MusicTime) {
+               lam->set_name ("\u266B" + location->name ()); // BEAMED EIGHTH NOTES
+       } else {
+               lam->set_name (location->name ());
+       }
+
        lam->set_position (location->start(), location->end());
 
        if (location->is_auto_loop()) {
@@ -741,7 +748,7 @@ Editor::remove_marker (ArdourCanvas::Item& item, GdkEvent*)
        Location* loc = find_location_from_marker (marker, is_start);
 
        if (_session && loc) {
-               Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::really_remove_marker), loc));
+               Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::really_remove_marker), loc));
        }
 }
 
@@ -991,20 +998,33 @@ Editor::build_tempo_marker_menu (TempoMarker* loc, bool can_remove)
        MenuList& items = tempo_marker_menu->items();
        tempo_marker_menu->set_name ("ArdourContextMenu");
 
+       if (!loc->tempo().initial()) {
+               if (loc->tempo().clamped()) {
+                       items.push_back (MenuElem (_("Don't Continue"), sigc::mem_fun(*this, &Editor::toggle_tempo_clamped)));
+               } else {
+                       items.push_back (MenuElem (_("Continue"), sigc::mem_fun(*this, &Editor::toggle_tempo_clamped)));
+               }
+       }
+
        if (loc->tempo().type() == TempoSection::Ramp) {
                items.push_back (MenuElem (_("Set Constant"), sigc::mem_fun(*this, &Editor::toggle_tempo_type)));
        }
 
-       if (_session->tempo_map().next_tempo_section (&loc->tempo())) {
+       TempoSection* next_ts = _session->tempo_map().next_tempo_section (&loc->tempo());
+       if (next_ts && next_ts->note_types_per_minute() != loc->tempo().end_note_types_per_minute()) {
                items.push_back (MenuElem (_("Ramp to Next"), sigc::mem_fun(*this, &Editor::ramp_to_next_tempo)));
        }
 
        if (loc->tempo().position_lock_style() == AudioTime && can_remove) {
+               items.push_back (SeparatorElem());
                items.push_back (MenuElem (_("Lock to Music"), sigc::mem_fun(*this, &Editor::toggle_marker_lock_style)));
        } else if (can_remove) {
+               items.push_back (SeparatorElem());
                items.push_back (MenuElem (_("Lock to Audio"), sigc::mem_fun(*this, &Editor::toggle_marker_lock_style)));
        }
 
+       items.push_back (SeparatorElem());
+
        items.push_back (MenuElem (_("Edit..."), sigc::mem_fun(*this, &Editor::marker_menu_edit)));
        items.push_back (MenuElem (_("Remove"), sigc::mem_fun(*this, &Editor::marker_menu_remove)));
        items.back().set_sensitive (can_remove);
@@ -1080,7 +1100,7 @@ Editor::marker_menu_select_using_range ()
        bool is_start;
 
        if (((l = find_location_from_marker (marker, is_start)) != 0) && (l->end() > l->start())) {
-               set_selection_from_range (*l);
+               set_selection_from_range (*l);
        }
 }
 
@@ -1098,7 +1118,7 @@ Editor::marker_menu_select_all_selectables_using_range ()
        bool is_start;
 
        if (((l = find_location_from_marker (marker, is_start)) != 0) && (l->end() > l->start())) {
-               select_all_within (l->start(), l->end() - 1, 0,  DBL_MAX, track_views, Selection::Set, false);
+               select_all_within (l->start(), l->end() - 1, 0,  DBL_MAX, track_views, Selection::Set, false);
        }
 
 }
@@ -1117,7 +1137,7 @@ Editor::marker_menu_separate_regions_using_location ()
        bool is_start;
 
        if (((l = find_location_from_marker (marker, is_start)) != 0) && (l->end() > l->start())) {
-               separate_regions_using_location (*l);
+               separate_regions_using_location (*l);
        }
 
 }
@@ -1312,14 +1332,11 @@ Editor::marker_menu_loop_range ()
        bool is_start;
 
        if ((l = find_location_from_marker (marker, is_start)) != 0) {
-               Location* l2;
-               if ((l2 = transport_loop_location()) != 0) {
-                       l2->set (l->start(), l->end());
-
-                       // enable looping, reposition and start rolling
-                       _session->request_locate (l2->start(), true);
-                       _session->request_play_loop(true);
+               if (l != transport_loop_location()) {
+                       set_loop_range (l->start(), l->end(), _("loop range from marker"));
                }
+               _session->request_locate (l->start(), true);
+               _session->request_play_loop (true);
        }
 }
 
@@ -1458,6 +1475,34 @@ Editor::toggle_tempo_type ()
                commit_reversible_command ();
        }
 }
+/* clamped locks the previous section end tempo to the start tempo */
+void
+Editor::toggle_tempo_clamped ()
+{
+       TempoMarker* tm;
+       MeterMarker* mm;
+       dynamic_cast_marker_object (marker_menu_item->get_data ("marker"), &mm, &tm);
+
+       if (tm) {
+               begin_reversible_command (_("Clamp Tempo"));
+               XMLNode &before = _session->tempo_map().get_state();
+
+               TempoSection* tsp = &tm->tempo();
+               TempoSection* prev = _session->tempo_map().previous_tempo_section (tsp);
+
+               if (prev) {
+                       /* set to the end tempo of the previous section */
+                       Tempo new_tempo (prev->end_note_types_per_minute(), prev->note_type(), tsp->end_note_types_per_minute());
+                       _session->tempo_map().gui_change_tempo (tsp, new_tempo);
+               }
+
+               tsp->set_clamped (!tsp->clamped());
+
+               XMLNode &after = _session->tempo_map().get_state();
+               _session->add_command(new MementoCommand<TempoMap>(_session->tempo_map(), &before, &after));
+               commit_reversible_command ();
+       }
+}
 
 void
 Editor::ramp_to_next_tempo ()
@@ -1536,13 +1581,15 @@ Editor::rename_marker(ArdourMarker *marker)
 
        loc = find_location_from_marker (marker, is_start);
 
-       if (!loc)
-              return;
+       if (!loc) {
+               return;
+       }
 
-       if (loc == transport_loop_location() || loc == transport_punch_location() || loc->is_session_range())
+       if (loc == transport_loop_location() || loc == transport_punch_location() || loc->is_session_range()) {
                return;
+       }
 
-       ArdourPrompter dialog (true);
+       ArdourWidgets::Prompter dialog (true);
        string txt;
 
        dialog.set_prompt (_("New Name:"));
@@ -1658,7 +1705,7 @@ Editor::update_punch_range_view ()
 
        } else {
 
-               transport_punch_range_rect->hide();
+               transport_punch_range_rect->hide();
        }
 }
 
@@ -1679,9 +1726,9 @@ Editor::marker_selection_changed ()
 }
 
 struct SortLocationsByPosition {
-    bool operator() (Location* a, Location* b) {
-           return a->start() < b->start();
-    }
+       bool operator() (Location* a, Location* b) {
+               return a->start() < b->start();
+       }
 };
 
 void