audacia/src/prefs/BatchPrefs.h
2016-09-18 10:36:53 -04:00

43 lines
750 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
BatchPrefs.h
Dominic Mazzoni
James Crook
**********************************************************************/
#ifndef __AUDACITY_BATCH_PREFS__
#define __AUDACITY_BATCH_PREFS__
#include <wx/defs.h>
#include <wx/window.h>
#include "PrefsPanel.h"
class ShuttleGui;
class BatchPrefs final : public PrefsPanel
{
public:
BatchPrefs(wxWindow * parent);
~BatchPrefs();
bool Apply() override;
private:
void Populate();
void PopulateOrExchange(ShuttleGui & S);
DECLARE_EVENT_TABLE()
};
class BatchPrefsFactory final : public PrefsPanelFactory
{
public:
PrefsPanel *Create(wxWindow *parent) override;
};
#endif