1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-09 14:43:57 +01: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

@@ -9,8 +9,6 @@
#ifndef __AUDACITY_CONTRAST_DIALOG__
#define __AUDACITY_CONTRAST_DIALOG__
#include "../widgets/TimeTextCtrl.h"
#include <wx/dialog.h>
#include <wx/slider.h>
@@ -19,6 +17,7 @@ class wxSizer;
class wxString;
class Envelope;
class NumericTextCtrl;
class WaveTrack;
void InitContrastDialog(wxWindow * parent);
@@ -48,10 +47,10 @@ public:
wxButton * m_pButton_Reset;
wxButton * m_pButton_Close;
TimeTextCtrl *mForegroundStartT;
TimeTextCtrl *mForegroundEndT;
TimeTextCtrl *mBackgroundStartT;
TimeTextCtrl *mBackgroundEndT;
NumericTextCtrl *mForegroundStartT;
NumericTextCtrl *mForegroundEndT;
NumericTextCtrl *mBackgroundStartT;
NumericTextCtrl *mBackgroundEndT;
bool bFGset;
bool bBGset;