mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-06 05:35:47 +01:00
emit a new signal when a ProcessorElement is added to the selection inside a DnDVBox<ProcessorEntry>
This commit is contained in:
parent
ad1377abb5
commit
83984a7884
1 changed files with 2 additions and 0 deletions
|
|
@ -251,6 +251,7 @@ public:
|
|||
sigc::signal<void, DnDVBox*, T*, Glib::RefPtr<Gdk::DragContext> const & > DropFromAnotherBox;
|
||||
sigc::signal<void, Gtk::SelectionData const &, T*, Glib::RefPtr<Gdk::DragContext> const & > DropFromExternal;
|
||||
sigc::signal<void> SelectionChanged;
|
||||
sigc::signal<void,T&> SelectionAdded;
|
||||
|
||||
private:
|
||||
|
||||
|
|
@ -632,6 +633,7 @@ private:
|
|||
}
|
||||
_selection.push_back (child);
|
||||
setup_child_state (child);
|
||||
SelectionAdded (*child); /* EMIT SIGNAL */
|
||||
}
|
||||
|
||||
void remove_from_selection (T* child)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue