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 127
|
/**********************************************************************
Audacity: A Digital Audio Editor
Amplify.h
Dominic Mazzoni
This rewritten class supports a smart Amplify effect - it calculates
the maximum amount of gain that can be applied to all tracks without
causing clipping and selects this as the default parameter.
**********************************************************************/
#ifndef __AUDACITY_EFFECT_AMPLIFY__
#define __AUDACITY_EFFECT_AMPLIFY__
#include <wx/checkbox.h>
#include <wx/button.h>
#include <wx/dialog.h>
#include <wx/stattext.h>
#include <wx/slider.h>
#include <wx/textctrl.h>
#include <wx/sizer.h>
// Declare window functions
#define ID_TEXT 10000
#define ID_AMP_TEXT 10001
#define ID_PEAK_TEXT 10002
#define ID_AMP_SLIDER 10003
#define ID_CLIP_CHECKBOX 10004
class wxString;
#include "Effect.h"
class WaveTrack;
class EffectAmplify:public Effect {
public:
EffectAmplify();
virtual wxString GetEffectName() {
return wxString("Amplify...");
}
virtual wxString GetEffectAction() {
return wxString("Amplifying");
}
virtual bool Init();
virtual bool PromptUser();
virtual bool Process();
private:
bool ProcessOne(int count, WaveTrack * t,
sampleCount start, sampleCount len);
private:
float ratio;
float peak;
};
//----------------------------------------------------------------------------
// AmplifyDialog
//----------------------------------------------------------------------------
wxSizer *MakeAmplifyDialog(wxWindow * parent, bool call_fit,
bool set_sizer);
class AmplifyDialog:public wxDialog {
public:
// constructors and destructors
AmplifyDialog(wxWindow * parent, wxWindowID id,
const wxString & title, const wxPoint & pos =
wxDefaultPosition, const wxSize & size =
wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE);
// WDR: method declarations for BassBoostDialog
wxSlider *GetAmpSlider() {
return (wxSlider *) FindWindow(ID_AMP_SLIDER);
}
wxTextCtrl *GetAmpText() {
return (wxTextCtrl *) FindWindow(ID_AMP_TEXT);
}
wxTextCtrl *GetPeakText() {
return (wxTextCtrl *) FindWindow(ID_PEAK_TEXT);
}
wxCheckBox *GetClipCheckBox() {
return (wxCheckBox *) FindWindow(ID_CLIP_CHECKBOX);
}
wxButton *GetOK() {
return (wxButton *) FindWindow(wxID_OK);
}
virtual bool Validate();
virtual bool TransferDataToWindow();
virtual bool TransferDataFromWindow();
private:
// WDR: member variable declarations for BassBoostDialog
private:
// WDR: handler declarations for BassBoostDialog
void OnAmpText(wxCommandEvent & event);
void OnPeakText(wxCommandEvent & event);
void OnAmpSlider(wxCommandEvent & event);
void OnClipCheckBox(wxCommandEvent & event);
void OnOk(wxCommandEvent & event);
void OnCancel(wxCommandEvent & event);
void CheckClip();
private:
bool mLoopDetect;
DECLARE_EVENT_TABLE()
public:
float ratio;
float peak;
};
#endif
|