1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
|
/**********************************************************************
Audacity: A Digital Audio Editor
Filter.h
Dominic Mazzoni
**********************************************************************/
#ifndef __AUDACITY_EFFECT_FILTER__
#define __AUDACITY_EFFECT_FILTER__
#include <wx/bitmap.h>
#include <wx/button.h>
#include <wx/panel.h>
#include <wx/sizer.h>
#include <wx/stattext.h>
class wxString;
#include "Effect.h"
class Envelope;
class WaveTrack;
class EffectFilter: public Effect {
public:
EffectFilter();
virtual wxString GetEffectName() {
return wxString("FFT Filter...");
}
virtual wxString GetEffectAction() {
return wxString("Performing FFT Filter");
}
virtual bool PromptUser();
virtual bool Process();
private:
bool ProcessOne(int count, WaveTrack * t,
sampleCount start, sampleCount len);
void Filter(sampleCount len,
sampleType *buffer);
Envelope *mEnvelope;
int windowSize;
float *filterFunc;
};
class FilterPanel: public wxPanel
{
public:
FilterPanel( wxWindow *parent, wxWindowID id,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize);
void OnMouseEvent(wxMouseEvent & event);
void OnPaint(wxPaintEvent & event);
Envelope *mEnvelope;
private:
wxBitmap *mBitmap;
wxRect mEnvRect;
int mWidth;
int mHeight;
DECLARE_EVENT_TABLE()
};
// WDR: class declarations
//----------------------------------------------------------------------------
// FilterDialog
//----------------------------------------------------------------------------
// Declare window functions
#define ID_TEXT 10000
#define ID_FILTERPANEL 10001
#define ID_CLEAR 10002
wxSizer *MakeFilterDialog( wxWindow *parent, bool call_fit = TRUE,
bool set_sizer = TRUE );
class FilterDialog: public wxDialog
{
public:
// constructors and destructors
FilterDialog( wxWindow *parent, wxWindowID id, const wxString &title,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxDEFAULT_DIALOG_STYLE );
// WDR: method declarations for FilterDialog
virtual bool Validate();
virtual bool TransferDataToWindow();
virtual bool TransferDataFromWindow();
void SetEnvelope(Envelope *env);
private:
// WDR: member variable declarations for FilterDialog
private:
// WDR: handler declarations for FilterDialog
void OnClear( wxCommandEvent &event );
void OnOk( wxCommandEvent &event );
void OnCancel( wxCommandEvent &event );
void OnSize( wxSizeEvent &event );
private:
DECLARE_EVENT_TABLE()
};
#endif
|