mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-08 16:11:14 +02:00
43 lines
875 B
C++
43 lines
875 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, wxWindowID winid);
|
|
~ImportExportPrefs();
|
|
bool Commit() override;
|
|
wxString HelpPageName() override;
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
class ImportExportPrefsFactory final : public PrefsPanelFactory
|
|
{
|
|
public:
|
|
PrefsPanel *operator () (wxWindow *parent, wxWindowID winid) override;
|
|
};
|
|
#endif
|