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 Tim Mayberry <mojofunk@gmail.com>
|
|
|
|
* Copyright (C) 2008-2014 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2009-2011 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2015-2017 Robin Gareus <robin@gareus.org>
|
|
|
|
* Copyright (C) 2016-2017 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.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_gtk_ghost_region_h__
|
|
|
|
#define __ardour_gtk_ghost_region_h__
|
|
|
|
|
|
|
|
#include <vector>
|
2017-01-03 08:19:31 -05:00
|
|
|
#include <boost/unordered_map.hpp>
|
2009-12-19 15:26:31 -05:00
|
|
|
#include "pbd/signals.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
2017-07-17 14:12:33 -04:00
|
|
|
namespace ArdourWaveView {
|
2013-04-04 00:32:52 -04:00
|
|
|
class WaveView;
|
2008-02-10 13:16:25 -05:00
|
|
|
}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
class NoteBase;
|
|
|
|
class Note;
|
|
|
|
class Hit;
|
2008-02-10 13:16:25 -05:00
|
|
|
class MidiStreamView;
|
|
|
|
class TimeAxisView;
|
2015-10-22 07:56:02 -04:00
|
|
|
class RegionView;
|
2017-01-29 09:46:38 -05:00
|
|
|
class MidiRegionView;
|
2008-02-10 13:16:25 -05:00
|
|
|
|
2011-05-05 09:49:35 -04:00
|
|
|
class GhostRegion : public sigc::trackable
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2008-02-10 13:16:25 -05:00
|
|
|
public:
|
2015-10-22 07:56:02 -04:00
|
|
|
GhostRegion(RegionView& rv,
|
|
|
|
ArdourCanvas::Container* parent,
|
|
|
|
TimeAxisView& tv,
|
|
|
|
TimeAxisView& source_tv,
|
|
|
|
double initial_unit_pos);
|
|
|
|
|
2008-02-10 13:16:25 -05:00
|
|
|
virtual ~GhostRegion();
|
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
virtual void set_samples_per_pixel (double) = 0;
|
2008-02-10 13:16:25 -05:00
|
|
|
virtual void set_height();
|
|
|
|
virtual void set_colors();
|
|
|
|
|
|
|
|
void set_duration(double units);
|
|
|
|
|
|
|
|
guint source_track_color(unsigned char alpha = 0xff);
|
|
|
|
bool is_automation_ghost();
|
|
|
|
|
2015-10-22 07:56:02 -04:00
|
|
|
RegionView& parent_rv;
|
2010-12-30 13:35:16 -05:00
|
|
|
/** TimeAxisView that is the AutomationTimeAxisView that we are on */
|
2009-07-09 13:58:13 -04:00
|
|
|
TimeAxisView& trackview;
|
2010-12-30 13:35:16 -05:00
|
|
|
/** TimeAxisView that we are a ghost for */
|
2009-07-09 13:58:13 -04:00
|
|
|
TimeAxisView& source_trackview;
|
2014-06-22 11:41:05 -04:00
|
|
|
ArdourCanvas::Container* group;
|
2013-04-04 00:32:52 -04:00
|
|
|
ArdourCanvas::Rectangle* base_rect;
|
2008-02-10 13:16:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class AudioGhostRegion : public GhostRegion {
|
|
|
|
public:
|
2015-10-22 07:56:02 -04:00
|
|
|
AudioGhostRegion(RegionView& rv,
|
|
|
|
TimeAxisView& tv,
|
|
|
|
TimeAxisView& source_tv,
|
|
|
|
double initial_unit_pos);
|
2008-02-10 13:16:25 -05:00
|
|
|
|
2013-04-12 11:31:50 -04:00
|
|
|
void set_samples_per_pixel (double);
|
2008-02-10 13:16:25 -05:00
|
|
|
void set_height();
|
|
|
|
void set_colors();
|
|
|
|
|
2017-07-17 14:12:33 -04:00
|
|
|
std::vector<ArdourWaveView::WaveView*> waves;
|
2008-02-10 13:16:25 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
class MidiGhostRegion : public GhostRegion {
|
|
|
|
public:
|
2017-07-01 15:11:14 -04:00
|
|
|
class GhostEvent : public sigc::trackable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GhostEvent(::NoteBase *, ArdourCanvas::Container *);
|
|
|
|
virtual ~GhostEvent ();
|
|
|
|
|
|
|
|
NoteBase* event;
|
|
|
|
ArdourCanvas::Item* item;
|
|
|
|
bool is_hit;
|
2008-02-10 13:16:25 -05:00
|
|
|
};
|
|
|
|
|
2017-01-29 09:46:38 -05:00
|
|
|
MidiGhostRegion(MidiRegionView& rv,
|
2015-10-22 07:56:02 -04:00
|
|
|
TimeAxisView& tv,
|
|
|
|
TimeAxisView& source_tv,
|
|
|
|
double initial_unit_pos);
|
|
|
|
|
2017-01-29 09:46:38 -05:00
|
|
|
MidiGhostRegion(MidiRegionView& rv,
|
2015-10-22 07:56:02 -04:00
|
|
|
MidiStreamView& msv,
|
|
|
|
TimeAxisView& source_tv,
|
|
|
|
double initial_unit_pos);
|
|
|
|
|
2008-02-21 20:45:29 -05:00
|
|
|
~MidiGhostRegion();
|
2008-02-10 13:16:25 -05:00
|
|
|
|
|
|
|
MidiStreamView* midi_view();
|
|
|
|
|
|
|
|
void set_height();
|
2013-04-12 11:31:50 -04:00
|
|
|
void set_samples_per_pixel (double spu);
|
2008-02-10 13:16:25 -05:00
|
|
|
void set_colors();
|
|
|
|
|
2016-12-22 08:51:34 -05:00
|
|
|
void update_contents_height();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
void add_note(NoteBase*);
|
2017-01-29 09:46:38 -05:00
|
|
|
void update_note (GhostEvent* note);
|
|
|
|
void update_hit (GhostEvent* hit);
|
2013-04-04 18:45:27 -04:00
|
|
|
void remove_note (NoteBase*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2022-04-02 00:24:01 -04:00
|
|
|
void model_changed();
|
|
|
|
void view_changed();
|
2008-02-10 13:16:25 -05:00
|
|
|
void clear_events();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2011-02-27 23:00:38 -05:00
|
|
|
private:
|
2016-12-23 10:01:37 -05:00
|
|
|
ArdourCanvas::Container* _note_group;
|
2017-07-17 12:34:35 -04:00
|
|
|
Gtkmm2ext::Color _outline;
|
2016-12-21 12:39:53 -05:00
|
|
|
ArdourCanvas::Rectangle* _tmp_rect;
|
|
|
|
ArdourCanvas::Polygon* _tmp_poly;
|
2011-02-27 23:00:38 -05:00
|
|
|
|
2017-01-29 09:46:38 -05:00
|
|
|
MidiRegionView& parent_mrv;
|
2017-09-24 12:03:54 -04:00
|
|
|
typedef Evoral::Note<Temporal::Beats> NoteType;
|
2023-02-16 18:33:28 -05:00
|
|
|
MidiGhostRegion::GhostEvent* find_event (std::shared_ptr<NoteType>);
|
2011-02-27 23:00:38 -05:00
|
|
|
|
2023-02-16 18:33:28 -05:00
|
|
|
typedef boost::unordered_map<std::shared_ptr<NoteType>, MidiGhostRegion::GhostEvent* > EventList;
|
2008-02-10 13:16:25 -05:00
|
|
|
EventList events;
|
2011-02-27 23:00:38 -05:00
|
|
|
EventList::iterator _optimization_iterator;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_ghost_region_h__ */
|