mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-04 06:29:07 +02:00
41 lines
864 B
C++
41 lines
864 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
WarningsPrefs.h
|
|
|
|
Brian Gunlogson
|
|
Joshua Haberman
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_WARNINGS_PREFS__
|
|
#define __AUDACITY_WARNINGS_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class ShuttleGui;
|
|
|
|
#define WARNINGS_PREFS_PLUGIN_SYMBOL ComponentInterfaceSymbol{ XO("Warnings") }
|
|
|
|
class WarningsPrefs final : public PrefsPanel
|
|
{
|
|
public:
|
|
WarningsPrefs(wxWindow * parent, wxWindowID winid);
|
|
~WarningsPrefs();
|
|
ComponentInterfaceSymbol GetSymbol() override;
|
|
TranslatableString GetDescription() override;
|
|
|
|
bool Commit() override;
|
|
wxString HelpPageName() override;
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S) override;
|
|
};
|
|
|
|
#endif
|