1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 17:09:26 +02:00
audacity/src/UIHandle.cpp
2019-06-26 23:39:42 -04:00

52 lines
657 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;
}
bool UIHandle::StopsOnKeystroke()
{
return false;
}
void UIHandle::OnProjectChange(AudacityProject *)
{
}