/********************************************************************** Audacity: A Digital Audio Editor FileFormatPrefs.h Joshua Haberman Dominic Mazzoni James Crook **********************************************************************/ #ifndef __AUDACITY_FILE_FORMAT_PREFS__ #define __AUDACITY_FILE_FORMAT_PREFS__ #include #include #include #include "PrefsPanel.h" class ShuttleGui; class LibraryPrefs final : public PrefsPanel { public: LibraryPrefs(wxWindow * parent); ~LibraryPrefs(); bool Apply() override; private: void Populate(); void PopulateOrExchange(ShuttleGui & S); void SetMP3VersionText(bool prompt = false); void SetFFmpegVersionText(); void OnMP3FindButton(wxCommandEvent & e); void OnMP3DownButton(wxCommandEvent & e); void OnFFmpegFindButton(wxCommandEvent & e); void OnFFmpegDownButton(wxCommandEvent & e); wxStaticText *mMP3Version; wxStaticText *mFFmpegVersion; DECLARE_EVENT_TABLE() }; class LibraryPrefsFactory final : public PrefsPanelFactory { public: PrefsPanel *Create(wxWindow *parent) override; }; #endif