28#include "../CommonCommandFlags.h"
31#include "../ProjectWindows.h"
34#include "../effects/EffectManager.h"
35#include "../widgets/Overlay.h"
36#include "../TrackPanelAx.h"
37#include "../TrackPanel.h"
42#include "../LabelTrack.h"
43#include "../NoteTrack.h"
51#include "../prefs/PrefsDialog.h"
54#include "../tracks/ui/TrackView.h"
83 {
XO(
"Preferences") },
117 {
return VisitSettings<false>(
S); }
120 {
return VisitSettings<true>(
S); }
126 S.StartMultiColumn(2, wxALIGN_CENTER);
128 S.TieChoice(
XXO(
"Type:"),
130 S.TieChoice(
XXO(
"Format:"),
145 std::make_unique<LispifiedCommandOutputTargets>( *context.
pOutput.get() )
154 std::make_unique<BriefCommandOutputTargets>( *context.
pOutput.get() )
175 context.
Status(
"Command options not recognised" );
184 wxLogDebug(
"No menus");
188 size_t cnt = pBar->GetMenuCount();
194 Label = pBar->GetMenuLabelText( i );
198 context.
AddItem( Label,
"label" );
199 context.
AddItem(
"",
"accel" );
201 ExploreMenu( context, pBar->GetMenu( i ), pBar->GetId(), 1 );
220 wxCheckBox * TieCheckBox(
223 wxCheckBox * TieCheckBoxOnRight(
233 const std::vector<int> * pInternalChoices,
int iNoMatchSelector)
override;
235 wxTextCtrl * TieTextBox(
238 const int nChars)
override;
239 wxTextCtrl * TieIntegerTextBox(
242 const int nChars)
override;
243 wxTextCtrl * TieNumericTextBox(
246 const int nChars)
override;
247 wxSlider * TieSlider(
251 const int min = 0)
override;
252 wxSpinCtrl * TieSpinCtrl(
256 const int min)
override;
259ShuttleGuiGetDefinition::ShuttleGuiGetDefinition(
318 const std::vector<int> * pInternalChoices,
int iNoMatchSelector)
330 Prompt,
Setting, Choices, pInternalChoices, iNoMatchSelector );
414 ShuttleGuiGetDefinition
S(pWin, *((context.
pOutput)->mStatusTarget) );
432 if (!command.empty()){
447 wxRect R = pWin->GetScreenRect();
454 context.
AddItem(
"Audacity Window",
"name" );
457 context.
AddItem( R.GetLeft() );
459 context.
AddItem( R.GetRight() );
460 context.
AddItem( R.GetBottom() );
465 ExploreAdornments( context, pWin->GetPosition()+wxSize( 6,-1), pWin, pWin->GetId(), 1 );
466 ExploreWindows( context, pWin->GetPosition()+wxSize( 6,-1), pWin, pWin->GetId(), 1 );
475 for (
auto trk : tracks.Leaders())
481 context.
AddItem( trk->GetName(),
"name" );
482 context.
AddBool( (trk == fTrack),
"focused");
483 context.
AddBool( trk->GetSelected(),
"selected" );
486 trk->TypeSwitch( [&] (
const WaveTrack* t ) {
489 context.
AddItem(
"wave",
"kind" );
497 context.
AddItem( vzmin,
"VZoomMin");
498 context.
AddItem( vzmax,
"VZoomMax");
502 context.
AddItem(
"note",
"kind" );
506 context.
AddItem(
"label",
"kind" );
509 context.
AddItem(
"time",
"kind" );
523 for (
auto t : tracks.Leaders()) {
524 t->TypeSwitch([&](
WaveTrack *waveTrack) {
528 context.
AddItem((
double)i,
"track");
529 context.
AddItem(pClip->GetPlayStartTime(),
"start");
530 context.
AddItem(pClip->GetPlayEndTime(),
"end");
531 context.
AddItem(pClip->GetColourIndex(),
"color");
549 for (
auto t : tracks.Leaders()) {
550 t->TypeSwitch([&](
WaveTrack *waveTrack) {
555 context.
AddItem((
double)i,
"track");
556 context.
AddItem((
double)j,
"clip");
557 context.
AddItem(pClip->GetPlayStartTime(),
"start");
558 Envelope * pEnv = pClip->GetEnvelope();
565 context.
AddItem((*pEnv)[k].GetT() + offset,
"t");
566 context.
AddItem((*pEnv)[k].GetVal(),
"y");
571 context.
AddItem(pClip->GetPlayEndTime(),
"end");
590 for (
auto t : tracks.Leaders()) {
592#ifdef VERBOSE_LABELS_FORMATTING
593 for (
int nn = 0; nn< (int)labelTrack->
mLabels.size(); nn++) {
596 context.
AddItem( (
double)i,
"track" );
631 static_cast<void>(Id);
637 wxMenuItemList list = pMenu->GetMenuItems();
638 size_t lcnt = list.size();
644 for (
size_t lndx = 0; lndx < lcnt; lndx++) {
645 item = list.Item(lndx)->GetData();
646 Label = item->GetItemLabelText();
647 Name = commandManager.GetNameFromNumericID( item->GetId() );
648 Accel = item->GetItemLabel();
649 if( Accel.Contains(
"\t") )
650 Accel = Accel.AfterLast(
'\t');
653 if( item->IsSeparator() )
656 if (item->IsSubMenu())
658 if (item->IsCheck() && item->IsChecked())
662 context.
AddItem( depth,
"depth" );
663 context.
AddItem( flags,
"flags" );
664 context.
AddItem( Label,
"label" );
665 context.
AddItem( Accel,
"accel" );
669 context.
AddItem( Name.GET(),
"id" );
672 if (item->IsSubMenu()) {
673 pMenu = item->GetSubMenu();
674 ExploreMenu( context, pMenu, item->GetId(), depth+1 );
680 wxPoint WXUNUSED(
P), wxWindow * pWin,
int WXUNUSED(Id),
int depth )
688 wxRect R1 = pWin->GetScreenRect();
689 wxSize s = pWin->GetWindowBorderSize();
690 wxRect R( 2,32, R1.GetWidth() - s.GetWidth() * 2 -16, 22 );
693 context.
AddItem( depth,
"depth" );
694 context.
AddItem(
"MenuBar",
"label" );
697 context.
AddItem( R.GetLeft() );
699 context.
AddItem( R.GetRight() );
700 context.
AddItem( R.GetBottom() );
707 wxPoint
P,
int depth )
711 wxRect panelRect{ {}, tp.GetSize() };
713 auto rulers = tp.FindRulerRects(t);
714 for (
auto &R : rulers) {
715 if (!R.Intersects(panelRect))
717 R.SetPosition( R.GetPosition() +
P );
719 context.
AddItem( depth,
"depth" );
720 context.
AddItem(
"VRuler",
"label" );
723 context.
AddItem( R.GetLeft() );
725 context.
AddItem( R.GetRight() );
726 context.
AddItem( R.GetBottom() );
736 wxPoint
P, wxWindow * pWin,
int Id,
int depth )
738 static_cast<void>(Id);
740 if( pWin->GetName() ==
"Track Panel" )
742 wxRect R = pWin->GetScreenRect();
743 ExploreTrackPanel( context, R.GetPosition()-
P, depth );
746 wxWindowList list = pWin->GetChildren();
747 size_t lcnt = list.size();
749 for (
size_t lndx = 0; lndx < lcnt; lndx++) {
750 wxWindow * item = list[lndx];
751 if( !item->IsShown() )
753 wxRect R = item->GetScreenRect();
754 R.SetPosition( R.GetPosition() -
P );
755 wxString Name = item->GetName();
757 if( Name.StartsWith(
"static" ) )
760 if( Name ==
"panel" )
763 Name = wxString(
"*") + item->GetToolTipText();
766 context.
AddItem( depth,
"depth" );
767 context.
AddItem( Name,
"label" );
768 context.
AddItem( item->GetId(),
"id" );
771 context.
AddItem( R.GetLeft() );
773 context.
AddItem( R.GetRight() );
774 context.
AddItem( R.GetBottom() );
779 ExploreWindows( context,
P, item, item->GetId(), depth+1 );
789 wxT(
"Optional/Extra/Part2/Scriptables2"),
const ReservedCommandFlag & AudioIONotBusyFlag()
XXO("&Cut/Copy/Paste Toolbar")
static const EnumValueSymbol kTypes[nTypes]
static const EnumValueSymbol kFormats[nFormats]
Contains declaration of GetInfoCommand class.
@ PluginTypeAudacityCommand
AUDACITY_DLL_API wxFrame & GetProjectFrame(AudacityProject &project)
Get the top-level window associated with the project (as a wxFrame only, when you do not need to use ...
Declarations for SelectCommand and SelectCommandType classes.
TranslatableStrings Msgids(const EnumValueSymbol strings[], size_t nStrings)
Convenience function often useful when adding choice controls.
std::vector< TranslatableString > TranslatableStrings
std::vector< WaveClip * > WaveClipPointers
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
This specialization of Setting for bool adds a Toggle method to negate the saved value.
const wxString & Key() const
const EnumValueSymbols & GetSymbols() const
const EnumValueSymbol & Default() const
Subclass & Get(const RegisteredFactory &key)
Get reference to an attachment, creating on demand if not present, down-cast it to Subclass.
CommandContext provides additional information to an 'Apply()' command. It provides the project,...
virtual void Status(const wxString &message, bool bFlush=false) const
void AddBool(const bool value, const wxString &name={}) const
void StartField(const wxString &name) const
void AddItem(const wxString &value, const wxString &name={}) const
AudacityProject & project
std::unique_ptr< CommandOutputTargets > pOutput
static CommandManager & Get(AudacityProject &project)
CommandMessageTargetDecorator is a CommandOutputTarget that forwards its work on to another one....
void AddBool(const bool value, const wxString &name={}) override
void StartStruct() override
void StartField(const wxString &name={}) override
void AddItem(const wxString &value, const wxString &name={}) override
void EndStruct() override
void StartArray() override
Interface for objects that can receive (string) messages from a command.
ComponentInterfaceSymbol pairs a persistent string identifier used internally with an optional,...
const wxString & Internal() const
Specialization of Setting for double.
EffectManager is the class that handles effects and effect categories.
CommandID GetCommandIdentifier(const PluginID &ID)
void GetCommandDefinition(const PluginID &ID, const CommandContext &context, int flags)
static EffectManager & Get()
const wxArrayStringEx & GetInternals() const
Piecewise linear or piecewise exponential function from double to double.
size_t GetNumberOfPoints() const
Return number of points.
void ExploreWindows(const CommandContext &context, wxPoint P, wxWindow *pWin, int Id, int depth)
bool Apply(const CommandContext &context) override
bool SendClips(const CommandContext &context)
bool SendCommands(const CommandContext &context, int flags)
bool SendEnvelopes(const CommandContext &context)
bool SendLabels(const CommandContext &context)
void ExploreMenu(const CommandContext &context, wxMenu *pMenu, int Id, int depth)
bool VisitSettings(SettingsVisitorBase< Const > &S)
void PopulateOrExchange(ShuttleGui &S) override
static const ComponentInterfaceSymbol Symbol
void ExploreTrackPanel(const CommandContext &context, wxPoint P, int depth)
bool ApplyInner(const CommandContext &context)
bool SendTracks(const CommandContext &context)
bool SendBoxes(const CommandContext &context)
bool SendMenus(const CommandContext &context)
bool SendPreferences(const CommandContext &context)
void ExploreAdornments(const CommandContext &context, wxPoint P, wxWindow *pWin, int Id, int depth)
Specialization of Setting for int.
A LabelTrack is a Track that holds labels (LabelStruct).
const LabelArray & GetLabels() const
A Track that is used for Midi notes. (Somewhat old code).
PluginManager maintains a list of all plug ins. That covers modules, effects, generators,...
Range PluginsOfType(int type)
static PluginManager & Get()
void ShuttleAll(ShuttleGui &S)
const SettingPath & GetPath() const
const T & GetDefault() const
Visitor of effect or command parameters. This is a base class with lots of virtual functions that do ...
virtual wxTextCtrl * TieIntegerTextBox(const TranslatableString &Prompt, const IntSetting &Setting, const int nChars)
wxChoice * TieChoice(const TranslatableString &Prompt, TranslatableString &Selected, const TranslatableStrings &choices)
wxCheckBox * TieCheckBox(const TranslatableString &Prompt, bool &Var)
virtual wxChoice * TieNumberAsChoice(const TranslatableString &Prompt, IntSetting &Setting, const TranslatableStrings &Choices, const std::vector< int > *pInternalChoices=nullptr, int iNoMatchSelector=0)
wxTextCtrl * TieNumericTextBox(const TranslatableString &Prompt, int &Value, const int nChars=0)
wxCheckBox * TieCheckBoxOnRight(const TranslatableString &Prompt, bool &Var)
wxSpinCtrl * TieSpinCtrl(const TranslatableString &Prompt, int &Value, const int max, const int min=0)
wxTextCtrl * TieTextBox(const TranslatableString &Caption, wxString &Value, const int nChars=0)
wxSlider * TieSlider(const TranslatableString &Prompt, int &pos, const int max, const int min=0)
Derived from ShuttleGuiBase, an Audacity specific class for shuttling data to and from GUI.
Specialization of Setting for strings.
A kind of Track used to 'warp time'.
Abstract base class for an object holding data associated with points on a time axis.
auto Any() -> TrackIterRange< TrackType >
static TrackList & Get(AudacityProject &project)
static auto Channels(TrackType *pTrack) -> TrackIterRange< TrackType >
static TrackPanel & Get(AudacityProject &project)
Holds a msgid for the translation catalog; may also bind format arguments.
wxString Translation() const
This allows multiple clips to be a part of one WaveTrack.
A Track that contains audio waveform data.
double GetStartTime() const override
Get the time at which the first clip in the track starts.
WaveClipPointers SortedClipArray()
double GetEndTime() const override
Get the time at which the last clip in the track ends, plus recorded stuff.
Shuttle that retrieves a JSON format definition of a command's parameters.
wxChoice * TieChoice(const TranslatableString &Prompt, ChoiceSetting &choiceSetting) override
virtual ~ShuttleGuiGetDefinition()
wxSpinCtrl * TieSpinCtrl(const TranslatableString &Prompt, const IntSetting &Setting, const int max, const int min) override
wxCheckBox * TieCheckBoxOnRight(const TranslatableString &Prompt, const BoolSetting &Setting) override
wxTextCtrl * TieIntegerTextBox(const TranslatableString &Prompt, const IntSetting &Setting, const int nChars) override
wxCheckBox * TieCheckBox(const TranslatableString &Prompt, const BoolSetting &Setting) override
wxTextCtrl * TieTextBox(const TranslatableString &Prompt, const StringSetting &Setting, const int nChars) override
wxChoice * TieNumberAsChoice(const TranslatableString &Prompt, IntSetting &Setting, const TranslatableStrings &Choices, const std::vector< int > *pInternalChoices, int iNoMatchSelector) override
wxSlider * TieSlider(const TranslatableString &Prompt, const IntSetting &Setting, const int max, const int min=0) override
wxTextCtrl * TieNumericTextBox(const TranslatableString &Prompt, const DoubleSetting &Setting, const int nChars) override
AUDACITY_DLL_API void OnAudacityCommand(const CommandContext &ctx)
BuiltinCommandsModule::Registration< GetInfoCommand > reg