mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-04 22:49:07 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
37 lines
643 B
C++
37 lines
643 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ProjectsPrefs.h
|
|
|
|
Joshua Haberman
|
|
Dominic Mazzoni
|
|
James Crook
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_PROJECT_PREFS__
|
|
#define __AUDACITY_PROJECT_PREFS__
|
|
|
|
#include <wx/defs.h>
|
|
|
|
#include <wx/window.h>
|
|
|
|
#include "../ShuttleGui.h"
|
|
|
|
#include "PrefsPanel.h"
|
|
|
|
class ProjectsPrefs:public PrefsPanel
|
|
{
|
|
public:
|
|
ProjectsPrefs(wxWindow * parent);
|
|
~ProjectsPrefs();
|
|
virtual bool Apply();
|
|
|
|
private:
|
|
void Populate();
|
|
void PopulateOrExchange(ShuttleGui & S);
|
|
};
|
|
|
|
#endif
|