mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-03 17:19:43 +02:00
57 lines
747 B
C++
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 *)
|
|
{
|
|
}
|