mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-06 23:47:45 +02:00
43 lines
832 B
C++
43 lines
832 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportExportPrefs.h
|
|
|
|
Joshua Haberman
|
|
Dominic Mazzoni
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_EXPORT_PREFS__
|
|
#define __AUDACITY_IMPORT_EXPORT_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class ShuttleGui;
|
|
|
|
class ImportExportPrefs final : public PrefsPanel
|
|
{
|
|
public:
|
|
ImportExportPrefs(wxWindow * parent);
|
|
~ImportExportPrefs();
|
|
bool Apply() override;
|
|
wxString HelpPageName() override;
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
class ImportExportPrefsFactory final : public PrefsPanelFactory
|
|
{
|
|
public:
|
|
PrefsPanel *Create(wxWindow *parent) override;
|
|
};
|
|
#endif
|