X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=gtk2_ardour%2Ftrack_selection.h;h=d94ec3c8c1773bf39aa1edf6c09014a0704b35a9;hb=46b52f4b518a2a091207226ff95c39bb1e985642;hp=e61e62958f6a2dadec2f791b17e4a71a3b344114;hpb=65e17100872e515e8a6a50b8213fa7ed99a1455f;p=ardour.git diff --git a/gtk2_ardour/track_selection.h b/gtk2_ardour/track_selection.h index e61e62958f..d94ec3c8c1 100644 --- a/gtk2_ardour/track_selection.h +++ b/gtk2_ardour/track_selection.h @@ -23,6 +23,7 @@ #include "track_view_list.h" #include "route_ui.h" #include "audio_time_axis.h" +#include "midi_time_axis.h" class PublicEditor; @@ -33,7 +34,7 @@ public: TrackSelection (PublicEditor const *, TrackViewList const &); virtual ~TrackSelection (); - + TrackViewList add (TrackViewList const &); template @@ -47,7 +48,9 @@ public: void foreach_route_ui (Function f) { for (iterator i = begin(); i != end(); ++i) { RouteUI* t = dynamic_cast (*i); - f (t); + if (t) { + f (t); + } } } @@ -55,7 +58,9 @@ public: void foreach_route_time_axis (Function f) { for (iterator i = begin(); i != end(); ++i) { RouteTimeAxisView* t = dynamic_cast (*i); - f (t); + if (t) { + f (t); + } } } @@ -63,10 +68,22 @@ public: void foreach_audio_time_axis (Function f) { for (iterator i = begin(); i != end(); ++i) { AudioTimeAxisView* t = dynamic_cast (*i); - f (t); + if (t) { + f (t); + } } } - + + template + void foreach_midi_time_axis (Function f) { + for (iterator i = begin(); i != end(); ++i) { + MidiTimeAxisView* t = dynamic_cast (*i); + if (t) { + f (t); + } + } + } + private: PublicEditor const * _editor; };