1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-04 06:29:07 +02:00
audacity/src/prefs/QualityPrefs.h

58 lines
1.2 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
QualityPrefs.h
Joshua Haberman
James Crook
**********************************************************************/
#ifndef __AUDACITY_QUALITY_PREFS__
#define __AUDACITY_QUALITY_PREFS__
#include <vector>
#include <wx/defs.h>
#include "PrefsPanel.h"
class wxChoice;
class wxTextCtrl;
class ShuttleGui;
enum sampleFormat : unsigned;
enum DitherType : unsigned;
#define QUALITY_PREFS_PLUGIN_SYMBOL ComponentInterfaceSymbol{ XO("Quality") }
class QualityPrefs final : public PrefsPanel
{
public:
QualityPrefs(wxWindow * parent, wxWindowID winid);
virtual ~QualityPrefs();
ComponentInterfaceSymbol GetSymbol() override;
TranslatableString GetDescription() override;
bool Commit() override;
wxString HelpPageName() override;
void PopulateOrExchange(ShuttleGui & S) override;
static sampleFormat SampleFormatChoice();
private:
void Populate();
void GetNamesAndLabels();
void OnSampleRateChoice(wxCommandEvent & e);
TranslatableStrings mSampleRateNames;
std::vector<int> mSampleRateLabels;
wxChoice *mSampleRates;
wxTextCtrl *mOtherSampleRate;
int mOtherSampleRateValue;
DECLARE_EVENT_TABLE()
};
#endif