2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2004 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_gtk_ghost_region_h__
|
|
|
|
#define __ardour_gtk_ghost_region_h__
|
|
|
|
|
|
|
|
#include <vector>
|
2009-12-19 15:26:31 -05:00
|
|
|
#include "pbd/signals.h"
|
2013-04-04 00:32:52 -04:00
|
|
|
|
|
|
|
namespace ArdourCanvas {
|
|
|
|
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;
|
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();
|
|
|
|
|
|
|
|
std::vector<ArdourCanvas::WaveView*> waves;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MidiGhostRegion : public GhostRegion {
|
|
|
|
public:
|
2013-04-04 00:32:52 -04:00
|
|
|
class GhostEvent : public sigc::trackable {
|
2013-04-04 18:45:27 -04:00
|
|
|
public:
|
2014-06-22 11:41:05 -04:00
|
|
|
GhostEvent(::NoteBase *, ArdourCanvas::Container *);
|
2013-04-04 18:45:27 -04:00
|
|
|
virtual ~GhostEvent ();
|
2015-10-05 10:17:49 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
NoteBase* event;
|
2014-12-28 21:31:33 -05:00
|
|
|
ArdourCanvas::Item* item;
|
2008-02-10 13:16:25 -05:00
|
|
|
};
|
|
|
|
|
2015-10-22 07:56:02 -04:00
|
|
|
MidiGhostRegion(RegionView& rv,
|
|
|
|
TimeAxisView& tv,
|
|
|
|
TimeAxisView& source_tv,
|
|
|
|
double initial_unit_pos);
|
|
|
|
|
|
|
|
MidiGhostRegion(RegionView& rv,
|
|
|
|
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();
|
|
|
|
|
|
|
|
void update_range();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
void add_note(NoteBase*);
|
|
|
|
void update_note (NoteBase*);
|
|
|
|
void remove_note (NoteBase*);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
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:
|
|
|
|
|
2013-04-04 18:45:27 -04:00
|
|
|
MidiGhostRegion::GhostEvent* find_event (NoteBase*);
|
2011-02-27 23:00:38 -05:00
|
|
|
|
2013-04-04 00:32:52 -04:00
|
|
|
typedef std::list<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__ */
|