Audacity 3.2.0
Namespaces | Typedefs | Enumerations | Functions | Variables
Export.cpp File Reference
#include "Export.h"
#include <wx/bmpbuttn.h>
#include <wx/dcclient.h>
#include <wx/file.h>
#include <wx/filectrl.h>
#include <wx/filename.h>
#include <wx/simplebook.h>
#include <wx/sizer.h>
#include <wx/slider.h>
#include <wx/statbox.h>
#include <wx/stattext.h>
#include <wx/textctrl.h>
#include <wx/dcmemory.h>
#include <wx/window.h>
#include "sndfile.h"
#include "FileDialog/FileDialog.h"
#include "AllThemeResources.h"
#include "BasicUI.h"
#include "Mix.h"
#include "MixAndRender.h"
#include "Prefs.h"
#include "../prefs/ImportExportPrefs.h"
#include "Project.h"
#include "ProjectHistory.h"
#include "../ProjectSettings.h"
#include "../ProjectWindow.h"
#include "../ProjectWindows.h"
#include "ShuttleGui.h"
#include "../TagsEditor.h"
#include "Theme.h"
#include "WaveTrack.h"
#include "AudacityMessageBox.h"
#include "../widgets/Warning.h"
#include "HelpSystem.h"
#include "AColor.h"
#include "FileNames.h"
#include "ProgressDialog.h"
#include "wxFileNameWrapper.h"
Include dependency graph for Export.cpp:

Go to the source code of this file.

Namespaces

namespace  anonymous_namespace{Export.cpp}
 

Typedefs

using anonymous_namespace{Export.cpp}::ExportPluginFactories = std::vector< Exporter::ExportPluginFactory >
 

Enumerations

enum  { ID_MIXERPANEL = 10001 , ID_SLIDER_CHANNEL }
 

Functions

 wxDEFINE_EVENT (AUDACITY_FILE_SUFFIX_EVENT, wxCommandEvent)
 
ExportPluginFactories & anonymous_namespace{Export.cpp}::sFactories ()
 
TranslatableString AudacityExportCaptionStr ()
 
TranslatableString AudacityExportMessageStr ()
 
void ShowExportErrorDialog (wxString ErrorCode, TranslatableString message, const TranslatableString &caption, bool allowReporting)
 
void ShowDiskFullExportErrorDialog (const wxFileNameWrapper &fileName)
 

Variables

const auto anonymous_namespace{Export.cpp}::PathStart = L"Exporters"
 

Enumeration Type Documentation

◆ anonymous enum

anonymous enum
Enumerator
ID_MIXERPANEL 
ID_SLIDER_CHANNEL 

Definition at line 1344 of file Export.cpp.

1345{
1346 ID_MIXERPANEL = 10001,
1348};
@ ID_SLIDER_CHANNEL
Definition: Export.cpp:1347
@ ID_MIXERPANEL
Definition: Export.cpp:1346

Function Documentation

◆ AudacityExportCaptionStr()

TranslatableString AudacityExportCaptionStr ( )

Definition at line 1486 of file Export.cpp.

1487{
1488 return XO("Warning");
1489}
XO("Cut/Copy/Paste")

References XO().

Referenced by Exporter::ExamineTracks().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ AudacityExportMessageStr()

TranslatableString AudacityExportMessageStr ( )

Definition at line 1490 of file Export.cpp.

1491{
1492 return XO("Unable to export.\nError %s");
1493}

References XO().

Here is the call graph for this function:

◆ ShowDiskFullExportErrorDialog()

void ShowDiskFullExportErrorDialog ( const wxFileNameWrapper fileName)

Definition at line 1516 of file Export.cpp.

1517{
1519 XO("Warning"),
1521 "Error:_Disk_full_or_not_writable"
1522 );
1523}
static TranslatableString WriteFailureMessage(const wxFileName &fileName)
void ShowErrorDialog(const WindowPlacement &placement, const TranslatableString &dlogTitle, const TranslatableString &message, const ManualPageID &helpPage, const ErrorDialogOptions &options={})
Show an error dialog with a link to the manual for further help.
Definition: BasicUI.h:259

References BasicUI::ShowErrorDialog(), FileException::WriteFailureMessage(), and XO().

Referenced by ExportFLAC::Export(), ExportMP3::Export(), and ExportOGG::Export().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ ShowExportErrorDialog()

void ShowExportErrorDialog ( wxString  ErrorCode,
TranslatableString  message = AudacityExportMessageStr(),
const TranslatableString caption = AudacityExportCaptionStr(),
bool  allowReporting = true 
)

We have many Export errors that are essentially anonymous and are distinguished only by an error code number. Rather than repeat the code, we have it just once.

Definition at line 1503 of file Export.cpp.

1507{
1508 using namespace BasicUI;
1509 ShowErrorDialog( {},
1510 caption,
1511 message.Format( ErrorCode ),
1512 "Error:_Unable_to_export", // URL.
1513 ErrorDialogOptions { allowReporting ? ErrorDialogType::ModalErrorReport : ErrorDialogType::ModalError });
1514}
TranslatableString & Format(Args &&...args) &
Capture variadic format arguments (by copy) when there is no plural.
Options for variations of error dialogs; the default is for modal dialogs.
Definition: BasicUI.h:51

References TranslatableString::Format(), and BasicUI::ShowErrorDialog().

Referenced by ExportCL::CheckFileName(), ExportFFmpeg::EncodeAudioFrame(), Exporter::ExamineTracks(), ExportFFmpeg::Export(), ExportFLAC::Export(), ExportMP3::Export(), ExportOGG::Export(), ExportPCM::Export(), ExportWavPack::Export(), and ExportFFmpeg::Finalize().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ wxDEFINE_EVENT()

wxDEFINE_EVENT ( AUDACITY_FILE_SUFFIX_EVENT  ,
wxCommandEvent   
)