1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-25 08:38:39 +02:00
audacity/src/prefs/BatchPrefs.cpp
Paul Licameli 4d09705a73 Change XO to XXO in many more places, with no effects at all...
... because the two macros have the same expansion, and are both checked for
in the --keyword arguments passed to msgfmt by locale/update_po_files.sh.

This commit makes ONLY such changes, and comments in Internat.h.  It is big
but quite harmless.

The intention is to introduce a type distinction in a later release, by defining
XXO differently.  XXO is used where & characters in strings (for hotkeys of menu
items or control prompts) are permitted, XO where not.
2020-05-22 13:07:50 -04:00

113 lines
2.5 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
BatchPrefs.cpp
Dominic Mazzoni
James Crook
*******************************************************************//**
\class BatchPrefs
\brief A probably unused PrefsPanel that in debug builds could offer a
setting used in debugging batch (aka macros) processing.
*//*******************************************************************/
#include "../Audacity.h"
#include "BatchPrefs.h"
#include <wx/defs.h>
#include <wx/intl.h>
#include <wx/textdlg.h>
#include "../Languages.h"
#include "../Prefs.h"
#include "../ShuttleGui.h"
BEGIN_EVENT_TABLE(BatchPrefs, PrefsPanel)
END_EVENT_TABLE()
/// Constructor
BatchPrefs::BatchPrefs(wxWindow * parent, wxWindowID winid):
PrefsPanel(parent, winid, XO("Batch"))
{
Populate();
}
ComponentInterfaceSymbol BatchPrefs::GetSymbol()
{
return BATCH_PREFS_PLUGIN_SYMBOL;
}
TranslatableString BatchPrefs::GetDescription()
{
return XO("Preferences for Batch");
}
wxString BatchPrefs::HelpPageName()
{
return "Batch_Preferences";
}
/// Creates the dialog and its contents.
void BatchPrefs::Populate( )
{
//------------------------- Main section --------------------
// Now construct the GUI itself.
// Use 'eIsCreatingFromPrefs' so that the GUI is
// initialised with values from gPrefs.
ShuttleGui S(this, eIsCreatingFromPrefs);
PopulateOrExchange(S);
// ----------------------- End of main section --------------
}
/// Defines the dialog and does data exchange with it.
void BatchPrefs::PopulateOrExchange( ShuttleGui & S )
{
S.SetBorder( 2 );
S.StartScroller();
S.StartHorizontalLay( wxEXPAND, 0 );
S.StartStatic( XO("Behaviors"),1 );
{
#ifdef _DEBUG
S.TieCheckBox( XXO("&Don't apply effects in batch mode"),
{wxT("/Batch/Debug"), false});
#endif
}
S.EndStatic();
S.EndHorizontalLay();
S.EndScroller();
return;
}
/// Send changed values back to Prefs, and update Audacity.
bool BatchPrefs::Commit()
{
ShuttleGui S( this, eIsSavingToPrefs );
PopulateOrExchange( S );
return true;
}
BatchPrefs::~BatchPrefs()
{
}
#if 0
namespace{
PrefsPanel::Registration sAttachment{ "Batch",
[](wxWindow *parent, wxWindowID winid, AudacityProject *)
{
wxASSERT(parent); // to justify safenew
return safenew BatchPrefs(parent, winid);
},
false,
// Register with an explicit ordering hint because this one is
// only conditionally compiled
{ "", { Registry::OrderingHint::Before, "KeyConfig" } }
};
}
#endif