mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-09 16:21:02 +02:00
... in four cases; not in some other .cpp file. This is another move that causes the generated graph to reflect dependencies correctly. This fixes other large, hidden cycles that involved PrefsDialog.cpp: there was link dependency on that when PrefsPanel.h was used for the base class. No longer. Also cycles involving TrackPanel.cpp, which contained the default implementations for TrackPanelCell and related abstract base classes.
28 lines
568 B
C++
28 lines
568 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TrackPanelDrawable.cpp
|
|
|
|
Paul Licameli split from TrackPanel.cpp
|
|
|
|
**********************************************************************/
|
|
|
|
#include "TrackPanelDrawable.h"
|
|
|
|
TrackPanelDrawable::~TrackPanelDrawable()
|
|
{
|
|
}
|
|
|
|
void TrackPanelDrawable::Draw(
|
|
TrackPanelDrawingContext &, const wxRect &, unsigned )
|
|
{
|
|
}
|
|
|
|
wxRect TrackPanelDrawable::DrawingArea(
|
|
TrackPanelDrawingContext &,
|
|
const wxRect &rect, const wxRect &, unsigned )
|
|
{
|
|
return rect;
|
|
}
|