Audacity 3.2.0
Public Member Functions | Static Public Member Functions | Protected Member Functions | Private Member Functions | List of all members
SoloButtonHandle Class Referencefinal

#include <PlayableTrackButtonHandles.h>

Inheritance diagram for SoloButtonHandle:
[legend]
Collaboration diagram for SoloButtonHandle:
[legend]

Public Member Functions

 SoloButtonHandle (const std::shared_ptr< Track > &pTrack, const wxRect &rect)
 
SoloButtonHandleoperator= (const SoloButtonHandle &)=default
 
virtual ~SoloButtonHandle ()
 
- Public Member Functions inherited from ButtonHandle
std::shared_ptr< TrackGetTrack () const
 
bool IsClicked () const
 
- Public Member Functions inherited from UIHandle
virtual ~UIHandle ()=0
 
virtual void Enter (bool forward, AudacityProject *pProject)
 
virtual bool HasRotation () const
 
virtual bool Rotate (bool forward)
 
virtual bool HasEscape (AudacityProject *pProject) const
 
virtual bool Escape (AudacityProject *pProject)
 
virtual bool HandlesRightClick ()
 Whether the handle has any special right-button handling. More...
 
virtual Result Click (const TrackPanelMouseEvent &event, AudacityProject *pProject)=0
 
virtual Result Drag (const TrackPanelMouseEvent &event, AudacityProject *pProject)=0
 
virtual HitTestPreview Preview (const TrackPanelMouseState &state, AudacityProject *pProject)=0
 
virtual Result Release (const TrackPanelMouseEvent &event, AudacityProject *pProject, wxWindow *pParent)=0
 
virtual Result Cancel (AudacityProject *pProject)=0
 
virtual bool StopsOnKeystroke ()
 
virtual void OnProjectChange (AudacityProject *pProject)
 
Result GetChangeHighlight () const
 
void SetChangeHighlight (Result val)
 
- Public Member Functions inherited from TrackPanelDrawable
virtual ~TrackPanelDrawable ()=0
 
virtual void Draw (TrackPanelDrawingContext &context, const wxRect &rect, unsigned iPass)
 
virtual wxRect DrawingArea (TrackPanelDrawingContext &context, const wxRect &rect, const wxRect &panelRect, unsigned iPass)
 

Static Public Member Functions

static UIHandlePtr HitTest (std::weak_ptr< SoloButtonHandle > &holder, const wxMouseState &state, const wxRect &rect, const AudacityProject *pProject, const std::shared_ptr< Track > &pTrack)
 
- Static Public Member Functions inherited from UIHandle
static UIHandle::Result NeedChangeHighlight (const UIHandle &, const UIHandle &)
 
- Static Public Member Functions inherited from TrackPanelDrawable
static wxRect MaximizeWidth (const wxRect &rect, const wxRect &panelRect)
 
static wxRect MaximizeHeight (const wxRect &rect, const wxRect &panelRect)
 

Protected Member Functions

Result CommitChanges (const wxMouseEvent &event, AudacityProject *pProject, wxWindow *pParent) override
 
TranslatableString Tip (const wxMouseState &state, AudacityProject &) const override
 
bool StopsOnKeystroke () override
 
- Protected Member Functions inherited from ButtonHandle
 ButtonHandle (const std::shared_ptr< Track > &pTrack, const wxRect &rect)
 
ButtonHandleoperator= (const ButtonHandle &)=default
 
virtual ~ButtonHandle ()
 
virtual Result CommitChanges (const wxMouseEvent &event, AudacityProject *pProject, wxWindow *pParent)=0
 
virtual TranslatableString Tip (const wxMouseState &state, AudacityProject &project) const =0
 
void Enter (bool forward, AudacityProject *) final override
 
Result Click (const TrackPanelMouseEvent &event, AudacityProject *pProject) final override
 
Result Drag (const TrackPanelMouseEvent &event, AudacityProject *pProject) final override
 
HitTestPreview Preview (const TrackPanelMouseState &state, AudacityProject *pProject) final override
 
Result Release (const TrackPanelMouseEvent &event, AudacityProject *pProject, wxWindow *pParent) final override
 
Result Cancel (AudacityProject *pProject) final override
 

Private Member Functions

 SoloButtonHandle (const SoloButtonHandle &)=delete
 

Additional Inherited Members

- Public Types inherited from UIHandle
using Result = unsigned
 
using Cell = TrackPanelCell
 
- Protected Attributes inherited from ButtonHandle
std::weak_ptr< TrackmpTrack
 
wxRect mRect
 
bool mWasIn { true }
 
bool mIsClicked {}
 
- Protected Attributes inherited from UIHandle
Result mChangeHighlight { 0 }
 

Detailed Description

Definition at line 48 of file PlayableTrackButtonHandles.h.

Constructor & Destructor Documentation

◆ SoloButtonHandle() [1/2]

SoloButtonHandle::SoloButtonHandle ( const SoloButtonHandle )
privatedelete

◆ SoloButtonHandle() [2/2]

SoloButtonHandle::SoloButtonHandle ( const std::shared_ptr< Track > &  pTrack,
const wxRect &  rect 
)
explicit

Definition at line 84 of file PlayableTrackButtonHandles.cpp.

