1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 09:01:12 +01:00

Show friendly names of commands in message boxes...

... With spaces in the English; maybe later they will localize
This commit is contained in:
Paul Licameli
2018-03-07 23:42:57 -05:00
parent 9298ac575d
commit 77f720b0c8
5 changed files with 69 additions and 33 deletions

View File

@@ -55,12 +55,21 @@ class MacroCommands final {
// constructors and destructors
MacroCommands();
public:
bool ApplyMacro(const wxString & filename = wxT(""));
bool ApplyCommand( const wxString & command, const wxString & params, CommandContext const * pContext=NULL );
bool ApplyCommandInBatchMode(const wxString & command, const wxString &params);
bool ApplySpecialCommand(int iCommand, const wxString & command,const wxString & params);
bool ApplyEffectCommand(const PluginID & ID, const wxString & command, const wxString & params, const CommandContext & Context);
bool ReportAndSkip( const wxString & command, const wxString & params );
bool ApplyMacro( const MacroCommandsCatalog &catalog,
const wxString & filename = wxT(""));
bool ApplyCommand( const wxString &friendlyCommand,
const wxString & command, const wxString & params,
CommandContext const * pContext=NULL );
bool ApplyCommandInBatchMode( const wxString &friendlyCommand,
const wxString & command, const wxString &params);
bool ApplySpecialCommand(
int iCommand, const wxString &friendlyCommand,
const wxString & command, const wxString & params);
bool ApplyEffectCommand(
const PluginID & ID, const wxString &friendlyCommand,
const wxString & command,
const wxString & params, const CommandContext & Context);
bool ReportAndSkip( const wxString & friendlyCommand, const wxString & params );
void AbortBatch();
// Utility functions for the special commands.