mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 08:30:06 +02: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>
35 lines
695 B
C++
35 lines
695 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
HitTestResult.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HIT_TEST_RESULT__
|
|
#define __AUDACITY_HIT_TEST_RESULT__
|
|
|
|
#include <memory>
|
|
#include "Internat.h" // for TranslatableString
|
|
|
|
class wxCursor;
|
|
|
|
struct HitTestPreview
|
|
{
|
|
HitTestPreview()
|
|
{}
|
|
|
|
HitTestPreview(const TranslatableString &message_, wxCursor *cursor_,
|
|
const TranslatableString &tooltip_ = {})
|
|
: message{ message_ }, cursor{ cursor_ }, tooltip{ tooltip_ }
|
|
{}
|
|
|
|
TranslatableString message {};
|
|
wxCursor *cursor {};
|
|
TranslatableString tooltip{};
|
|
};
|
|
|
|
#endif
|