1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-10 14:46:24 +01:00

Remove VisibleTrackIterator

This commit is contained in:
Paul Licameli
2018-09-10 23:00:28 -04:00
parent ae2ce1ad90
commit b94e8fec96
6 changed files with 42 additions and 53 deletions

View File

@@ -489,6 +489,16 @@ protected:
friend class GetInfoCommand;
};
// A predicate class
struct IsVisibleTrack
{
IsVisibleTrack(AudacityProject *project);
bool operator () (const Track *pTrack) const;
wxRect mPanelRect;
};
// See big pictorial comment in TrackPanel for explanation of these numbers
enum : int {
kLeftInset = 4,