/********************************************************************** Audacity: A Digital Audio Editor BatchPrefs.h Dominic Mazzoni James Crook **********************************************************************/ #ifndef __AUDACITY_BATCH_PREFS__ #define __AUDACITY_BATCH_PREFS__ #include #include #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