audacia/src/UIHandle.cpp
2020-01-03 10:09:46 -05:00

52 lines
693 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, 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 *)
{
}