X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Ftimeline_audio_content_view.cc;h=057ebb944b8b8d632b53c36ba93410fe3a4cbb85;hb=4ef0091b33e12450e5de4e420dfabfa8b110fc35;hp=330196a97317f17851f3ae5dd605e334ff1ddddb;hpb=886ef57aeac4772c0f8078925d83e78a6e30ec03;p=dcpomatic.git diff --git a/src/wx/timeline_audio_content_view.cc b/src/wx/timeline_audio_content_view.cc index 330196a97..057ebb944 100644 --- a/src/wx/timeline_audio_content_view.cc +++ b/src/wx/timeline_audio_content_view.cc @@ -24,8 +24,8 @@ #include "lib/util.h" using std::list; -using boost::shared_ptr; -using boost::dynamic_pointer_cast; +using std::shared_ptr; +using std::dynamic_pointer_cast; /** @class TimelineAudioContentView * @brief Timeline view for AudioContent. @@ -62,10 +62,16 @@ TimelineAudioContentView::label () const s += wxString::Format (" %.1fdB", ac->gain()); } + if (ac->delay() > 0) { + s += wxString::Format (_(" delayed by %dms"), ac->delay()); + } else if (ac->delay() < 0) { + s += wxString::Format (_(" advanced by %dms"), -ac->delay()); + } + list mapped = ac->mapping().mapped_output_channels(); if (!mapped.empty ()) { - s += " → "; - BOOST_FOREACH (int i, mapped) { + s += wxString::FromUTF8(" → "); + for (auto i: mapped) { s += std_to_wx(short_audio_channel_name(i)) + ", "; } s = s.Left(s.Length() - 2);