1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-25 23:51:35 +01:00

Start of module prefs. (work in progress). Linux will need the makefile updating.

This commit is contained in:
james.k.crook@gmail.com
2012-07-13 21:51:45 +00:00
parent 5f81a48fe6
commit 0574c96a4c
4 changed files with 146 additions and 0 deletions

47
src/prefs/ModulePrefs.h Normal file
View File

@@ -0,0 +1,47 @@
/**********************************************************************
Audacity: A Digital Audio Editor
ModulePrefs.h
Brian Gunlogson
Joshua Haberman
James Crook
**********************************************************************/
#ifndef __AUDACITY_MODULE_PREFS__
#define __AUDACITY_MODULE_PREFS__
#include <wx/defs.h>
#include <wx/window.h>
#include "../ShuttleGui.h"
#include "PrefsPanel.h"
class ModulePrefs:public PrefsPanel
{
public:
ModulePrefs(wxWindow * parent);
~ModulePrefs();
virtual bool Apply();
private:
void Populate();
void PopulateOrExchange(ShuttleGui & S);
};
#endif
// Indentation settings for Vim and Emacs and unique identifier for Arch, a
// version control system. Please do not modify past this point.
//
// Local Variables:
// c-basic-offset: 3
// indent-tabs-mode: nil
// End:
//
// vim: et sts=3 sw=3
// arch-tag: 57018e2b-d264-4f93-bfa7-06752ebf631e