1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-02 00:49:33 +02:00
audacity/src/prefs/ApplicationPrefs.h
gera 87d94fe249 Add new review recommendations.
Clean up extra code, remake static title, move settings to UpdateManager class.
2021-06-18 09:46:40 -04:00

38 lines
788 B
C++

/**********************************************************************
Audacity: A Digital Audio Editor
ApplicationPrefs.h
Anton Gerasimov
**********************************************************************/
#ifndef __AUDACITY_APPLICATION_PREFS__
#define __AUDACITY_APPLICATION_PREFS__
#include <wx/defs.h>
#include "PrefsPanel.h"
#include "Prefs.h"
class ShuttleGui;
class ApplicationPrefs final : public PrefsPanel
{
public:
ApplicationPrefs(wxWindow * parent, wxWindowID winid);
~ApplicationPrefs();
ComponentInterfaceSymbol GetSymbol() override;
TranslatableString GetDescription() override;
bool Commit() override;
wxString HelpPageName() override;
private:
void Populate();
void PopulateOrExchange(ShuttleGui & S) override;
};
#endif