2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2017 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2006-2015 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2006-2015 Tim Mayberry <mojofunk@gmail.com>
|
|
|
|
* Copyright (C) 2007 Doug McLain <doug@nostar.net>
|
|
|
|
* Copyright (C) 2008-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2014-2015 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2015-2017 Nick Mainsbridge <mainsbridge@gmail.com>
|
|
|
|
* Copyright (C) 2017-2018 Ben Loftis <ben@harrisonconsoles.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.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2010-11-13 00:14:48 -05:00
|
|
|
#ifdef WAF_BUILD
|
|
|
|
#include "gtk2ardour-config.h"
|
|
|
|
#endif
|
|
|
|
|
2009-10-14 12:10:01 -04:00
|
|
|
#include <cstdio> // for sprintf, grrr
|
2005-09-25 14:42:24 -04:00
|
|
|
#include <cstdlib>
|
|
|
|
#include <cmath>
|
|
|
|
#include <string>
|
|
|
|
#include <climits>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "pbd/error.h"
|
|
|
|
#include "pbd/memento_command.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/utils.h>
|
|
|
|
#include <gtkmm2ext/gtk_ui.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/session.h"
|
|
|
|
#include "ardour/tempo.h"
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm2ext/doi.h>
|
2005-12-08 13:53:43 -05:00
|
|
|
#include <gtkmm2ext/utils.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
#include "canvas/canvas.h"
|
|
|
|
#include "canvas/item.h"
|
2014-06-09 15:39:57 -04:00
|
|
|
#include "canvas/line_set.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#include "editor.h"
|
|
|
|
#include "marker.h"
|
|
|
|
#include "tempo_dialog.h"
|
|
|
|
#include "rgb_macros.h"
|
|
|
|
#include "gui_thread.h"
|
2006-10-21 15:01:50 -04:00
|
|
|
#include "time_axis_view.h"
|
2018-02-09 10:59:39 -05:00
|
|
|
#include "grid_lines.h"
|
2015-01-02 09:44:54 -05:00
|
|
|
#include "ui_config.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2016-07-14 14:44:52 -04:00
|
|
|
#include "pbd/i18n.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
using namespace ARDOUR;
|
Large nasty commit in the form of a 5000 line patch chock-full of completely
unecessary changes. (Sorry, doing a "sprint" based thing, this is the end of the first one)
Achieved MIDI track and bus creation, associated Jack port and diskstream creation, and minimal GUI stuff for creating them. Should be set to start work on actually recording and playing midi to/from disk now.
Relevant (significant) changes:
- Creation of a Buffer class. Base class is type agnostic so things can point to a buffer but not care what kind it is (otherwise it'd be a template). Derived into AudioBuffer and MidiBuffer, with a type tag because checking type is necessary in parts of the code where dynamic_cast wouldn't be wise. Originally I considered this a hack, but passing around a type proved to be a very good solution to all the other problems (below). There is a 1:1 mapping between jack port data types and ardour Buffer types (with a conversion function), but that's easily removed if it ever becomes necessary. Having the type scoped in the Buffer class is maybe not the best spot for it, but whatever (this is proof of concept kinda stuff right now...)
- IO now has a "default" port type (passed to the constructor and stored as a member), used by ensure_io (and similar) to create n ports. IO::register_***_port has a type argument that defaults to the default type if not passed. Rationale: previous IO API is identical, no changes needed to existing code, but path is paved for multiple port types in one IO, which we will need for eg synth plugin inserts, among other things. This is not quite ideal (best would be to only have the two port register functions and have them take a type), but the alternative is a lot of work (namely destroying the 'ensure' functions and everything that uses them) for very little gain. (I am convinced after quite a few tries at the whiteboard that subclassing IO in any way is not a feasible option, look at it's inheritance diagram in Doxygen and you can see why)
- AudioEngine::register_audio_input_port is now register_input_port and takes a type argument. Ditto for output.
- (Most significant change) AudioDiskstream abstracted into Distream, and sibling MidiDiskstream created. Very much still a work in progress, but Diskstream is there to switch references over to (most already are), which is the important part. It is still unclear what the MIDI diskstream's relation to channels is, but I'm pretty sure they will be single channel only (so SMF Type 0) since noone can come up with a reason otherwise.
- MidiTrack creation. Same thing as AudioTrack but with a different default type basically. No big deal here.
- Random cleanups and variable renamings etc. because I have OCD and can't help myself. :)
Known broken: Loading of sessions containing MIDI tracks.
git-svn-id: svn://localhost/ardour2/branches/midi@641 d708f5d6-7413-0410-9779-e7cbd77b26cf
2006-06-26 12:01:34 -04:00
|
|
|
using namespace PBD;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Gtk;
|
2005-12-08 13:53:43 -05:00
|
|
|
using namespace Gtkmm2ext;
|
2005-09-25 14:42:24 -04:00
|
|
|
using namespace Editing;
|
2020-11-16 13:19:22 -05:00
|
|
|
using namespace Temporal;
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
void
|
|
|
|
Editor::remove_metric_marks ()
|
|
|
|
{
|
|
|
|
/* don't delete these while handling events, just punt till the GUI is idle */
|
|
|
|
|
|
|
|
for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
|
|
|
|
delete_when_idle (*x);
|
|
|
|
}
|
|
|
|
metric_marks.clear ();
|
2016-05-07 13:03:12 -04:00
|
|
|
|
|
|
|
for (Curves::iterator x = tempo_curves.begin(); x != tempo_curves.end(); ++x) {
|
|
|
|
delete (*x);
|
|
|
|
}
|
|
|
|
tempo_curves.clear ();
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2021-01-01 18:00:07 -05:00
|
|
|
|
2016-12-11 10:03:19 -05:00
|
|
|
struct CurveComparator {
|
|
|
|
bool operator() (TempoCurve const * a, TempoCurve const * b) {
|
2020-11-16 13:19:22 -05:00
|
|
|
return a->tempo().sclock() < b->tempo().sclock();
|
2016-12-11 10:03:19 -05:00
|
|
|
}
|
|
|
|
};
|
2021-01-01 18:00:07 -05:00
|
|
|
|
2021-04-04 19:56:58 -04:00
|
|
|
void
|
|
|
|
Editor::reassociate_metric_markers (TempoMap::SharedPtr const & tmap)
|
|
|
|
{
|
|
|
|
TempoMap::Metrics metrics;
|
|
|
|
tmap->get_metrics (metrics);
|
|
|
|
|
|
|
|
TempoMarker* tm;
|
|
|
|
MeterMarker* mm;
|
|
|
|
BBTMarker* bm;
|
|
|
|
|
|
|
|
Temporal::TempoPoint* tp;
|
|
|
|
Temporal::MeterPoint* mp;
|
|
|
|
Temporal::MusicTimePoint* mtp;
|
|
|
|
|
|
|
|
for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
|
|
|
|
|
|
|
|
if ((tm = dynamic_cast<TempoMarker*> (*x)) != 0) {
|
|
|
|
|
|
|
|
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*>(*m)) != 0) {
|
|
|
|
/* do nothing .. but we had to catch
|
|
|
|
this first because MusicTimePoint
|
|
|
|
IS-A TempoPoint
|
|
|
|
*/
|
|
|
|
} else if ((tp = dynamic_cast<Temporal::TempoPoint*>(*m)) != 0) {
|
|
|
|
if (tm->tempo() == *tp) {
|
|
|
|
tm->reset_tempo (*tp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((mm = dynamic_cast<MeterMarker*> (*x)) != 0) {
|
|
|
|
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*>(*m)) != 0) {
|
|
|
|
/* do nothing .. but we had to catch
|
|
|
|
this first because MusicTimePoint
|
|
|
|
IS-A TempoPoint
|
|
|
|
*/
|
|
|
|
|
|
|
|
} else if ((mp = dynamic_cast<Temporal::MeterPoint*>(*m)) != 0) {
|
|
|
|
if (mm->meter() == *mp) {
|
|
|
|
mm->reset_meter (*mp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if ((bm = dynamic_cast<BBTMarker*> (*x)) != 0) {
|
|
|
|
|
|
|
|
for (TempoMap::Metrics::iterator m = metrics.begin(); m != metrics.end(); ++m) {
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*>(*m)) != 0) {
|
|
|
|
if (bm->point() == *mtp) {
|
|
|
|
bm->reset_point (*mtp);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
void
|
2020-11-25 13:01:09 -05:00
|
|
|
Editor::draw_metric_marks (TempoMap::Metrics const & metrics)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2021-01-01 18:00:07 -05:00
|
|
|
if (!_session) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2006-08-30 22:28:42 -04:00
|
|
|
char buf[64];
|
2020-11-16 13:19:22 -05:00
|
|
|
TempoPoint* prev_ts = 0;
|
2016-05-07 13:03:12 -04:00
|
|
|
double max_tempo = 0.0;
|
|
|
|
double min_tempo = DBL_MAX;
|
2020-11-16 13:19:22 -05:00
|
|
|
const samplecnt_t sr (_session->sample_rate());
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-05-17 14:47:40 -04:00
|
|
|
remove_metric_marks (); // also clears tempo curves
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2020-11-25 13:01:09 -05:00
|
|
|
for (TempoMap::Metrics::const_iterator i = metrics.begin(); i != metrics.end(); ++i) {
|
2020-11-16 13:19:22 -05:00
|
|
|
Temporal::MeterPoint *ms;
|
|
|
|
Temporal::TempoPoint *ts;
|
2021-02-11 00:27:27 -05:00
|
|
|
Temporal::MusicTimePoint *mtp;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2021-02-11 00:27:27 -05:00
|
|
|
/* must check MusicTimePoint first, since it IS-A TempoPoint
|
|
|
|
* and MeterPoint.
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ((mtp = dynamic_cast<Temporal::MusicTimePoint*>(*i)) != 0) {
|
|
|
|
|
2021-08-13 16:11:24 -04:00
|
|
|
if (mtp->map().time_domain() == BeatTime) {
|
2021-02-11 00:27:27 -05:00
|
|
|
metric_marks.push_back (new BBTMarker (*this, *bbt_ruler, UIConfiguration::instance().color ("meter marker music"), "bar!", *mtp));
|
|
|
|
} else {
|
|
|
|
metric_marks.push_back (new BBTMarker (*this, *bbt_ruler, UIConfiguration::instance().color ("meter marker"), "foo!", *mtp));
|
|
|
|
}
|
|
|
|
} else if ((ms = dynamic_cast<Temporal::MeterPoint*>(*i)) != 0) {
|
2020-11-16 13:19:22 -05:00
|
|
|
snprintf (buf, sizeof(buf), "%d/%d", ms->divisions_per_bar(), ms->note_value ());
|
|
|
|
if (ms->map().time_domain() == BeatTime) {
|
|
|
|
metric_marks.push_back (new MeterMarker (*this, *meter_group, UIConfiguration::instance().color ("meter marker music"), buf, *ms));
|
2016-08-19 14:33:51 -04:00
|
|
|
} else {
|
2020-11-16 13:19:22 -05:00
|
|
|
metric_marks.push_back (new MeterMarker (*this, *meter_group, UIConfiguration::instance().color ("meter marker"), buf, *ms));
|
2016-08-19 14:33:51 -04:00
|
|
|
}
|
2020-11-16 13:19:22 -05:00
|
|
|
} else if ((ts = dynamic_cast<Temporal::TempoPoint*>(*i)) != 0) {
|
2016-11-05 14:14:20 -04:00
|
|
|
max_tempo = max (max_tempo, ts->note_types_per_minute());
|
2017-02-24 13:09:16 -05:00
|
|
|
max_tempo = max (max_tempo, ts->end_note_types_per_minute());
|
2016-11-05 14:14:20 -04:00
|
|
|
min_tempo = min (min_tempo, ts->note_types_per_minute());
|
2017-02-24 13:09:16 -05:00
|
|
|
min_tempo = min (min_tempo, ts->end_note_types_per_minute());
|
2017-02-25 15:03:02 -05:00
|
|
|
uint32_t const tc_color = UIConfiguration::instance().color ("tempo curve");
|
2017-02-24 13:09:16 -05:00
|
|
|
|
2020-11-16 13:19:22 -05:00
|
|
|
tempo_curves.push_back (new TempoCurve (*this, *tempo_group, tc_color, *ts, ts->sample (sr), false));
|
2017-02-24 13:09:16 -05:00
|
|
|
|
2017-02-27 01:53:31 -05:00
|
|
|
const std::string tname (X_(""));
|
2020-11-16 13:19:22 -05:00
|
|
|
if (ts->map().time_domain() == BeatTime) {
|
|
|
|
metric_marks.push_back (new TempoMarker (*this, *tempo_group, UIConfiguration::instance().color ("tempo marker music"), tname, *ts));
|
|
|
|
|
2016-06-12 14:27:53 -04:00
|
|
|
} else {
|
2020-11-16 13:19:22 -05:00
|
|
|
metric_marks.push_back (new TempoMarker (*this, *tempo_group, UIConfiguration::instance().color ("tempo marker"), tname, *ts));
|
2016-06-12 14:27:53 -04:00
|
|
|
}
|
2017-02-26 19:10:47 -05:00
|
|
|
if (prev_ts && abs (prev_ts->end_note_types_per_minute() - ts->note_types_per_minute()) < 1.0) {
|
|
|
|
metric_marks.back()->set_points_color (UIConfiguration::instance().color ("tempo marker music"));
|
|
|
|
} else {
|
|
|
|
metric_marks.back()->set_points_color (UIConfiguration::instance().color ("tempo marker"));
|
|
|
|
}
|
|
|
|
prev_ts = ts;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2016-12-11 10:03:19 -05:00
|
|
|
tempo_curves.sort (CurveComparator());
|
2016-05-17 14:47:40 -04:00
|
|
|
|
2016-05-24 14:10:22 -04:00
|
|
|
const double min_tempo_range = 5.0;
|
|
|
|
const double tempo_delta = fabs (max_tempo - min_tempo);
|
|
|
|
|
|
|
|
if (tempo_delta < min_tempo_range) {
|
|
|
|
max_tempo += min_tempo_range - tempo_delta;
|
|
|
|
min_tempo += tempo_delta - min_tempo_range;
|
|
|
|
}
|
|
|
|
|
2016-05-07 13:03:12 -04:00
|
|
|
for (Curves::iterator x = tempo_curves.begin(); x != tempo_curves.end(); ) {
|
|
|
|
Curves::iterator tmp = x;
|
|
|
|
(*x)->set_max_tempo (max_tempo);
|
|
|
|
(*x)->set_min_tempo (min_tempo);
|
|
|
|
++tmp;
|
|
|
|
if (tmp != tempo_curves.end()) {
|
2020-11-16 13:19:22 -05:00
|
|
|
(*x)->set_position ((*x)->tempo().sample(sr), (*tmp)->tempo().sample(sr));
|
2016-05-07 13:03:12 -04:00
|
|
|
} else {
|
2020-11-16 13:19:22 -05:00
|
|
|
(*x)->set_position ((*x)->tempo().sample(sr), UINT32_MAX);
|
2016-05-07 13:03:12 -04:00
|
|
|
}
|
2017-01-06 11:39:24 -05:00
|
|
|
|
|
|
|
if (!(*x)->tempo().active()) {
|
|
|
|
(*x)->hide();
|
|
|
|
} else {
|
|
|
|
(*x)->show();
|
|
|
|
}
|
|
|
|
|
2016-05-07 13:03:12 -04:00
|
|
|
++x;
|
|
|
|
}
|
2006-08-30 22:28:42 -04:00
|
|
|
|
2016-05-17 14:47:40 -04:00
|
|
|
for (Marks::iterator x = metric_marks.begin(); x != metric_marks.end(); ++x) {
|
|
|
|
TempoMarker* tempo_marker;
|
|
|
|
|
|
|
|
if ((tempo_marker = dynamic_cast<TempoMarker*> (*x)) != 0) {
|
2016-11-05 14:14:20 -04:00
|
|
|
tempo_marker->update_height_mark ((tempo_marker->tempo().note_types_per_minute() - min_tempo) / max (10.0, max_tempo - min_tempo));
|
2016-05-17 14:47:40 -04:00
|
|
|
}
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::tempo_map_changed ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2021-04-04 19:56:58 -04:00
|
|
|
TempoMap::Metrics metrics;
|
|
|
|
TempoMap::use()->get_metrics (metrics);
|
2016-05-17 14:47:40 -04:00
|
|
|
|
2021-04-04 19:56:58 -04:00
|
|
|
draw_metric_marks (metrics);
|
2017-09-18 12:39:17 -04:00
|
|
|
compute_bbt_ruler_scale (_leftmost_sample, _leftmost_sample + current_page_samples());
|
2016-10-18 12:56:43 -04:00
|
|
|
update_tempo_based_rulers ();
|
2018-02-09 10:59:39 -05:00
|
|
|
maybe_draw_grid_lines ();
|
2015-12-22 13:58:49 -05:00
|
|
|
}
|
|
|
|
|
2007-04-12 19:20:37 -04:00
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::redisplay_grid (bool immediate_redraw)
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_session) {
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
return;
|
|
|
|
}
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
if (immediate_redraw) {
|
2017-03-10 09:37:26 -05:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
update_tempo_based_rulers ();
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
update_grid();
|
2020-10-15 01:09:22 -04:00
|
|
|
|
2008-12-12 09:43:24 -05:00
|
|
|
} else {
|
2018-02-09 10:59:39 -05:00
|
|
|
Glib::signal_idle().connect (sigc::bind_return (sigc::bind (sigc::mem_fun (*this, &Editor::redisplay_grid), true), false));
|
2008-12-12 09:43:24 -05:00
|
|
|
}
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
}
|
2017-02-25 15:03:02 -05:00
|
|
|
void
|
2021-01-26 21:30:56 -05:00
|
|
|
Editor::tempo_curve_selected (Temporal::TempoPoint const * ts, bool yn)
|
2017-02-25 15:03:02 -05:00
|
|
|
{
|
2017-03-04 13:21:56 -05:00
|
|
|
if (ts == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-25 15:03:02 -05:00
|
|
|
for (Curves::iterator x = tempo_curves.begin(); x != tempo_curves.end(); ++x) {
|
2017-02-26 19:10:47 -05:00
|
|
|
if (&(*x)->tempo() == ts) {
|
|
|
|
if (yn) {
|
|
|
|
(*x)->set_color_rgba (UIConfiguration::instance().color ("location marker"));
|
|
|
|
} else {
|
|
|
|
(*x)->set_color_rgba (UIConfiguration::instance().color ("tempo curve"));
|
|
|
|
}
|
2017-02-25 15:03:02 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
|
2015-12-19 12:41:45 -05:00
|
|
|
/* computes a grid starting a beat before and ending a beat after leftmost and rightmost respectively */
|
use filechooser widget in export dialog, selected files set format combos, hide progress bar until use in export dialog, speed up 'separate regions in range' operation on larger sessions, ruler scale now calculated separately to mark generation, fix for non-stacked layering regression, try not to generate 'buried' crossfades, use playlist->freeze() to speed up copying/moving regions on large playlists (not done for undo), width dependent items now reset on regionview init, get rid of jack_port_ensure_monitor check, remove audiosourse _length (only source has a length.. i think), make overlapend differ to overlapexternal where start points coincide.
git-svn-id: svn://localhost/ardour2/trunk@2576 d708f5d6-7413-0410-9779-e7cbd77b26cf
2007-10-26 09:32:24 -04:00
|
|
|
void
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::compute_current_bbt_points (Temporal::TempoMapPoints& grid, samplepos_t leftmost, samplepos_t rightmost)
|
2007-04-12 19:20:37 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (!_session) {
|
2007-04-12 19:20:37 -04:00
|
|
|
return;
|
|
|
|
}
|
2006-09-18 23:29:16 -04:00
|
|
|
|
2021-03-22 18:02:36 -04:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::use());
|
|
|
|
|
2012-01-08 11:53:11 -05:00
|
|
|
/* prevent negative values of leftmost from creeping into tempomap
|
|
|
|
*/
|
2021-03-22 18:02:36 -04:00
|
|
|
|
|
|
|
const Beats left = tmap->quarters_at_sample (leftmost).round_down_to_beat();
|
|
|
|
const Beats lower_beat = (left < Beats() ? Beats() : left);
|
2020-11-16 13:19:22 -05:00
|
|
|
const samplecnt_t sr (_session->sample_rate());
|
|
|
|
|
2016-10-18 12:56:43 -04:00
|
|
|
switch (bbt_ruler_scale) {
|
|
|
|
|
2018-07-26 15:07:45 -04:00
|
|
|
case bbt_show_quarters:
|
|
|
|
case bbt_show_eighths:
|
|
|
|
case bbt_show_sixteenths:
|
|
|
|
case bbt_show_thirtyseconds:
|
2021-02-20 20:37:56 -05:00
|
|
|
case bbt_show_sixtyfourths:
|
2021-02-21 08:14:22 -05:00
|
|
|
case bbt_show_onetwentyeighths:
|
2020-11-27 14:41:11 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 0);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_1:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 1);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_4:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 4);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_16:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 16);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
case bbt_show_64:
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 64);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* bbt_show_many */
|
2021-01-21 17:46:34 -05:00
|
|
|
tmap->get_grid (grid, max (tmap->superclock_at (lower_beat), (superclock_t) 0), samples_to_superclock (rightmost, sr), 128);
|
2016-10-18 12:56:43 -04:00
|
|
|
break;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::hide_grid_lines ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2018-02-09 10:59:39 -05:00
|
|
|
if (grid_lines) {
|
|
|
|
grid_lines->hide();
|
2013-04-24 15:42:14 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-02-09 10:59:39 -05:00
|
|
|
Editor::maybe_draw_grid_lines ()
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2018-02-09 10:59:39 -05:00
|
|
|
if ( _session == 0 ) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
if (grid_lines == 0) {
|
|
|
|
grid_lines = new GridLines (time_line_group, ArdourCanvas::LineSet::Vertical);
|
|
|
|
}
|
|
|
|
|
|
|
|
grid_marks.clear();
|
|
|
|
samplepos_t rightmost_sample = _leftmost_sample + current_page_samples();
|
|
|
|
|
|
|
|
if ( grid_musical() ) {
|
|
|
|
metric_get_bbt (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2018-02-26 19:38:18 -05:00
|
|
|
} else if (_grid_type== GridTypeTimecode) {
|
2018-02-09 10:59:39 -05:00
|
|
|
metric_get_timecode (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2018-02-26 18:02:24 -05:00
|
|
|
} else if (_grid_type == GridTypeCDFrame) {
|
2018-02-26 19:52:28 -05:00
|
|
|
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2018-02-09 10:59:39 -05:00
|
|
|
} else if (_grid_type == GridTypeMinSec) {
|
|
|
|
metric_get_minsec (grid_marks, _leftmost_sample, rightmost_sample, 12);
|
2008-09-10 17:27:39 -04:00
|
|
|
}
|
2015-01-07 19:05:21 -05:00
|
|
|
|
2018-02-09 10:59:39 -05:00
|
|
|
grid_lines->draw ( grid_marks );
|
|
|
|
grid_lines->show();
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-10-05 00:52:17 -04:00
|
|
|
Editor::mouse_add_new_tempo_event (timepos_t pos)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
if (pos.beats() > Beats()) {
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
begin_reversible_command (_("add tempo mark"));
|
2020-10-05 00:52:17 -04:00
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
TempoMap::SharedPtr map (TempoMap::write_copy());
|
2016-04-13 16:14:51 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = map->get_state();
|
2016-04-13 16:03:20 -04:00
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
/* add music-locked ramped (?) tempo using the bpm/note type at sample*/
|
2020-11-27 14:41:11 -05:00
|
|
|
|
2020-12-31 00:28:02 -05:00
|
|
|
map->set_tempo (map->tempo_at (pos), pos);
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &after = map->get_state();
|
2020-11-27 17:44:34 -05:00
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &after));
|
2016-04-13 16:14:51 -04:00
|
|
|
commit_reversible_command ();
|
2020-12-31 00:28:02 -05:00
|
|
|
|
|
|
|
TempoMap::update (map);
|
2016-04-13 16:14:51 -04:00
|
|
|
}
|
2020-11-24 17:06:35 -05:00
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
//map.dump (cerr);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-10-05 00:52:17 -04:00
|
|
|
Editor::mouse_add_new_meter_event (timepos_t pos)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2009-12-17 13:24:23 -05:00
|
|
|
if (_session == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-01-04 23:57:59 -05:00
|
|
|
MeterDialog meter_dialog (TempoMap::use(), pos, _("add"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (meter_dialog.run ()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-11-27 16:17:41 -05:00
|
|
|
|
2021-01-04 23:57:59 -05:00
|
|
|
TempoMap::SharedPtr map (TempoMap::write_copy());
|
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double bpb = meter_dialog.get_bpb ();
|
|
|
|
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double note_type = meter_dialog.get_note_type ();
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2020-07-23 19:46:49 -04:00
|
|
|
Temporal::BBT_Time requested;
|
2005-11-27 16:17:41 -05:00
|
|
|
meter_dialog.get_bbt_time (requested);
|
2008-02-01 22:57:35 -05:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
begin_reversible_command (_("add meter mark"));
|
2020-10-05 00:52:17 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = map->get_state();
|
2016-05-07 13:03:12 -04:00
|
|
|
|
2020-12-07 20:56:39 -05:00
|
|
|
if (map->time_domain() == BeatTime) {
|
|
|
|
pos = timepos_t (map->quarters_at (requested));
|
2016-02-27 12:59:34 -05:00
|
|
|
} else {
|
2020-12-07 20:56:39 -05:00
|
|
|
pos = timepos_t (map->sample_at (requested, _session->sample_rate()));
|
2016-02-27 12:59:34 -05:00
|
|
|
}
|
2016-05-07 13:03:12 -04:00
|
|
|
|
2020-12-07 20:56:39 -05:00
|
|
|
map->set_meter (Meter (bpb, note_type), pos);
|
|
|
|
|
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &map->get_state()));
|
2005-11-27 16:17:41 -05:00
|
|
|
commit_reversible_command ();
|
2020-12-07 20:56:39 -05:00
|
|
|
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::update (map);
|
|
|
|
|
2008-02-01 22:57:35 -05:00
|
|
|
//map.dump (cerr);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-11-23 12:21:12 -05:00
|
|
|
Editor::remove_tempo_marker (ArdourCanvas::Item* item)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-07-23 07:23:47 -04:00
|
|
|
ArdourMarker* marker;
|
2005-09-25 14:42:24 -04:00
|
|
|
TempoMarker* tempo_marker;
|
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
fatal << _("programming error: tempo marker canvas item has no marker object pointer!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((tempo_marker = dynamic_cast<TempoMarker*> (marker)) == 0) {
|
|
|
|
fatal << _("programming error: marker for tempo is not a tempo marker!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2017-01-06 09:12:09 -05:00
|
|
|
if (!tempo_marker->tempo().locked_to_meter() && tempo_marker->tempo().active()) {
|
2010-05-02 19:14:43 -04:00
|
|
|
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_tempo_marker), &tempo_marker->tempo()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-11-23 18:45:08 -05:00
|
|
|
Editor::edit_meter_section (Temporal::MeterPoint& section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-27 14:41:11 -05:00
|
|
|
MeterDialog meter_dialog (section, _("done"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (meter_dialog.run()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
double bpb = meter_dialog.get_bpb ();
|
|
|
|
bpb = max (1.0, bpb); // XXX is this a reasonable limit?
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2016-03-01 10:07:32 -05:00
|
|
|
double const note_type = meter_dialog.get_note_type ();
|
2016-07-03 11:12:55 -04:00
|
|
|
const Meter meter (bpb, note_type);
|
|
|
|
|
2020-07-23 19:46:49 -04:00
|
|
|
Temporal::BBT_Time when;
|
2016-05-23 14:17:35 -04:00
|
|
|
meter_dialog.get_bbt_time (when);
|
2011-12-28 16:02:31 -05:00
|
|
|
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::write_copy());
|
2020-11-27 14:41:11 -05:00
|
|
|
|
2021-04-04 19:56:58 -04:00
|
|
|
reassociate_metric_markers (tmap);
|
|
|
|
|
2016-03-21 08:47:57 -04:00
|
|
|
begin_reversible_command (_("replace meter mark"));
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = tmap->get_state();
|
2016-05-20 11:45:37 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
tmap->set_meter (meter, when);
|
2016-05-20 11:45:37 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &after = tmap->get_state();
|
2020-11-27 17:44:34 -05:00
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &after));
|
2005-11-27 16:17:41 -05:00
|
|
|
commit_reversible_command ();
|
2020-12-31 14:05:20 -05:00
|
|
|
|
|
|
|
TempoMap::update (tmap);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2020-11-23 18:45:08 -05:00
|
|
|
Editor::edit_tempo_section (TempoPoint& section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-27 14:41:11 -05:00
|
|
|
TempoDialog tempo_dialog (TempoMap::use(), section, _("done"));
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
switch (tempo_dialog.run ()) {
|
|
|
|
case RESPONSE_ACCEPT:
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return;
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
2005-11-27 16:17:41 -05:00
|
|
|
|
|
|
|
double bpm = tempo_dialog.get_bpm ();
|
2017-03-06 12:00:38 -05:00
|
|
|
double end_bpm = tempo_dialog.get_end_bpm ();
|
2021-01-01 17:59:47 -05:00
|
|
|
int nt = tempo_dialog.get_note_type ();
|
2016-07-03 11:12:55 -04:00
|
|
|
bpm = max (0.01, bpm);
|
2021-01-01 17:59:47 -05:00
|
|
|
|
|
|
|
const Tempo tempo (bpm, end_bpm, nt);
|
2016-02-27 12:59:34 -05:00
|
|
|
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::write_copy());
|
2021-04-04 19:56:58 -04:00
|
|
|
reassociate_metric_markers (tmap);
|
2020-11-27 14:41:11 -05:00
|
|
|
|
2020-07-23 19:46:49 -04:00
|
|
|
Temporal::BBT_Time when;
|
2016-04-03 13:00:40 -04:00
|
|
|
tempo_dialog.get_bbt_time (when);
|
2016-03-01 10:07:32 -05:00
|
|
|
|
2005-11-27 16:17:41 -05:00
|
|
|
begin_reversible_command (_("replace tempo mark"));
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = tmap->get_state();
|
2016-03-23 11:55:59 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
tmap->set_tempo (tempo, when);
|
2016-03-23 11:55:59 -04:00
|
|
|
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &after = tmap->get_state();
|
2020-11-27 17:44:34 -05:00
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &after));
|
2005-11-27 16:17:41 -05:00
|
|
|
commit_reversible_command ();
|
2020-12-31 14:05:20 -05:00
|
|
|
|
|
|
|
TempoMap::update (tmap);
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-27 10:09:58 -05:00
|
|
|
Editor::edit_tempo_marker (TempoMarker& tm)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-23 18:45:08 -05:00
|
|
|
edit_tempo_section (tm.tempo());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2014-01-27 10:09:58 -05:00
|
|
|
Editor::edit_meter_marker (MeterMarker& mm)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2020-11-23 18:45:08 -05:00
|
|
|
edit_meter_section (mm.meter());
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::real_remove_tempo_marker (TempoPoint *section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
begin_reversible_command (_("remove tempo mark"));
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::write_copy());
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = tmap->get_state();
|
|
|
|
tmap->remove_tempo (*section);
|
|
|
|
XMLNode &after = tmap->get_state();
|
2020-11-27 17:44:34 -05:00
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &after));
|
2005-09-25 14:42:24 -04:00
|
|
|
commit_reversible_command ();
|
|
|
|
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::update (tmap);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2005-11-23 12:21:12 -05:00
|
|
|
Editor::remove_meter_marker (ArdourCanvas::Item* item)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2015-07-23 07:23:47 -04:00
|
|
|
ArdourMarker* marker;
|
2005-09-25 14:42:24 -04:00
|
|
|
MeterMarker* meter_marker;
|
|
|
|
|
2015-07-23 07:23:47 -04:00
|
|
|
if ((marker = reinterpret_cast<ArdourMarker *> (item->get_data ("marker"))) == 0) {
|
2005-09-25 14:42:24 -04:00
|
|
|
fatal << _("programming error: meter marker canvas item has no marker object pointer!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((meter_marker = dynamic_cast<MeterMarker*> (marker)) == 0) {
|
|
|
|
fatal << _("programming error: marker for meter is not a meter marker!") << endmsg;
|
2014-11-14 04:47:43 -05:00
|
|
|
abort(); /*NOTREACHED*/
|
2009-10-14 12:10:01 -04:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2020-11-16 13:19:22 -05:00
|
|
|
if (!meter_marker->meter().map().is_initial(meter_marker->meter())) {
|
|
|
|
Glib::signal_idle().connect (sigc::bind (sigc::mem_fun(*this, &Editor::real_remove_meter_marker), &meter_marker->meter()));
|
2005-09-25 14:42:24 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gint
|
2020-11-16 13:19:22 -05:00
|
|
|
Editor::real_remove_meter_marker (Temporal::MeterPoint *section)
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
begin_reversible_command (_("remove tempo mark"));
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::SharedPtr tmap (TempoMap::write_copy());
|
2020-11-27 14:41:11 -05:00
|
|
|
XMLNode &before = tmap->get_state();
|
|
|
|
tmap->remove_meter (*section);
|
|
|
|
XMLNode &after = tmap->get_state();
|
2020-11-27 17:44:34 -05:00
|
|
|
_session->add_command (new MementoCommand<Temporal::TempoMap> (new Temporal::TempoMap::MementoBinder(), &before, &after));
|
2005-09-25 14:42:24 -04:00
|
|
|
commit_reversible_command ();
|
2006-08-30 22:28:42 -04:00
|
|
|
|
2020-12-31 14:05:20 -05:00
|
|
|
TempoMap::update (tmap);
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
return FALSE;
|
|
|
|
}
|