show trigger/slot selection

This commit is contained in:
Paul Davis 2021-11-10 17:51:04 -07:00
parent a9949f20e6
commit 4f58a92c6d
2 changed files with 35 additions and 6 deletions

View file

@ -61,6 +61,7 @@ class TriggerEntry : public ArdourCanvas::Rectangle
void _size_allocate (ArdourCanvas::Rect const &);
void maybe_update ();
bool event_handler (GdkEvent*);
void selection_change ();
private:
ARDOUR::Trigger& _trigger;
@ -118,9 +119,11 @@ class TriggerBoxUI : public ArdourCanvas::Table
void build ();
void rapid_update ();
sigc::connection update_connection;
};
void selection_changed ();
sigc::connection update_connection;
sigc::connection selection_connection;
};
class TriggerBoxWidget : public ArdourCanvas::GtkCanvas
{