1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 09:20:16 +01:00

Define and use CommonTrackCell

This commit is contained in:
Paul Licameli
2019-06-17 14:11:31 -04:00
parent 2bb823e1b6
commit bebd709e98
6 changed files with 40 additions and 16 deletions

View File

@@ -15,14 +15,14 @@
class TrackPanelResizeHandle;
class TrackPanelResizerCell : public CommonTrackPanelCell
class TrackPanelResizerCell : public CommonTrackCell
{
TrackPanelResizerCell(const TrackPanelResizerCell&) = delete;
TrackPanelResizerCell &operator= (const TrackPanelResizerCell&) = delete;
public:
explicit
TrackPanelResizerCell( std::shared_ptr<Track> pTrack );
TrackPanelResizerCell( const std::shared_ptr<Track> &pTrack );
std::vector<UIHandlePtr> HitTest
(const TrackPanelMouseState &, const AudacityProject *) override;