1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-03 17:19:43 +02:00
audacity/src/UIHandle.cpp
Paul Licameli 173a300427 Include nothing before Audacity.h, as comments say we should...
... and remove some duplicated inclusions
2019-03-17 21:41:39 -04:00

57 lines
747 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
UIHandle.cpp
Paul Licameli
**********************************************************************/
#include "Audacity.h"
#include "UIHandle.h"
#include "RefreshCode.h"
UIHandle::~UIHandle()
{
}
void UIHandle::Enter(bool)
{
}
bool UIHandle::HasRotation() const
{
return false;
}
bool UIHandle::Rotate(bool)
{
return false;
}
bool UIHandle::HasEscape() const
{
return false;
}
bool UIHandle::Escape()
{
return false;
}
void UIHandle::DrawExtras
(DrawingPass, wxDC *, const wxRegion &, const wxRect &)
{
}
bool UIHandle::StopsOnKeystroke()
{
return false;
}
void UIHandle::OnProjectChange(AudacityProject *)
{
}