1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-18 12:16:40 +01:00
Files
audacity/src/UIHandle.cpp
Panagiotis Vasilopoulos 44968d3ac3 Rebranding: Replace 'Audacity: A Digital Audio Editor' in source files (#248)
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>
2021-07-13 09:30:42 +00:00

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 *)
{
}