1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-26 17:38:10 +02:00
audacity/src/prefs/QualityPrefs.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

251 lines
7.3 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
QualityPrefs.cpp
Joshua Haberman
James Crook
*******************************************************************//**
\class QualityPrefs
\brief A PrefsPanel used for setting audio quality.
*//*******************************************************************/
#include "../Audacity.h"
#include "QualityPrefs.h"
#include <wx/choice.h>
#include <wx/defs.h>
#include <wx/textctrl.h>
#include "../AudioIOBase.h"
#include "../Dither.h"
#include "../Prefs.h"
#include "../Resample.h"
#include "../ShuttleGui.h"
#define ID_SAMPLE_RATE_CHOICE 7001
//////////
static EnumSetting< sampleFormat > formatSetting{
wxT("/SamplingRate/DefaultProjectSampleFormatChoice"),
{
{ wxT("Format16Bit"), XO("16-bit") },
{ wxT("Format24Bit"), XO("24-bit") },
{ wxT("Format32BitFloat"), XO("32-bit float") }
},
2, // floatSample
// for migrating old preferences:
{
int16Sample,
int24Sample,
floatSample
},
wxT("/SamplingRate/DefaultProjectSampleFormat"),
};
//////////
BEGIN_EVENT_TABLE(QualityPrefs, PrefsPanel)
EVT_CHOICE(ID_SAMPLE_RATE_CHOICE, QualityPrefs::OnSampleRateChoice)
END_EVENT_TABLE()
QualityPrefs::QualityPrefs(wxWindow * parent, wxWindowID winid)
/* i18n-hint: meaning accuracy in reproduction of sounds */
: PrefsPanel(parent, winid, XO("Quality"))
{
Populate();
}
QualityPrefs::~QualityPrefs()
{
}
ComponentInterfaceSymbol QualityPrefs::GetSymbol()
{
return QUALITY_PREFS_PLUGIN_SYMBOL;
}
TranslatableString QualityPrefs::GetDescription()
{
return XO("Preferences for Quality");
}
wxString QualityPrefs::HelpPageName()
{
return "Quality_Preferences";
}
void QualityPrefs::Populate()
{
// First any pre-processing for constructing the GUI.
GetNamesAndLabels();
gPrefs->Read(wxT("/SamplingRate/DefaultProjectSampleRate"),
&mOtherSampleRateValue,
AudioIOBase::GetOptimalSupportedSampleRate());
//------------------------- 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 --------------
wxCommandEvent e;
OnSampleRateChoice(e); // Enable/disable the control.
}
/// Gets the lists of names and lists of labels which are
/// used in the choice controls.
/// The names are what the user sees in the wxChoice.
/// The corresponding labels are what gets stored.
void QualityPrefs::GetNamesAndLabels()
{
//------------ Sample Rate Names
// JKC: I don't understand the following comment.
// Can someone please explain or correct it?
// XXX: This should use a previously changed, but not yet saved
// sound card setting from the "I/O" preferences tab.
// LLL: It means that until the user clicks "Ok" in preferences, the
// GetSupportedSampleRates() call should use the devices they
// may have changed on the Audio I/O page. As coded, the sample
// rates it will return could be completely invalid as they will
// be what's supported by the devices that were selected BEFORE
// coming into preferences.
//
// GetSupportedSampleRates() allows passing in device names, but
// how do you get at them as they are on the Audio I/O page????
for (int i = 0; i < AudioIOBase::NumStandardRates; i++) {
int iRate = AudioIOBase::StandardRates[i];
mSampleRateLabels.push_back(iRate);
mSampleRateNames.push_back( XO("%i Hz").Format( iRate ) );
}
mSampleRateNames.push_back(XO("Other..."));
// The label for the 'Other...' case can be any value at all.
mSampleRateLabels.push_back(44100); // If chosen, this value will be overwritten
}
void QualityPrefs::PopulateOrExchange(ShuttleGui & S)
{
S.SetBorder(2);
S.StartScroller();
S.StartStatic(XO("Sampling"));
{
S.StartMultiColumn(2);
{
S.AddPrompt(XXO("Default Sample &Rate:"));
S.StartMultiColumn(2);
{
// First the choice...
// We make sure it uses the ID we want, so that we get changes
S.Id(ID_SAMPLE_RATE_CHOICE);
// We make sure we have a pointer to it, so that we can drive it.
mSampleRates = S.TieNumberAsChoice( {},
{wxT("/SamplingRate/DefaultProjectSampleRate"),
AudioIOBase::GetOptimalSupportedSampleRate()},
mSampleRateNames,
&mSampleRateLabels,
// If the value in Prefs isn't in the list, then we want
// the last item, 'Other...' to be shown.
mSampleRateNames.size() - 1
);
// Now do the edit box...
mOtherSampleRate = S.TieNumericTextBox( {},
mOtherSampleRateValue,
15);
}
S.EndHorizontalLay();
S.TieChoice(XXO("Default Sample &Format:"),
formatSetting);
}
S.EndMultiColumn();
}
S.EndStatic();
S.StartStatic(XO("Real-time Conversion"));
{
S.StartMultiColumn(2, wxEXPAND);
{
S.TieChoice(XXO("Sample Rate Con&verter:"),
Resample::FastMethodSetting);
/* i18n-hint: technical term for randomization to reduce undesirable resampling artifacts */
S.TieChoice(XXO("&Dither:"),
Dither::FastSetting);
}
S.EndMultiColumn();
}
S.EndStatic();
S.StartStatic(XO("High-quality Conversion"));
{
S.StartMultiColumn(2);
{
S.TieChoice(XXO("Sample Rate Conver&ter:"),
Resample::BestMethodSetting);
/* i18n-hint: technical term for randomization to reduce undesirable resampling artifacts */
S.TieChoice(XXO("Dit&her:"),
Dither::BestSetting);
}
S.EndMultiColumn();
}
S.EndStatic();
S.EndScroller();
}
/// Enables or disables the Edit box depending on
/// whether we selected 'Other...' or not.
void QualityPrefs::OnSampleRateChoice(wxCommandEvent & WXUNUSED(e))
{
int sel = mSampleRates->GetSelection();
mOtherSampleRate->Enable(sel == (int)mSampleRates->GetCount() - 1);
}
bool QualityPrefs::Commit()
{
ShuttleGui S(this, eIsSavingToPrefs);
PopulateOrExchange(S);
// The complex compound control may have value 'other' in which case the
// value in prefs comes from the second field.
if (mOtherSampleRate->IsEnabled()) {
gPrefs->Write(wxT("/SamplingRate/DefaultProjectSampleRate"), mOtherSampleRateValue);
gPrefs->Flush();
}
// Tell CopySamples() to use these ditherers now
InitDitherers();
return true;
}
namespace{
PrefsPanel::Registration sAttachment{ "Quality",
[](wxWindow *parent, wxWindowID winid, AudacityProject *)
{
wxASSERT(parent); // to justify safenew
return safenew QualityPrefs(parent, winid);
}
};
}
sampleFormat QualityPrefs::SampleFormatChoice()
{
return formatSetting.ReadEnum();
}