mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-11 06:07:44 +02:00
29 lines
560 B
C++
29 lines
560 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
TrackPanelDrawingContext.h
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_TRACK_PANEL_DRAWING_CONTEXT__
|
|
#define __AUDACITY_TRACK_PANEL_DRAWING_CONTEXT__
|
|
|
|
#include "MemoryX.h"
|
|
|
|
class UIHandle;
|
|
using UIHandlePtr = std::shared_ptr<UIHandle>;
|
|
class wxDC;
|
|
|
|
#include <wx/mousestate.h>
|
|
|
|
struct TrackPanelDrawingContext {
|
|
wxDC &dc;
|
|
UIHandlePtr target;
|
|
wxMouseState lastState;
|
|
};
|
|
|
|
#endif
|