mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-04 14:39:08 +02:00
123 lines
3.5 KiB
C++
123 lines
3.5 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportExportPrefs.cpp
|
|
|
|
Joshua Haberman
|
|
Dominic Mazzoni
|
|
James Crook
|
|
|
|
*******************************************************************//**
|
|
|
|
\class ImportExportPrefs
|
|
\brief A PrefsPanel used to select import and export options.
|
|
|
|
*//*******************************************************************/
|
|
|
|
#include "../Audacity.h"
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include "../Prefs.h"
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "ImportExportPrefs.h"
|
|
|
|
ImportExportPrefs::ImportExportPrefs(wxWindow * parent)
|
|
: PrefsPanel(parent, _("Import / Export"))
|
|
{
|
|
Populate();
|
|
}
|
|
|
|
ImportExportPrefs::~ImportExportPrefs()
|
|
{
|
|
}
|
|
|
|
/// Creates the dialog and its contents.
|
|
void ImportExportPrefs::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 --------------
|
|
}
|
|
|
|
void ImportExportPrefs::PopulateOrExchange(ShuttleGui & S)
|
|
{
|
|
S.SetBorder(2);
|
|
|
|
S.StartStatic(_("When importing audio files"));
|
|
{
|
|
S.StartRadioButtonGroup(wxT("/FileFormats/CopyOrEditUncompressedData"), wxT("copy"));
|
|
{
|
|
S.TieRadioButton(_("&Make a copy of uncompressed audio files before editing (safer)"),
|
|
wxT("copy"));
|
|
S.TieRadioButton(_("&Read uncompressed audio files directly from the original (faster)"),
|
|
wxT("edit"));
|
|
}
|
|
S.EndRadioButtonGroup();
|
|
|
|
S.TieCheckBox(_("&Normalize all tracks in project"),
|
|
wxT("/AudioFiles/NormalizeOnLoad"),
|
|
false);
|
|
}
|
|
S.EndStatic();
|
|
|
|
S.StartStatic(_("When exporting tracks to an audio file"));
|
|
{
|
|
S.StartRadioButtonGroup(wxT("/FileFormats/ExportDownMix"), true);
|
|
{
|
|
S.TieRadioButton(_("&Always mix all tracks down to Stereo or Mono channel(s)"),
|
|
true);
|
|
S.TieRadioButton(_("&Use custom mix (for example to export a 5.1 multichannel file)"),
|
|
false);
|
|
}
|
|
S.EndRadioButtonGroup();
|
|
|
|
S.TieCheckBox(_("S&how Metadata Tags editor prior to export step"),
|
|
wxT("/AudioFiles/ShowId3Dialog"),
|
|
true);
|
|
// This documentation is unlikely to help somebody who cannot figure it out by discovering the Options button in the dialog.
|
|
// It's only clutter in this Prefs tab, so removed.
|
|
// S.AddFixedText(_("Note: Export quality options can be chosen by clicking the Options\nbutton in the Export dialog."));
|
|
}
|
|
S.EndStatic();
|
|
#ifdef USE_MIDI
|
|
S.StartStatic(_("When exporting track to an Allegro (.gro) file"));
|
|
{
|
|
S.StartRadioButtonGroup(wxT("/FileFormats/AllegroStyle"), true);
|
|
{
|
|
S.TieRadioButton(_("Represent times and durations in &seconds"),
|
|
true);
|
|
S.TieRadioButton(_("Represent times and durations in &beats"),
|
|
false);
|
|
}
|
|
S.EndRadioButtonGroup();
|
|
}
|
|
S.EndStatic();
|
|
#endif
|
|
}
|
|
|
|
bool ImportExportPrefs::Apply()
|
|
{
|
|
ShuttleGui S(this, eIsSavingToPrefs);
|
|
PopulateOrExchange(S);
|
|
|
|
return true;
|
|
}
|
|
|
|
wxString ImportExportPrefs::HelpPageName()
|
|
{
|
|
return "Import_-_Export_Preferences";
|
|
}
|
|
|
|
PrefsPanel *ImportExportPrefsFactory::Create(wxWindow *parent)
|
|
{
|
|
wxASSERT(parent); // to justify safenew
|
|
return safenew ImportExportPrefs(parent);
|
|
}
|