mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-25 08:38:39 +02:00
57 lines
1.1 KiB
C++
57 lines
1.1 KiB
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
QualityPrefs.h
|
|
|
|
Joshua Haberman
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_QUALITY_PREFS__
|
|
#define __AUDACITY_QUALITY_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/arrstr.h>
|
|
#include <wx/choice.h>
|
|
#include <wx/dynarray.h>
|
|
#include <wx/textctrl.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class QualityPrefs:public PrefsPanel
|
|
{
|
|
public:
|
|
QualityPrefs(wxWindow * parent);
|
|
virtual ~QualityPrefs();
|
|
|
|
virtual bool Apply();
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
void GetNamesAndLabels();
|
|
void OnSampleRateChoice(wxCommandEvent & e);
|
|
|
|
wxArrayString mDitherNames;
|
|
wxArrayInt mDitherLabels;
|
|
wxArrayString mSampleRateNames;
|
|
wxArrayInt mSampleRateLabels;
|
|
wxArrayString mSampleFormatNames;
|
|
wxArrayInt mSampleFormatLabels;
|
|
wxArrayString mConverterNames;
|
|
wxArrayInt mConverterLabels;
|
|
|
|
wxChoice *mSampleRates;
|
|
wxTextCtrl *mOtherSampleRate;
|
|
int mOtherSampleRateValue;
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
};
|
|
|
|
#endif
|