audacia/src/UIHandle.cpp

52 lines
672 B
C++

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