mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 08:53:08 +01:00
use and wrap Rectangle::set_outline_all() method
This commit is contained in:
parent
c2885671c6
commit
c10896e984
2 changed files with 9 additions and 2 deletions
|
|
@ -123,11 +123,17 @@ Note::set_y1 (Coord y1)
|
|||
}
|
||||
|
||||
void
|
||||
Note::set_outline_what (int what)
|
||||
Note::set_outline_what (ArdourCanvas::Rectangle::What what)
|
||||
{
|
||||
_rectangle->set_outline_what (what);
|
||||
}
|
||||
|
||||
void
|
||||
Note::set_outline_all ()
|
||||
{
|
||||
_rectangle->set_outline_all ();
|
||||
}
|
||||
|
||||
void
|
||||
Note::set_ignore_events (bool ignore)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -51,7 +51,8 @@ public:
|
|||
void set_x1 (ArdourCanvas::Coord);
|
||||
void set_y1 (ArdourCanvas::Coord);
|
||||
|
||||
void set_outline_what (int);
|
||||
void set_outline_what (ArdourCanvas::Rectangle::What);
|
||||
void set_outline_all ();
|
||||
|
||||
void set_outline_color (uint32_t);
|
||||
void set_fill_color (uint32_t);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue