13
0

use new Canvas::Note object for (sustained) note display

This commit is contained in:
Paul Davis 2018-07-03 11:21:53 -04:00
parent ed24e01658
commit 644a05f60b
4 changed files with 30 additions and 27 deletions

View File

@ -41,8 +41,8 @@
using namespace std; using namespace std;
using namespace Editing; using namespace Editing;
using namespace ArdourCanvas;
using namespace ARDOUR; using namespace ARDOUR;
using ArdourCanvas::Duple;
GhostRegion::GhostRegion(RegionView& rv, GhostRegion::GhostRegion(RegionView& rv,
ArdourCanvas::Container* parent, ArdourCanvas::Container* parent,
@ -325,7 +325,7 @@ MidiGhostRegion::update_contents_height ()
_tmp_rect->set (ArdourCanvas::Rect (_tmp_rect->x0(), y, _tmp_rect->x1(), y + h)); _tmp_rect->set (ArdourCanvas::Rect (_tmp_rect->x0(), y, _tmp_rect->x1(), y + h));
} else { } else {
_tmp_poly = static_cast<ArdourCanvas::Polygon*>(it->second->item); _tmp_poly = static_cast<ArdourCanvas::Polygon*>(it->second->item);
Duple position = _tmp_poly->position(); ArdourCanvas::Duple position = _tmp_poly->position();
position.y = y; position.y = y;
_tmp_poly->set_position(position); _tmp_poly->set_position(position);
_tmp_poly->set(Hit::points(h)); _tmp_poly->set(Hit::points(h));

View File

@ -20,127 +20,128 @@
#include "evoral/Note.hpp" #include "evoral/Note.hpp"
#include "canvas/rectangle.h" #include "canvas/note.h"
#include "canvas/debug.h" #include "canvas/debug.h"
#include "note.h" #include "note.h"
#include "public_editor.h" #include "public_editor.h"
using namespace ARDOUR; using namespace ARDOUR;
using namespace ArdourCanvas; using ArdourCanvas::Coord;
using ArdourCanvas::Duple;
Note::Note ( Note::Note (
MidiRegionView& region, Item* parent, const boost::shared_ptr<NoteType> note, bool with_events) MidiRegionView& region, ArdourCanvas::Item* parent, const boost::shared_ptr<NoteType> note, bool with_events)
: NoteBase (region, with_events, note) : NoteBase (region, with_events, note)
, _rectangle (new ArdourCanvas::Rectangle (parent)) , _note (new ArdourCanvas::Note (parent))
{ {
CANVAS_DEBUG_NAME (_rectangle, "note"); CANVAS_DEBUG_NAME (_note, "note");
set_item (_rectangle); set_item (_note);
} }
Note::~Note () Note::~Note ()
{ {
delete _rectangle; delete _note;
} }
void void
Note::move_event (double dx, double dy) Note::move_event (double dx, double dy)
{ {
_rectangle->set (_rectangle->get().translate (Duple (dx, dy))); _note->set (_note->get().translate (Duple (dx, dy)));
} }
Coord Coord
Note::x0 () const Note::x0 () const
{ {
return _rectangle->x0 (); return _note->x0 ();
} }
Coord Coord
Note::x1 () const Note::x1 () const
{ {
return _rectangle->x1 (); return _note->x1 ();
} }
Coord Coord
Note::y0 () const Note::y0 () const
{ {
return _rectangle->y0 (); return _note->y0 ();
} }
Coord Coord
Note::y1 () const Note::y1 () const
{ {
return _rectangle->y1 (); return _note->y1 ();
} }
void void
Note::set_outline_color (uint32_t color) Note::set_outline_color (uint32_t color)
{ {
_rectangle->set_outline_color (color); _note->set_outline_color (color);
} }
void void
Note::set_fill_color (uint32_t color) Note::set_fill_color (uint32_t color)
{ {
_rectangle->set_fill_color (color); _note->set_fill_color (color);
} }
void void
Note::show () Note::show ()
{ {
_rectangle->show (); _note->show ();
} }
void void
Note::hide () Note::hide ()
{ {
_rectangle->hide (); _note->hide ();
} }
void void
Note::set (ArdourCanvas::Rect rect) Note::set (ArdourCanvas::Rect rect)
{ {
_rectangle->set (rect); _note->set (rect);
} }
void void
Note::set_x0 (Coord x0) Note::set_x0 (Coord x0)
{ {
_rectangle->set_x0 (x0); _note->set_x0 (x0);
} }
void void
Note::set_y0 (Coord y0) Note::set_y0 (Coord y0)
{ {
_rectangle->set_y0 (y0); _note->set_y0 (y0);
} }
void void
Note::set_x1 (Coord x1) Note::set_x1 (Coord x1)
{ {
_rectangle->set_x1 (x1); _note->set_x1 (x1);
} }
void void
Note::set_y1 (Coord y1) Note::set_y1 (Coord y1)
{ {
_rectangle->set_y1 (y1); _note->set_y1 (y1);
} }
void void
Note::set_outline_what (ArdourCanvas::Rectangle::What what) Note::set_outline_what (ArdourCanvas::Rectangle::What what)
{ {
_rectangle->set_outline_what (what); _note->set_outline_what (what);
} }
void void
Note::set_outline_all () Note::set_outline_all ()
{ {
_rectangle->set_outline_all (); _note->set_outline_all ();
} }
void void
Note::set_ignore_events (bool ignore) Note::set_ignore_events (bool ignore)
{ {
_rectangle->set_ignore_events (ignore); _note->set_ignore_events (ignore);
} }

View File

@ -27,6 +27,7 @@
namespace ArdourCanvas { namespace ArdourCanvas {
class Container; class Container;
class Note;
} }
class Note : public NoteBase class Note : public NoteBase
@ -66,7 +67,7 @@ public:
void move_event (double dx, double dy); void move_event (double dx, double dy);
private: private:
ArdourCanvas::Rectangle* _rectangle; ArdourCanvas::Note* _note;
}; };
#endif /* __gtk_ardour_note_h__ */ #endif /* __gtk_ardour_note_h__ */

View File

@ -46,6 +46,7 @@ canvas_sources = [
'line_set.cc', 'line_set.cc',
'lookup_table.cc', 'lookup_table.cc',
'meter.cc', 'meter.cc',
'note.cc',
'outline.cc', 'outline.cc',
'pixbuf.cc', 'pixbuf.cc',
'poly_item.cc', 'poly_item.cc',