86 : ButtonHandle{ pTrack, rect }
87{}
A UIHandle for a TrackPanel button, such as the Mute and Solo buttons.
Definition: ButtonHandle.h:26

◆ ~SoloButtonHandle()

SoloButtonHandle::~SoloButtonHandle ( )
virtual

Definition at line 89 of file PlayableTrackButtonHandles.cpp.

90{
91}

Member Function Documentation

◆ CommitChanges()

UIHandle::Result SoloButtonHandle::CommitChanges ( const wxMouseEvent &  event,
AudacityProject pProject,
wxWindow *  pParent 
)
overrideprotectedvirtual

Implements ButtonHandle.

Definition at line 93 of file PlayableTrackButtonHandles.cpp.

95{
96 auto pTrack = mpTrack.lock();
97 if ( dynamic_cast< PlayableTrack* >( pTrack.get() ) )
98 TrackUtilities::DoTrackSolo(*pProject, pTrack.get(), event.ShiftDown());
99
101}
std::weak_ptr< Track > mpTrack
Definition: ButtonHandle.h:72
AudioTrack subclass that can also be audibly replayed by the program.
Definition: Track.h:917
void DoTrackSolo(AudacityProject &project, Track *t, bool exclusive)

References TrackUtilities::DoTrackSolo(), ButtonHandle::mpTrack, and RefreshCode::RefreshNone.

Here is the call graph for this function:

◆ HitTest()

UIHandlePtr SoloButtonHandle::HitTest ( std::weak_ptr< SoloButtonHandle > &  holder,
const wxMouseState &  state,
const wxRect &  rect,
const AudacityProject pProject,
const std::shared_ptr< Track > &  pTrack 
)
static

Definition at line 117 of file PlayableTrackButtonHandles.cpp.

121{
122 wxRect buttonRect;
123 if ( pTrack )
124 PlayableTrackControls::GetMuteSoloRect(rect, buttonRect, true,
125 !ProjectSettings::Get( *pProject ).IsSoloNone(), pTrack.get());
126
127 if ( TrackInfo::HideTopItem( rect, buttonRect ) )
128 return {};
129
130 if ( pTrack && buttonRect.Contains(state.m_x, state.m_y) ) {
131 auto result = std::make_shared<SoloButtonHandle>( pTrack, buttonRect );
132 result = AssignUIHandlePtr(holder, result);
133 return result;
134 }
135 else
136 return {};
137}
std::shared_ptr< Subclass > AssignUIHandlePtr(std::weak_ptr< Subclass > &holder, const std::shared_ptr< Subclass > &pNew)
Definition: UIHandle.h:151
static void GetMuteSoloRect(const wxRect &rect, wxRect &dest, bool solo, bool bHasSoloButton, const Track *pTrack)
static ProjectSettings & Get(AudacityProject &project)
bool IsSoloNone() const
AUDACITY_DLL_API bool HideTopItem(const wxRect &rect, const wxRect &subRect, int allowance=0)
Definition: TrackInfo.cpp:208

References AssignUIHandlePtr(), ProjectSettings::Get(), PlayableTrackControls::GetMuteSoloRect(), TrackInfo::HideTopItem(), and ProjectSettings::IsSoloNone().

Referenced by NoteTrackControls::HitTest(), and WaveTrackControls::HitTest().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator=()

SoloButtonHandle & SoloButtonHandle::operator= ( const SoloButtonHandle )
default

◆ StopsOnKeystroke()

bool SoloButtonHandle::StopsOnKeystroke ( )
inlineoverrideprotectedvirtual

Reimplemented from UIHandle.

Definition at line 68 of file PlayableTrackButtonHandles.h.

68{ return true; }

◆ Tip()

TranslatableString SoloButtonHandle::Tip ( const wxMouseState &  state,
AudacityProject project 
) const
overrideprotectedvirtual

Implements ButtonHandle.

Definition at line 103 of file PlayableTrackButtonHandles.cpp.

105{
106 auto name = XO("Solo");
107 auto focused =
108 TrackFocus::Get( project ).Get() == GetTrack().get();
109 if (!focused)
110 return name;
111
112 auto &commandManager = CommandManager::Get( project );
113 ComponentInterfaceSymbol command{ wxT("TrackSolo"), name };
114 return commandManager.DescribeCommandsAndShortcuts( &command, 1u );
115}
wxT("CloseDown"))
const TranslatableString name
Definition: Distortion.cpp:76
XO("Cut/Copy/Paste")
std::shared_ptr< Track > GetTrack() const
Definition: ButtonHandle.h:30
Subclass & Get(const RegisteredFactory &key)
Get reference to an attachment, creating on demand if not present, down-cast it to Subclass.
Definition: ClientData.h:309
static CommandManager & Get(AudacityProject &project)
ComponentInterfaceSymbol pairs a persistent string identifier used internally with an optional,...
Track * Get()

References TrackFocus::Get(), CommandManager::Get(), ClientData::Site< Host, ClientData, ObjectCopyingPolicy, Pointer, ObjectLockingPolicy, RegistryLockingPolicy >::Get(), ButtonHandle::GetTrack(), name, wxT(), and XO().

Here is the call graph for this function:

The documentation for this class was generated from the following files: