#include <PlayableTrackButtonHandles.h>
|
| | EffectsButtonHandle (const std::shared_ptr< Track > &pTrack, const wxRect &rect) |
| |
| EffectsButtonHandle & | operator= (const EffectsButtonHandle &)=default |
| |
| virtual | ~EffectsButtonHandle () |
| |
Public Member Functions inherited from ButtonHandle |
| std::shared_ptr< Track > | GetTrack () const |
| |
| bool | IsDragging () const override |
| |
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) |
| |
| virtual std::shared_ptr< const Track > | FindTrack () const =0 |
| |
| virtual bool | IsDragging () const |
| |
| Result | GetChangeHighlight () const |
| |
| void | SetChangeHighlight (Result val) |
| |
| 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) |
| |
|
| 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) |
| |
| ButtonHandle & | operator= (const ButtonHandle &)=default |
| |
| virtual | ~ButtonHandle () |
| |
| std::shared_ptr< const Track > | FindTrack () const override |
| |
| 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 |
| |
◆ EffectsButtonHandle() [1/2]
◆ EffectsButtonHandle() [2/2]
| EffectsButtonHandle::EffectsButtonHandle |
( |
const std::shared_ptr< Track > & |
pTrack, |
|
|
const wxRect & |
rect |
|
) |
| |
|
explicit |
◆ ~EffectsButtonHandle()
| EffectsButtonHandle::~EffectsButtonHandle |
( |
| ) |
|
|
virtual |
◆ CommitChanges()
◆ HitTest()
Definition at line 174 of file PlayableTrackButtonHandles.cpp.
178{
179 wxRect buttonRect;
180 if ( pTrack )
182 pTrack.get());
183
185 return {};
186
187 if ( pTrack && buttonRect.Contains(state.m_x, state.m_y) ) {
188 auto result = std::make_shared<EffectsButtonHandle>( pTrack, buttonRect );
190 return result;
191 }
192 else
193 return {};
194}
std::shared_ptr< Subclass > AssignUIHandlePtr(std::weak_ptr< Subclass > &holder, const std::shared_ptr< Subclass > &pNew)
static void GetEffectsButtonRect(const wxRect &rect, wxRect &dest, const Track *pTrack)
AUDACITY_DLL_API bool HideTopItem(const wxRect &rect, const wxRect &subRect, int allowance=0)
References AssignUIHandlePtr(), PlayableTrackControls::GetEffectsButtonRect(), and CommonTrackInfo::HideTopItem().
Referenced by WaveTrackControls::HitTest().
◆ operator=()
◆ StopsOnKeystroke()
| bool EffectsButtonHandle::StopsOnKeystroke |
( |
| ) |
|
|
inlineoverrideprotectedvirtual |
◆ Tip()
Implements ButtonHandle.
Definition at line 155 of file PlayableTrackButtonHandles.cpp.
157{
158 auto name =
XO(
"Effects");
159 auto focused =
161 if (!focused)
163 else {
165
166
167
168
169
170
171 }
172}
Subclass & Get(const RegisteredFactory &key)
Get reference to an attachment, creating on demand if not present, down-cast it to Subclass.
References TrackFocus::Get(), ClientData::Site< Host, ClientData, ObjectCopyingPolicy, Pointer, ObjectLockingPolicy, RegistryLockingPolicy >::Get(), ButtonHandle::GetTrack(), name, project, and XO().
The documentation for this class was generated from the following files: