mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-05 15:09:08 +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>
34 lines
668 B
C++
34 lines
668 B
C++
/**********************************************************************
|
|
|
|
Tenacity
|
|
|
|
TrackPanelDrawingContext.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TRACK_PANEL_DRAWING_CONTEXT__
|
|
#define __AUDACITY_TRACK_PANEL_DRAWING_CONTEXT__
|
|
|
|
#include <memory>
|
|
|
|
class UIHandle;
|
|
using UIHandlePtr = std::shared_ptr<UIHandle>;
|
|
class wxDC;
|
|
|
|
#include <wx/mousestate.h> // member variable
|
|
|
|
struct TrackPanelDrawingContext {
|
|
wxDC &dc;
|
|
UIHandlePtr target;
|
|
wxMouseState lastState;
|
|
|
|
void *pUserData;
|
|
|
|
// This redundancy fixes an MSVC compiler warning:
|
|
TrackPanelDrawingContext() = delete;
|
|
};
|
|
|
|
#endif
|