mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-22 22:21:24 +01:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
47 lines
827 B
C++
47 lines
827 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
GUIPrefs.h
|
|
|
|
Brian Gunlogson
|
|
Joshua Haberman
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_GUI_PREFS__
|
|
#define __AUDACITY_GUI_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/arrstr.h>
|
|
#include <wx/window.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class GUIPrefs:public PrefsPanel
|
|
{
|
|
public:
|
|
GUIPrefs(wxWindow * parent);
|
|
~GUIPrefs();
|
|
virtual bool Apply();
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
|
|
wxArrayString mLangCodes;
|
|
wxArrayString mLangNames;
|
|
|
|
wxArrayString mHtmlHelpCodes;
|
|
wxArrayString mHtmlHelpChoices;
|
|
|
|
wxArrayString mRangeCodes;
|
|
wxArrayString mRangeChoices;
|
|
};
|
|
|
|
#endif
|