mirror of
https://github.com/cookiengineer/audacity
synced 2026-03-18 12:16:40 +01:00
List of commands that were executed in the `src directory`: * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.h * sed -i 's/Audacity: A Digital Audio Editor/Tenacity/g' *.cpp Signed-off-by: Panagiotis Vasilopoulos <hello@alwayslivid.com>
52 lines
648 B
C++
52 lines
648 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
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 *)
|
|
{
|
|
}
|