Audacity 3.2.0
Public Member Functions | Public Attributes | List of all members
anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel Struct Referencefinal
Inheritance diagram for anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel:
[legend]
Collaboration diagram for anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel:
[legend]

Public Member Functions

 VRulerAndChannel (const std::shared_ptr< ChannelView > &pView, wxCoord leftOffset)
 
Subdivision Children (const wxRect &rect) override
 
- Public Member Functions inherited from TrackPanelGroup
 TrackPanelGroup ()
 
virtual ~TrackPanelGroup ()
 
virtual Subdivision Children (const wxRect &rect)=0
 
- Public Member Functions inherited from TrackPanelNode
 TrackPanelNode ()
 
virtual ~TrackPanelNode ()=0
 
- 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)
 

Public Attributes

std::shared_ptr< ChannelViewmpView
 
wxCoord mLeftOffset
 

Additional Inherited Members

- Public Types inherited from TrackPanelGroup
enum class  Axis { X , Y }
 
using Child = std::pair< wxCoord, std::shared_ptr< TrackPanelNode > >
 
using Refinement = std::vector< Child >
 
using Subdivision = std::pair< Axis, Refinement >
 
- 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)
 

Detailed Description

Definition at line 1133 of file TrackPanel.cpp.

Constructor & Destructor Documentation

◆ VRulerAndChannel()

anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel::VRulerAndChannel ( const std::shared_ptr< ChannelView > &  pView,
wxCoord  leftOffset 
)
inline

Definition at line 1134 of file TrackPanel.cpp.

Member Function Documentation

◆ Children()

Subdivision anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel::Children ( const wxRect &  rect)
inlineoverridevirtual

Implements TrackPanelGroup.

Definition at line 1137 of file TrackPanel.cpp.

1138 {
1139 return { Axis::X, Refinement{
1140 { rect.GetLeft(),
1141 ChannelVRulerControls::Get(*mpView).shared_from_this() },
1142 { mLeftOffset, mpView }
1143 } };
1144 }
static ChannelVRulerControls & Get(ChannelView &)
std::vector< Child > Refinement

References ChannelVRulerControls::Get().

Here is the call graph for this function:

Member Data Documentation

◆ mLeftOffset

wxCoord anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel::mLeftOffset

Definition at line 1146 of file TrackPanel.cpp.

◆ mpView

std::shared_ptr<ChannelView> anonymous_namespace{TrackPanel.cpp}::VRulerAndChannel::mpView

Definition at line 1145 of file TrackPanel.cpp.


The documentation for this struct was generated from the following file: