Audacity 3.2.0
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
SetTrackAudioCommand Class Reference

A SetTrackBase that sets pan, gain, mute and solo. More...

#include <SetTrackInfoCommand.h>

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

Public Member Functions

ComponentInterfaceSymbol GetSymbol () const override
 
TranslatableString GetDescription () const override
 
template<bool Const>
bool VisitSettings (SettingsVisitorBase< Const > &S)
 
bool VisitSettings (SettingsVisitor &S) override
 
bool VisitSettings (ConstSettingsVisitor &S) override
 
void PopulateOrExchange (ShuttleGui &S) override
 
ManualPageID ManualPage () override
 
bool ApplyInner (const CommandContext &context, Track &t) override
 
- Public Member Functions inherited from SetTrackBase
bool Apply (const CommandContext &context) final
 
virtual bool ApplyInner (const CommandContext &context, Track &t)=0
 
- Public Member Functions inherited from AudacityCommand
 AudacityCommand ()
 
virtual ~AudacityCommand ()
 
PluginPath GetPath () const override
 
VendorSymbol GetVendor () const override
 
wxString GetVersion () const override
 
ComponentInterfaceSymbol GetSymbol () const override=0
 
virtual TranslatableString GetDescription () const override
 
virtual ManualPageID ManualPage ()
 
virtual bool IsBatchProcessing () const
 
virtual void SetBatchProcessing (bool start)
 
virtual bool Apply (const CommandContext &WXUNUSED(context))
 
bool ShowInterface (wxWindow *parent, bool forceModal=false)
 
wxDialog * CreateUI (wxWindow *parent, AudacityCommand *client)
 
bool SaveSettingsAsString (wxString &parms)
 
bool LoadSettingsFromString (const wxString &parms)
 
bool DoAudacityCommand (wxWindow *parent, const CommandContext &context, bool shouldPrompt=true)
 
int MessageBox (const TranslatableString &message, long style=DefaultMessageBoxStyle, const TranslatableString &titleStr={})
 
virtual bool Init ()
 
virtual bool PromptUser (wxWindow *parent)
 
virtual bool CheckWhetherSkipAudacityCommand ()
 
virtual void End ()
 
virtual void PopulateOrExchange (ShuttleGui &WXUNUSED(S))
 
virtual bool TransferDataToWindow ()
 
virtual bool TransferDataFromWindow ()
 
virtual bool VisitSettings (SettingsVisitor &)
 
virtual bool VisitSettings (ConstSettingsVisitor &)
 
- Public Member Functions inherited from ComponentInterface
virtual ~ComponentInterface ()
 
virtual PluginPath GetPath () const =0
 
virtual ComponentInterfaceSymbol GetSymbol () const =0
 
virtual VendorSymbol GetVendor () const =0
 
virtual wxString GetVersion () const =0
 
virtual TranslatableString GetDescription () const =0
 
TranslatableString GetName () const
 

Public Attributes

double mPan
 
double mGain
 
bool bSolo
 
bool bMute
 
bool bHasPan
 
bool bHasGain
 
bool bHasSolo
 
bool bHasMute
 

Static Public Attributes

static const ComponentInterfaceSymbol Symbol { XO("Set Track Audio") }
 

Additional Inherited Members

- Public Types inherited from AudacityCommand
enum  : long { DefaultMessageBoxStyle = wxOK | wxCENTRE }
 
- Protected Attributes inherited from AudacityCommand
ProgressDialogmProgress
 
wxDialog * mUIDialog
 
wxWindow * mUIParent
 

Detailed Description

A SetTrackBase that sets pan, gain, mute and solo.

Definition at line 61 of file SetTrackInfoCommand.h.

Member Function Documentation

◆ ApplyInner()

bool SetTrackAudioCommand::ApplyInner ( const CommandContext context,
Track t 
)
overridevirtual

Implements SetTrackBase.

Definition at line 167 of file SetTrackInfoCommand.cpp.

168{
169 static_cast<void>(context);
170 auto wt = dynamic_cast<WaveTrack *>(&t);
171 auto pt = dynamic_cast<PlayableTrack *>(&t);
172
173 if (wt && bHasGain)
174 wt->SetGain(DB_TO_LINEAR(mGain));
175 if (wt && bHasPan)
176 wt->SetPan(mPan/100.0);
177
178 if (pt && bHasSolo)
179 pt->SetSolo(bSolo);
180 if (pt && bHasMute)
181 pt->SetMute(bMute);
182 return true;
183}
#define DB_TO_LINEAR(x)
Definition: MemoryX.h:338
AudioTrack subclass that can also be audibly replayed by the program.
Definition: PlayableTrack.h:40
void SetSolo(bool s)
A Track that contains audio waveform data.
Definition: WaveTrack.h:203

References bHasGain, bHasMute, bHasPan, bHasSolo, bMute, bSolo, DB_TO_LINEAR, mGain, mPan, and PlayableTrack::SetSolo().

Referenced by SetTrackCommand::ApplyInner().

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

◆ GetDescription()

TranslatableString SetTrackAudioCommand::GetDescription ( ) const
inlineoverridevirtual

Reimplemented from AudacityCommand.

Definition at line 69 of file SetTrackInfoCommand.h.

69{return XO("Sets various values for a track.");};
XO("Cut/Copy/Paste")

References XO().

Here is the call graph for this function:

◆ GetSymbol()

ComponentInterfaceSymbol SetTrackAudioCommand::GetSymbol ( ) const
inlineoverridevirtual

Implements AudacityCommand.

Definition at line 68 of file SetTrackInfoCommand.h.

68{return Symbol;};
static const ComponentInterfaceSymbol Symbol

References Symbol.

◆ ManualPage()

ManualPageID SetTrackAudioCommand::ManualPage ( )
inlineoverridevirtual

Reimplemented from AudacityCommand.

Definition at line 76 of file SetTrackInfoCommand.h.

76{return L"Extra_Menu:_Scriptables_I#set_track_audio";}

◆ PopulateOrExchange()

void SetTrackAudioCommand::PopulateOrExchange ( ShuttleGui S)
override

Definition at line 149 of file SetTrackInfoCommand.cpp.

150{
151 S.StartMultiColumn(2, wxEXPAND);
152 {
153 S.SetStretchyCol( 1 );
154 S.Optional( bHasMute ).TieCheckBox( XXO("Mute"), bMute);
155 S.Optional( bHasSolo ).TieCheckBox( XXO("Solo"), bSolo);
156 }
157 S.EndMultiColumn();
158 S.StartMultiColumn(3, wxEXPAND);
159 {
160 S.SetStretchyCol( 2 );
161 S.Optional( bHasGain ).TieSlider( XXO("Gain:"), mGain, 36.0,-36.0);
162 S.Optional( bHasPan ).TieSlider( XXO("Pan:"), mPan, 100.0, -100.0);
163 }
164 S.EndMultiColumn();
165}
XXO("&Cut/Copy/Paste Toolbar")
#define S(N)
Definition: ToChars.cpp:64

References bHasGain, bHasMute, bHasPan, bHasSolo, bMute, bSolo, mGain, mPan, S, and XXO().

Referenced by SetTrackCommand::PopulateOrExchange().

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

◆ VisitSettings() [1/3]

bool SetTrackAudioCommand::VisitSettings ( ConstSettingsVisitor )
overridevirtual

Visit settings, if defined. false means no defined settings. Default implementation returns false

Reimplemented from AudacityCommand.

Definition at line 146 of file SetTrackInfoCommand.cpp.

147 { return VisitSettings<true>(S); }

References S.

◆ VisitSettings() [2/3]

bool SetTrackAudioCommand::VisitSettings ( SettingsVisitor )
overridevirtual

Visit settings, if defined. false means no defined settings. Default implementation returns false

Reimplemented from AudacityCommand.

Definition at line 143 of file SetTrackInfoCommand.cpp.

144 { return VisitSettings<false>(S); }

References S.

◆ VisitSettings() [3/3]

template<bool Const>
bool SetTrackAudioCommand::VisitSettings ( SettingsVisitorBase< Const > &  S)

Definition at line 134 of file SetTrackInfoCommand.cpp.

134 {
135 S.OptionalN( bHasMute ).Define( bMute, wxT("Mute"), false );
136 S.OptionalN( bHasSolo ).Define( bSolo, wxT("Solo"), false );
137
138 S.OptionalN( bHasGain ).Define( mGain, wxT("Gain"), 0.0, -36.0, 36.0);
139 S.OptionalN( bHasPan ).Define( mPan, wxT("Pan"), 0.0, -100.0, 100.0);
140 return true;
141};
wxT("CloseDown"))

References bHasGain, bHasMute, bHasPan, bHasSolo, bMute, bSolo, mGain, mPan, S, and wxT().

Referenced by SetTrackCommand::VisitSettings().

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

Member Data Documentation

◆ bHasGain

bool SetTrackAudioCommand::bHasGain

Definition at line 87 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ bHasMute

bool SetTrackAudioCommand::bHasMute

Definition at line 89 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ bHasPan

bool SetTrackAudioCommand::bHasPan

Definition at line 86 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ bHasSolo

bool SetTrackAudioCommand::bHasSolo

Definition at line 88 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ bMute

bool SetTrackAudioCommand::bMute

Definition at line 83 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ bSolo

bool SetTrackAudioCommand::bSolo

Definition at line 82 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ mGain

double SetTrackAudioCommand::mGain

Definition at line 81 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ mPan

double SetTrackAudioCommand::mPan

Definition at line 80 of file SetTrackInfoCommand.h.

Referenced by ApplyInner(), PopulateOrExchange(), and VisitSettings().

◆ Symbol

const ComponentInterfaceSymbol SetTrackAudioCommand::Symbol { XO("Set Track Audio") }
static

Definition at line 64 of file SetTrackInfoCommand.h.

Referenced by GetSymbol().


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