1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-04-24 23:13:42 +02:00

Frequency Selection toolbar from Paul Licameli.

Linux/Mac will need new files adding to project, SpectralSelectionBar.cpp, NumericTextCtrl.cpp.
This commit is contained in:
james.k.crook@gmail.com
2014-11-08 15:18:43 +00:00
parent 327bd905de
commit 67d2b274e2
36 changed files with 3050 additions and 2192 deletions

View File

@@ -14,7 +14,6 @@
#define __AUDACITY_EFFECT_TONEGEN__
#include "Generator.h"
#include "../widgets/TimeTextCtrl.h"
#include "../Experimental.h"
#include <wx/dialog.h>
@@ -22,6 +21,7 @@
class wxString;
class wxChoice;
class wxTextCtrl;
class NumericTextCtrl;
class ShuttleGui;
#define __UNINITIALIZED__ (-1)
@@ -126,7 +126,7 @@ class ToneGenDialog:public EffectDialog {
wxArrayString *interpolations;
private:
TimeTextCtrl *mToneDurationT;
NumericTextCtrl *mToneDurationT;
};
#endif