mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-16 16:10:06 +02:00
34 lines
636 B
C++
34 lines
636 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
HitTestResult.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_HIT_TEST_RESULT__
|
|
#define __AUDACITY_HIT_TEST_RESULT__
|
|
|
|
#include "MemoryX.h"
|
|
|
|
class wxCursor;
|
|
|
|
struct HitTestPreview
|
|
{
|
|
HitTestPreview()
|
|
{}
|
|
|
|
HitTestPreview(const wxString &message_, wxCursor *cursor_,
|
|
const wxString &tooltip_ = wxString{})
|
|
: message(message_), cursor(cursor_), tooltip(tooltip_)
|
|
{}
|
|
|
|
wxString message {};
|
|
wxCursor *cursor {};
|
|
wxString tooltip{};
|
|
};
|
|
|
|
#endif
|