/********************************************************************** Audacity: A Digital Audio Editor EffectEqualization.cpp Mitch Golden Vaughan Johnson (Preview) Martyn Shaw (FIR filters, response curve, graphic EQ) *******************************************************************//** \file Equalization.cpp \brief Implements EffectEqualiztaion, EqualizationDialog, EqualizationPanel, EQCurve and EQPoint. *//****************************************************************//** \class EffectEqualization \brief An Effect. Performs filtering, using an FFT to do a FIR filter. It lets the user draw an arbitrary envelope (using the same envelope editing code that is used to edit the track's amplitude envelope). Also allows the curve to be specified with a series of 'graphic EQ' sliders. The filter is applied using overlap/add of Hanning windows. Clone of the FFT Filter effect, no longer part of Audacity. *//****************************************************************//** \class EqualizationDialog \brief Dialog used with EffectEqualization *//****************************************************************//** \class EqualizationPanel \brief EqualizationPanel is used with EqualizationDialog and controls a graph for EffectEqualization. We should look at amalgamating the various graphing code, such as provided by FreqWindow and FilterPanel. *//****************************************************************//** \class EQCurve \brief EQCurve is used with EffectEqualization. *//****************************************************************//** \class EQPoint \brief EQPoint is used with EQCurve and hence EffectEqualization. *//*******************************************************************/ #include "../Audacity.h" #include "Equalization.h" #include "../AColor.h" #include "../ShuttleGui.h" #include "../PlatformCompatibility.h" #include "../FileNames.h" #include "../Envelope.h" #include "../widgets/ErrorDialog.h" #include "../FFT.h" #include "../Prefs.h" #include "../Project.h" #include "../WaveTrack.h" #include "../widgets/Ruler.h" #include "../xml/XMLFileReader.h" #include "../Theme.h" #include "../AllThemeResources.h" #include "../WaveTrack.h" #include "float_cast.h" #include #include #include #include #include #include // not really needed here #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if wxUSE_TOOLTIPS #include #endif #include #include #include WX_DEFINE_OBJARRAY( EQPointArray ); WX_DEFINE_OBJARRAY( EQCurveArray ); const double EqualizationDialog::thirdOct[] = { 20., 25., 31., 40., 50., 63., 80., 100., 125., 160., 200., 250., 315., 400., 500., 630., 800., 1000., 1250., 1600., 2000., 2500., 3150., 4000., 5000., 6300., 8000., 10000., 12500., 16000., 20000., }; // LLL: This seem to have a strange interaction with wxWidgets 2.8.9. It's // possible that the wxSlider was fixed as it seems to work ok for me // under Ubuntu 8.10 with self build wxWidgets 2.8.9. // // Leaving here for now...just disabling #ifdef __WXGTK__disabled /* * wxSlider exhibits strange behaviour on wxGTK when wxSL_INVERSE and/or * negative scale values are used. This affects at least SUSE 9.3 with * self-compiled wxWidgets 2.6.2 and Kubuntu 6.06. This class is used * to transparently work around those problems. Use wxSliderBugfix wherever * you would have used a slider with wxSL_INVERSE and/or negative scale * values. * * The equalization class uses wxSliderBugfix everywhere even when not * strictly needed. This is important because we override some wxSlider * functions which are not virtual, and so we need to cast to wxSliderBugfix * instead of to wxSlider to allow the right function to be called statically. */ class wxSliderBugfix : public wxSlider { public: wxSliderBugfix(wxWindow* parent, wxWindowID id, int value, int minValue, int maxValue, const wxPoint& point = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSL_HORIZONTAL, const wxValidator& validator = wxDefaultValidator, const wxString& name = wxT("slider")) : wxSlider(parent, id, 0, 0, maxValue - minValue, point, size, style & ~wxSL_INVERSE, validator, name) { isInverse = (style & wxSL_INVERSE) != 0; originalMinValue = minValue; SetValue(value); } int GetMin() const { return originalMinValue; } int GetMax() const { return wxSlider::GetMax() + originalMinValue; } int GetValue() const { if (isInverse) return wxSlider::GetMax() - wxSlider::GetValue() + originalMinValue; else return wxSlider::GetValue() + originalMinValue; } void SetValue(int value) { if (isInverse) wxSlider::SetValue(wxSlider::GetMax() - value + originalMinValue); else wxSlider::SetValue(value - originalMinValue); } private: bool isInverse; int originalMinValue; }; #else /* * On platforms other than wxGTK, the workaround is not needed */ #define wxSliderBugfix wxSlider #endif // ifdef __WXGTK__ #define NUM_INTERP_CHOICES 3 static wxString interpChoiceStrings[NUM_INTERP_CHOICES]; void EffectEqualization::ReadPrefs() { gPrefs->Read(wxT("/Effects/Equalization/FilterLength"), &mM, 4001); if ((mM < 21) || (mM > 8191)) { // corrupted Prefs? mM = 4001; //default gPrefs->Write(wxT("/Effects/Equalization/FilterLength"), mM); } gPrefs->Read(wxT("/Effects/Equalization/CurveName"), &mCurveName, wxT("unnamed")); gPrefs->Read(wxT("/Effects/Equalization/Lin"), &mLin, false); gPrefs->Read(wxT("/Effects/Equalization/dBMin"), &mdBMin, -30.0); if ((mdBMin < -120) || (mdBMin > -10)) { // corrupted Prefs? mdBMin = -30; //default gPrefs->Write(wxT("/Effects/Equalization/FilterLength"), mdBMin); } gPrefs->Read(wxT("/Effects/Equalization/dBMax"), &mdBMax, 30.); if ((mdBMax < 0) || (mdBMax > 60)) { // corrupted Prefs? mdBMax = 30; //default gPrefs->Write(wxT("/Effects/Equalization/FilterLength"), mdBMax); } gPrefs->Read(wxT("/Effects/Equalization/DrawMode"), &mDrawMode, true); gPrefs->Read(wxT("/Effects/Equalization/Interp"), &mInterp, 0); gPrefs->Read(wxT("/Effects/Equalization/DrawGrid"), &mDrawGrid, true); } EffectEqualization::EffectEqualization() { hFFT = InitializeFFT(windowSize); mFFTBuffer = new float[windowSize]; mFilterFuncR = new float[windowSize]; mFilterFuncI = new float[windowSize]; ReadPrefs(); mPrompting = false; interpChoiceStrings[0] = _("B-spline"); interpChoiceStrings[1] = _("Cosine"); interpChoiceStrings[2] = _("Cubic"); } EffectEqualization::~EffectEqualization() { if(hFFT) EndFFT(hFFT); hFFT = NULL; if(mFFTBuffer) delete[] mFFTBuffer; mFFTBuffer = NULL; if(mFilterFuncR) delete[] mFilterFuncR; if(mFilterFuncI) delete[] mFilterFuncI; mFilterFuncR = NULL; mFilterFuncI = NULL; } bool EffectEqualization::Init() { return(true); } bool EffectEqualization::PromptUser() { // Detect whether we are editing a batch chain by checking the parent window mEditingBatchParams = (mParent != GetActiveProject()); if (!mEditingBatchParams) { ReadPrefs(); } TrackListOfKindIterator iter(Track::Wave, mTracks); WaveTrack *t = (WaveTrack *) iter.First(); float hiFreq; if (t) hiFreq = ((float)(t->GetRate())/2.); else hiFreq = ((float)(GetActiveProject()->GetRate())/2.); EqualizationDialog dlog(this, ((double)loFreqI), hiFreq, mFilterFuncR, mFilterFuncI, windowSize, mCurveName, mEditingBatchParams, mParent, -1, _("Equalization")); dlog.M = mM; dlog.curveName = mCurveName; dlog.linCheck = mLin; dlog.dBMin = mdBMin; dlog.dBMax = mdBMax; dlog.drawMode = mDrawMode; dlog.interp = mInterp; dlog.drawGrid = mDrawGrid; dlog.CentreOnParent(); mPrompting = true; // true when previewing, false in batch dlog.ShowModal(); mPrompting = false; if (!dlog.GetReturnCode()) return false; mM = dlog.M; mCurveName = dlog.curveName; mLin = dlog.linCheck; mdBMin = dlog.dBMin; mdBMax = dlog.dBMax; mDrawMode = dlog.drawMode; mInterp = dlog.interp; mDrawGrid = dlog.drawGrid; if (!mEditingBatchParams) { gPrefs->Write(wxT("/Effects/Equalization/FilterLength"),mM); gPrefs->Write(wxT("/Effects/Equalization/CurveName"),mCurveName); gPrefs->Write(wxT("/Effects/Equalization/Lin"),mLin); gPrefs->Write(wxT("/Effects/Equalization/dBMin"),mdBMin); gPrefs->Write(wxT("/Effects/Equalization/dBMax"),mdBMax); gPrefs->Write(wxT("/Effects/Equalization/DrawMode"),mDrawMode); gPrefs->Write(wxT("/Effects/Equalization/Interp"), mInterp); gPrefs->Write(wxT("/Effects/Equalization/DrawGrid"), mDrawGrid); } return true; } bool EffectEqualization::DontPromptUser() { TrackListOfKindIterator iter(Track::Wave, mTracks); WaveTrack *t = (WaveTrack *) iter.First(); float hiFreq; if (t) hiFreq = ((float)(t->GetRate())/2.); else hiFreq = ((float)(GetActiveProject()->GetRate())/2.); EqualizationDialog dlog(this, ((double)loFreqI), hiFreq, mFilterFuncR, mFilterFuncI, windowSize, mCurveName, false, NULL, -1, _("Equalization")); dlog.M = mM; dlog.curveName = mCurveName; dlog.linCheck = false; dlog.interp = mInterp; // IS required here - no call to ShowModal! dlog.TransferDataToWindow(); dlog.CalcFilter(); // is needed here - the one done due to TransferDataToWindow->OnLinFreq isn't reliable return true; } bool EffectEqualization::TransferParameters( Shuttle & shuttle ) { shuttle.TransferInt(wxT("FilterLength"),mM,4001); shuttle.TransferString(wxT("CurveName"),mCurveName,wxT("eric")); shuttle.TransferBool(wxT("InterpolateLin"),mLin,false); shuttle.TransferEnum(wxT("interpolationMethod"),mInterp, NUM_INTERP_CHOICES,interpChoiceStrings); if(!mPrompting) DontPromptUser(); // not previewing, ie batch mode or initial setup return true; } bool EffectEqualization::Process() { this->CopyInputTracks(); // Set up mOutputTracks. bool bGoodResult = true; SelectedTrackListOfKindIterator iter(Track::Wave, mOutputTracks); WaveTrack *track = (WaveTrack *) iter.First(); int count = 0; while (track) { double trackStart = track->GetStartTime(); double trackEnd = track->GetEndTime(); double t0 = mT0 < trackStart? trackStart: mT0; double t1 = mT1 > trackEnd? trackEnd: mT1; if (t1 > t0) { sampleCount start = track->TimeToLongSamples(t0); sampleCount end = track->TimeToLongSamples(t1); sampleCount len = (sampleCount)(end - start); if (!ProcessOne(count, track, start, len)) { bGoodResult = false; break; } } track = (WaveTrack *) iter.Next(); count++; } this->ReplaceProcessedTracks(bGoodResult); return bGoodResult; } bool EffectEqualization::ProcessOne(int count, WaveTrack * t, sampleCount start, sampleCount len) { // create a new WaveTrack to hold all of the output, including 'tails' each end AudacityProject *p = GetActiveProject(); WaveTrack *output = p->GetTrackFactory()->NewWaveTrack(floatSample, t->GetRate()); int L = windowSize - (mM - 1); //Process L samples at a go sampleCount s = start; sampleCount idealBlockLen = t->GetMaxBlockSize() * 4; if (idealBlockLen % L != 0) idealBlockLen += (L - (idealBlockLen % L)); float *buffer = new float[idealBlockLen]; float *window1 = new float[windowSize]; float *window2 = new float[windowSize]; float *thisWindow = window1; float *lastWindow = window2; sampleCount originalLen = len; int i,j; for(i=0; i len) block = len; t->Get((samplePtr)buffer, floatSample, s, block); for(i=0; i block) //if last lump would exceed block wcopy = block - i; //shorten it for(j=0; jAppend((samplePtr)buffer, floatSample, block); len -= block; s += block; if (TrackProgress(count, (s-start)/(double)originalLen)) { bLoopSuccess = false; break; } } if(bLoopSuccess) { // mM-1 samples of 'tail' left in lastWindow, get them now if(wcopy < (mM-1)) { // Still have some overlap left to process // (note that lastWindow and thisWindow have been exchanged at this point // so that 'thisWindow' is really the window prior to 'lastWindow') for(j=0; jAppend((samplePtr)buffer, floatSample, mM-1); output->Flush(); // now move the appropriate bit of the output back to the track // (this could be enhanced in the future to use the tails) double offsetT0 = t->LongSamplesToTime((sampleCount)offset); double lenT = t->LongSamplesToTime(originalLen); // 'start' is the sample offset in 't', the passed in track // 'startT' is the equivalent time value // 'output' starts at zero double startT = t->LongSamplesToTime(start); //output has one waveclip for the total length, even though //t might have whitespace seperating multiple clips //we want to maintain the original clip structure, so //only paste the intersections of the new clip. //Find the bits of clips that need replacing std::vector > clipStartEndTimes; std::vector > clipRealStartEndTimes; //the above may be truncated due to a clip being partially selected for (WaveClipList::compatibility_iterator it=t->GetClipIterator(); it; it=it->GetNext()) { WaveClip *clip; double clipStartT; double clipEndT; clip = it->GetData(); clipStartT = clip->GetStartTime(); clipEndT = clip->GetEndTime(); if( clipEndT <= startT ) continue; // clip is not within selection if( clipStartT >= startT + lenT ) continue; // clip is not within selection //save the actual clip start/end so that we can rejoin them after we paste. clipRealStartEndTimes.push_back(std::pair(clipStartT,clipEndT)); if( clipStartT < startT ) // does selection cover the whole clip? clipStartT = startT; // don't copy all the new clip if( clipEndT > startT + lenT ) // does selection cover the whole clip? clipEndT = startT + lenT; // don't copy all the new clip //save them clipStartEndTimes.push_back(std::pair(clipStartT,clipEndT)); } //now go thru and replace the old clips with new for(unsigned int i=0;iClear(clipStartEndTimes[i].first,clipStartEndTimes[i].second); output->Copy(clipStartEndTimes[i].first-startT+offsetT0,clipStartEndTimes[i].second-startT+offsetT0, &toClipOutput); if(toClipOutput) { //put the processed audio in bool bResult = t->Paste(clipStartEndTimes[i].first, toClipOutput); wxASSERT(bResult); // TO DO: Actually handle this. //if the clip was only partially selected, the Paste will have created a split line. Join is needed to take care of this //This is not true when the selection is fully contained within one clip (second half of conditional) if( (clipRealStartEndTimes[i].first != clipStartEndTimes[i].first || clipRealStartEndTimes[i].second != clipStartEndTimes[i].second) && !(clipRealStartEndTimes[i].first <= startT && clipRealStartEndTimes[i].second >= startT+lenT) ) t->Join(clipRealStartEndTimes[i].first,clipRealStartEndTimes[i].second); delete toClipOutput; } } } delete[] buffer; delete[] window1; delete[] window2; delete output; return bLoopSuccess; } void EffectEqualization::Filter(sampleCount len, float *buffer) { int i; float re,im; // Apply FFT RealFFTf(buffer, hFFT); //FFT(len, false, inr, NULL, outr, outi); // Apply filter // DC component is purely real mFFTBuffer[0] = buffer[0] * mFilterFuncR[0]; for(i=1; i<(len/2); i++) { re=buffer[hFFT->BitReversed[i] ]; im=buffer[hFFT->BitReversed[i]+1]; mFFTBuffer[2*i ] = re*mFilterFuncR[i] - im*mFilterFuncI[i]; mFFTBuffer[2*i+1] = re*mFilterFuncI[i] + im*mFilterFuncR[i]; } // Fs/2 component is purely real mFFTBuffer[1] = buffer[1] * mFilterFuncR[len/2]; // Inverse FFT and normalization InverseRealFFTf(mFFTBuffer, hFFT); ReorderToTime(hFFT, mFFTBuffer, buffer); } //---------------------------------------------------------------------------- // EqualizationPanel //---------------------------------------------------------------------------- BEGIN_EVENT_TABLE(EqualizationPanel, wxPanel) EVT_PAINT(EqualizationPanel::OnPaint) EVT_MOUSE_EVENTS(EqualizationPanel::OnMouseEvent) EVT_MOUSE_CAPTURE_LOST(EqualizationPanel::OnCaptureLost) EVT_SIZE(EqualizationPanel::OnSize) END_EVENT_TABLE() EqualizationPanel::EqualizationPanel( double loFreq, double hiFreq, Envelope *env, EqualizationDialog *parent, float *filterFuncR, float *filterFuncI, long windowSize, wxWindowID id, const wxPoint& pos, const wxSize& size): wxPanel(parent, id, pos, size) { mOutr = NULL; mOuti = NULL; mBitmap = NULL; mWidth = 0; mHeight = 0; mLoFreq = loFreq; mHiFreq = hiFreq; M = 21; // should be odd mWindowSize = windowSize; mFilterFuncR = filterFuncR; mFilterFuncI = filterFuncI; mParent = parent; mEnvelope = env; mEnvelope->Flatten(0.); mEnvelope->Mirror(false); mEnvelope->SetTrackLen(1.0); RecalcRequired = true; } EqualizationPanel::~EqualizationPanel() { if (mBitmap) delete mBitmap; if (mOuti) delete [] mOuti; if (mOutr) delete [] mOutr; } void EqualizationPanel::Recalc() { if (mOutr) delete [] mOutr; mOutr = new float[mWindowSize]; if (mOuti) delete [] mOuti; mOuti = new float[mWindowSize]; mParent->CalcFilter(); //to calculate the actual response #ifdef EXPERIMENTAL_USE_REALFFTF InverseRealFFT(mWindowSize, mFilterFuncR, mFilterFuncI, mOutr); #else FFT(mWindowSize,true,mFilterFuncR,mFilterFuncI,mOutr,mOuti); //work out FIR response - note mOuti will be all zeros #endif // EXPERIMENTAL_USE_REALFFTF } void EqualizationPanel::OnSize(wxSizeEvent & evt) { Refresh( false ); } void EqualizationPanel::OnPaint(wxPaintEvent & evt) { wxPaintDC dc(this); if(RecalcRequired) { Recalc(); RecalcRequired = false; } int width, height; GetSize(&width, &height); if (!mBitmap || mWidth!=width || mHeight!=height) { if (mBitmap) delete mBitmap; mWidth = width; mHeight = height; mBitmap = new wxBitmap(mWidth, mHeight); } wxBrush bkgndBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)); wxMemoryDC memDC; memDC.SelectObject(*mBitmap); wxRect bkgndRect; bkgndRect.x = 0; bkgndRect.y = 0; bkgndRect.width = mWidth; bkgndRect.height = mHeight; memDC.SetBrush(bkgndBrush); memDC.SetPen(*wxTRANSPARENT_PEN); memDC.DrawRectangle(bkgndRect); bkgndRect.y = mHeight; memDC.DrawRectangle(bkgndRect); wxRect border; border.x = 0; border.y = 0; border.width = mWidth; border.height = mHeight; memDC.SetBrush(*wxWHITE_BRUSH); memDC.SetPen(*wxBLACK_PEN); memDC.DrawRectangle(border); mEnvRect = border; mEnvRect.Deflate(PANELBORDER, PANELBORDER); // Pure blue x-axis line memDC.SetPen(wxPen(theTheme.Colour( clrGraphLines ), 1, wxSOLID)); int center = (int) (mEnvRect.height * dBMax/(dBMax-dBMin) + .5); AColor::Line(memDC, mEnvRect.GetLeft(), mEnvRect.y + center, mEnvRect.GetRight(), mEnvRect.y + center); // Draw the grid, if asked for. Do it now so it's underneath the main plots. if( mParent->drawGrid ) { mParent->freqRuler->ruler.DrawGrid(memDC, mEnvRect.height, true, true, PANELBORDER, PANELBORDER); mParent->dBRuler->ruler.DrawGrid(memDC, mEnvRect.width, true, true, PANELBORDER, PANELBORDER); } // Med-blue envelope line memDC.SetPen(wxPen(theTheme.Colour( clrGraphLines ), 3, wxSOLID)); // Draw envelope double *values = new double[mEnvRect.width]; mEnvelope->GetValues(values, mEnvRect.width, 0.0, 1.0/mEnvRect.width); int x, y, xlast = 0, ylast = 0; bool off = false, off1 = false; for(int i=0; i= mEnvRect.height) { y = mEnvRect.height - 1; off = true; } else { off = false; off1 = false; } if ( (i != 0) & (!off1) ) { AColor::Line(memDC, xlast, ylast, x, mEnvRect.y + y); } off1 = off; xlast = x; ylast = mEnvRect.y + y; } delete[] values; //Now draw the actual response that you will get. //mFilterFunc has a linear scale, window has a log one so we have to fiddle about memDC.SetPen(wxPen(theTheme.Colour( clrResponseLines ), 1, wxSOLID)); double scale = (double)mEnvRect.height/(dBMax-dBMin); //pixels per dB double yF; //gain at this freq double delta = mHiFreq/(((double)mWindowSize/2.)); //size of each freq bin bool lin = mParent->mFaderOrDraw[0]->GetValue() & mParent->mLinFreq->IsChecked(); // log or lin scale? double loLog = log10(mLoFreq); double step = lin ? mHiFreq : (log10(mHiFreq) - loLog); step /= ((double)mEnvRect.width-1.); double freq; //actual freq corresponding to x position int halfM = (M-1)/2; int n; //index to mFreqFunc for(int i=0; imEnvRect.height) yF = mEnvRect.height - 1; if(yF<0.) yF=0.; y = (int)(yF+.5); if (i != 0) { AColor::Line(memDC, xlast, ylast, x, mEnvRect.y + y); } xlast = x; ylast = mEnvRect.y + y; } memDC.SetPen(*wxBLACK_PEN); if( mParent->mFaderOrDraw[0]->GetValue() ) mEnvelope->DrawPoints(memDC, mEnvRect, 0.0, mEnvRect.width-1, false, dBMin, dBMax); dc.Blit(0, 0, mWidth, mHeight, &memDC, 0, 0, wxCOPY, FALSE); } void EqualizationPanel::OnMouseEvent(wxMouseEvent & event) { if (event.ButtonDown() && !HasCapture()) { CaptureMouse(); } if (mEnvelope->MouseEvent(event, mEnvRect, 0.0, mEnvRect.width, false, dBMin, dBMax, dBMin, dBMax)) { mParent->EnvelopeUpdated(); RecalcRequired = true; Refresh(false); } if (event.ButtonUp() && HasCapture()) { ReleaseMouse(); } } void EqualizationPanel::OnCaptureLost(wxMouseCaptureLostEvent & event) { if (HasCapture()) { ReleaseMouse(); } } // WDR: class implementations //---------------------------------------------------------------------------- // EqualizationDialog //---------------------------------------------------------------------------- // WDR: event table for EqualizationDialog BEGIN_EVENT_TABLE(EqualizationDialog,wxDialog) EVT_SIZE( EqualizationDialog::OnSize ) EVT_PAINT( EqualizationDialog::OnPaint ) EVT_ERASE_BACKGROUND( EqualizationDialog::OnErase ) EVT_SLIDER( ID_LENGTH, EqualizationDialog::OnSliderM ) EVT_SLIDER( ID_DBMAX, EqualizationDialog::OnSliderDBMAX ) EVT_SLIDER( ID_DBMIN, EqualizationDialog::OnSliderDBMIN ) EVT_COMMAND_RANGE( ID_SLIDER, ID_SLIDER + NUMBER_OF_BANDS - 1, wxEVT_COMMAND_SLIDER_UPDATED, EqualizationDialog::OnSlider) EVT_CHOICE( ID_INTERP, EqualizationDialog::OnInterp ) EVT_CHOICE( ID_CURVE, EqualizationDialog::OnCurve ) EVT_BUTTON( ID_MANAGE, EqualizationDialog::OnManage ) EVT_BUTTON( ID_CLEAR, EqualizationDialog::OnClear ) EVT_BUTTON( ID_INVERT, EqualizationDialog::OnInvert ) EVT_BUTTON( ID_EFFECT_PREVIEW, EqualizationDialog::OnPreview ) EVT_BUTTON( wxID_OK, EqualizationDialog::OnOk ) EVT_BUTTON( wxID_CANCEL, EqualizationDialog::OnCancel ) EVT_RADIOBUTTON(drawRadioID, EqualizationDialog::OnDrawRadio) EVT_RADIOBUTTON(sliderRadioID, EqualizationDialog::OnSliderRadio) EVT_CHECKBOX(ID_LIN_FREQ, EqualizationDialog::OnLinFreq) EVT_CHECKBOX(GridOnOffID, EqualizationDialog::OnGridOnOff) END_EVENT_TABLE() EqualizationDialog::EqualizationDialog(EffectEqualization * effect, double loFreq, double hiFreq, float *filterFuncR, float *filterFuncI, long windowSize, wxString curveName, bool disallowCustom, wxWindow *parent, wxWindowID id, const wxString &title, const wxPoint &position, const wxSize& size, long style): wxDialog( parent, id, title, position, size, style | wxRESIZE_BORDER | wxMAXIMIZE_BOX ), mDisallowCustom(disallowCustom), mCustomBackup(wxT("unnamed")) { m_pEffect = effect; M = 4001; linCheck = false; dBMin = -30.; dBMax = 30; #if wxUSE_TOOLTIPS wxToolTip::Enable(true); #endif mLogEnvelope = new Envelope(); mLogEnvelope->SetInterpolateDB(false); mLogEnvelope->Mirror(false); mLinEnvelope = new Envelope(); mLinEnvelope->SetInterpolateDB(false); mLinEnvelope->Mirror(false); mLoFreq = loFreq; mHiFreq = hiFreq; mFilterFuncR = filterFuncR; mFilterFuncI = filterFuncI; mWindowSize = windowSize; mCurve = NULL; mDirty = false; // Load the EQ curves LoadCurves(); if (mDisallowCustom) { mCustomBackup.Name = wxT("unnamed"); EQCurve &realCustom = mCurves[mCurves.GetCount()-1]; wxASSERT(realCustom.Name.IsSameAs(wxT("unnamed"))); mCustomBackup.points = realCustom.points; } // Create the dialog MakeEqualizationDialog(); // Note: initial curve is set in TransferDataToWindow bandsInUse = NUMBER_OF_BANDS; //double loLog = log10(mLoFreq); //double stepLog = (log10(mHiFreq) - loLog)/((double)NUM_PTS-1.); for(int i=0; iGetMessage().c_str()), _("Error Saving Equalization Curves"), wxICON_ERROR, this); delete pException; } } // // Create the Equalization dialog // void EqualizationDialog::MakeEqualizationDialog() { wxStaticText *txt; wxButton *btn; // Create the base sizer szrV = new wxBoxSizer( wxVERTICAL ); // ------------------------------------------------------------------- // ROW 1: Banner // ------------------------------------------------------------------- txt = new wxStaticText(this, wxID_ANY, /* i18n-hint: && in here is an escape character to get a single & * on screen, so keep it as is */ _("Equalization, by Martyn Shaw && Mitch Golden")); szrV->Add( txt, 0, wxALIGN_CENTRE|wxALL, 4 ); // ------------------------------------------------------------------- // ROW 2: EQ panel and sliders for vertical scale // ------------------------------------------------------------------- szr1 = new wxFlexGridSizer( 4, 0, 0 ); szr1->AddGrowableCol( 2, 1 ); szr1->AddGrowableRow( 0, 1 ); szr1->SetFlexibleDirection( wxBOTH ); szr2 = new wxBoxSizer( wxVERTICAL ); dBMaxSlider = new wxSliderBugfix(this, ID_DBMAX, 30, 0, 60, wxDefaultPosition, wxDefaultSize, wxSL_VERTICAL|wxSL_INVERSE); szr2->Add( dBMaxSlider, 1, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxALL, 4 ); dBMinSlider = new wxSliderBugfix(this, ID_DBMIN, -30, -120, -10, wxDefaultPosition, wxDefaultSize, wxSL_VERTICAL|wxSL_INVERSE); szr2->Add( dBMinSlider, 1, wxALIGN_LEFT|wxALIGN_CENTER_VERTICAL|wxALL, 4 ); szr1->Add( szr2, 0, wxEXPAND|wxALIGN_CENTRE|wxALL, 4 ); #if wxUSE_ACCESSIBILITY dBMaxSlider->SetName(_("Max dB")); dBMaxSlider->SetAccessible(new SliderAx(dBMaxSlider, wxString(wxT("%d ")) + _("dB"))); dBMinSlider->SetName(_("Min dB")); dBMinSlider->SetAccessible(new SliderAx(dBMinSlider, wxString(wxT("%d ")) + _("dB"))); #endif dBRuler = new RulerPanel(this, wxID_ANY); dBRuler->ruler.SetBounds(0, 0, 100, 100); // Ruler can't handle small sizes dBRuler->ruler.SetOrientation(wxVERTICAL); dBRuler->ruler.SetRange(60.0, -120.0); dBRuler->ruler.SetFormat(Ruler::LinearDBFormat); dBRuler->ruler.SetUnits(_("dB")); dBRuler->ruler.SetLabelEdges(true); dBRuler->ruler.mbTicksAtExtremes = true; int w, h; dBRuler->ruler.GetMaxSize(&w, NULL); dBRuler->SetSize(wxSize(w, 150)); // height needed for wxGTK szr4 = new wxBoxSizer( wxVERTICAL ); szr4->AddSpacer(PANELBORDER); // vertical space for panel border szr4->Add( dBRuler, 1, wxEXPAND|wxALIGN_LEFT|wxALL ); szr4->AddSpacer(PANELBORDER); // vertical space for panel border szr1->Add( szr4, 0, wxEXPAND|wxALIGN_LEFT|wxALL ); mPanel = new EqualizationPanel( mLoFreq, mHiFreq, mLogEnvelope, this, mFilterFuncR, mFilterFuncI, mWindowSize, ID_FILTERPANEL); szr1->Add( mPanel, 1, wxEXPAND|wxALIGN_CENTRE); szr3 = new wxBoxSizer( wxVERTICAL ); szr1->Add( szr3, 0, wxALIGN_CENTRE|wxRIGHT, 0); //spacer for last EQ /// Next row of wxFlexGridSizer szr1->Add(1, 1); // horizontal spacer szr1->Add(1, 1); // horizontal spacer freqRuler = new RulerPanel(this, wxID_ANY); freqRuler->ruler.SetBounds(0, 0, 100, 100); // Ruler can't handle small sizes freqRuler->ruler.SetOrientation(wxHORIZONTAL); freqRuler->ruler.SetLog(true); freqRuler->ruler.SetRange(mLoFreq, mHiFreq); freqRuler->ruler.SetFormat(Ruler::IntFormat); freqRuler->ruler.SetUnits(_("Hz")); freqRuler->ruler.SetFlip(true); freqRuler->ruler.SetLabelEdges(true); freqRuler->ruler.mbTicksAtExtremes = true; freqRuler->ruler.GetMaxSize(NULL, &h); freqRuler->SetMinSize(wxSize(-1, h)); szr5 = new wxBoxSizer( wxHORIZONTAL ); szr5->AddSpacer(PANELBORDER); // horizontal space for panel border szr5->Add( freqRuler, 1, wxEXPAND|wxALIGN_LEFT); szr5->AddSpacer(PANELBORDER); // horizontal space for panel border szr1->Add( szr5, 0, wxEXPAND|wxALIGN_LEFT|wxALL ); szrV->Add( szr1, 1, wxEXPAND|wxALIGN_CENTER|wxALL, 0 ); // ------------------------------------------------------------------- // ROW 3: Graphic EQ - this gets laid out horizontally in onSize // ------------------------------------------------------------------- szrG = new wxBoxSizer( wxHORIZONTAL ); szrG->Add(0, 0, 0); // horizontal spacer, will be used to position LH EQ slider for (int i = 0; thirdOct[i] <= mHiFreq; ++i) { if( i == NUMBER_OF_BANDS ) break; m_sliders[i] = new wxSliderBugfix(this, ID_SLIDER + i, 0, -20, +20, wxDefaultPosition, wxSize(20, 124), wxSL_VERTICAL| wxSL_INVERSE); szrG->Add( m_sliders[i], 0, wxEXPAND|wxALIGN_CENTER ); szrG->Add(0, 0, 0); // horizontal spacer - used to put EQ sliders in correct position m_sliders[i]->Connect(wxEVT_ERASE_BACKGROUND,wxEraseEventHandler(EqualizationDialog::OnErase)); m_sliders_old[i] = 0; m_EQVals[i] = 0.; #if wxUSE_ACCESSIBILITY wxString name; if( thirdOct[i] < 1000.) name.Printf(wxString(wxT("%d ")) + _("Hz"), (int)thirdOct[i]); else name.Printf(wxString(wxT("%g ")) + _("kHz"), thirdOct[i]/1000.); m_sliders[i]->SetName(name); m_sliders[i]->SetAccessible(new SliderAx(m_sliders[i], wxString(wxT("%d ")) + _("dB"))); #endif } szrV->Add( szrG, 0, wxEXPAND|wxALIGN_LEFT|wxALL, 0 ); wxSizerItem *EQslider = szrG->GetItem((size_t)1); wxSize EQsliderSize = EQslider->GetSize(); //size of the sliders szr3->SetMinSize(EQsliderSize.x/2, -1); //extra gap for last slider // ------------------------------------------------------------------- // ROW 4a: Graphic or curve drawing? // ------------------------------------------------------------------- szrH = new wxBoxSizer( wxHORIZONTAL ); mFaderOrDraw[0] = new wxRadioButton( this, drawRadioID, _("&Draw Curves"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP ); mFaderOrDraw[0]->SetName(_("Draw Curves")); szrH->Add( mFaderOrDraw[0], 0, wxRIGHT, 10 ); mFaderOrDraw[1] = new wxRadioButton( this, sliderRadioID, _("&Graphic EQ"), wxDefaultPosition, wxDefaultSize, 0 ); mFaderOrDraw[0]->SetName(_("Graphic EQ")); szrH->Add( mFaderOrDraw[1], 0, wxRIGHT, 4 ); mInterpChoice = new wxChoice(this, ID_INTERP, wxDefaultPosition, wxDefaultSize, NUM_INTERP_CHOICES, interpChoiceStrings); mInterpChoice->SetSelection(0); szrI = new wxBoxSizer( wxHORIZONTAL ); szrI->Add( mInterpChoice, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL, 40 ); szrH->Add( szrI ); szrL = new wxBoxSizer( wxHORIZONTAL ); mLinFreq = new wxCheckBox(this, ID_LIN_FREQ, _("Li&near Frequency Scale")); mLinFreq->SetName(_("Linear Frequency Scale")); szrL->Add( mLinFreq, 0 ); szrH->Add(szrL); // either szrI or szrL are visible, not both. // ------------------------------------------------------------------- // ROW 4b: Filter length grouping // ------------------------------------------------------------------- // length of filter (M) label txt = new wxStaticText(this, wxID_ANY, _("Length of &Filter:")); szrH->Add( txt, 0 ); // length of filter (M) slider MSlider = new wxSliderBugfix(this, ID_LENGTH, (M -1)/2, 10, 4095, wxDefaultPosition, wxSize(200, -1), wxSL_HORIZONTAL); MSlider->SetName(_("Length of Filter")); szrH->Add( MSlider, 0, wxEXPAND ); wxString label; label.Printf( wxT("%d"), M ); mMText = new wxStaticText(this, wxID_ANY, label); szrH->Add( mMText, 0 ); // Add the length / graphic / draw grouping szrV->Add( szrH, 0, wxALIGN_CENTER | wxALL, 4 ); // ------------------------------------------------------------------- // ROW 5: Curve management grouping // ------------------------------------------------------------------- szrC = new wxBoxSizer( wxHORIZONTAL ); //szrC is for the curves bits txt = new wxStaticText( this, wxID_ANY, _("&Select Curve:") ); szrC->Add( txt, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxLEFT, 4 ); // Create the choice sizer (helps in recreating choice control) mCurveSizer = new wxBoxSizer( wxHORIZONTAL ); szrC->Add( mCurveSizer, 0, wxALIGN_LEFT | wxALIGN_CENTER_VERTICAL | wxLEFT, 4 ); // Create the choice control CreateChoice(); mManage = new wxButton( this, ID_MANAGE, _("S&ave/Manage Curves...") ); mManage->SetName(_("Save and Manage Curves")); szrC->Add( mManage, 0, wxALIGN_CENTRE|wxLEFT, 4 ); btn = new wxButton( this, ID_CLEAR, _("Fla&tten")); szrC->Add( btn, 0, wxALIGN_CENTRE | wxALL, 4 ); btn = new wxButton( this, ID_INVERT, _("&Invert")); szrC->Add( btn, 0, wxALIGN_CENTRE | wxALL, 4 ); mGridOnOff = new wxCheckBox(this, GridOnOffID, _("G&rids"), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT); mGridOnOff->SetName(_("Grids")); szrC->Add( mGridOnOff, 0, wxALIGN_CENTRE | wxALL, 4 ); szrV->Add( szrC, 0, wxALIGN_CENTER | wxALL, 0 ); // ------------------------------------------------------------------- // ROW 6: Preview, OK, & Cancel buttons // ------------------------------------------------------------------- szrV->Add(CreateStdButtonSizer(this, ePreviewButton|eCancelButton|eOkButton), 0, wxEXPAND); // ------------------------------------------------------------------- // Display now // ------------------------------------------------------------------- SetAutoLayout(false); szrV->Show(szrG,true); szrH->Show(szrI,true); szrH->Show(szrL,false); SetSizerAndFit( szrV ); SetSizeHints(GetSize()); szrL->SetMinSize( szrI->GetSize() ); szrV->Show(szrC,true); szrV->Show(szrG,false); szrH->Show(szrI,false); szrH->Show(szrL,true); return; } // // (Re)Create the choice control // void EqualizationDialog::CreateChoice() { wxChoice *choice; int i; int numCurves = mCurves.GetCount(); wxString *curveNames = new wxString[ numCurves ]; // Create an array of names for( i = 0; i < numCurves; i++ ) { curveNames[ i ] = mCurves[ i ].Name; } // Create the control choice = new wxChoice( this, ID_CURVE, wxDefaultPosition, wxDefaultSize, numCurves, curveNames ); // Have an existing control? if( mCurve ) { // Then detach it from its sizer and delete it mCurveSizer->Detach( mCurve ); delete mCurve; } // Save control ptr and add to its sizer mCurve = choice; mCurve->SetName(_("Select Curve")); mCurveSizer->Add( mCurve, 0 ); // Delete the array of names delete [] curveNames; } // // Validate data // bool EqualizationDialog::Validate() { // If editing a batch chain, we don't want to be using the unnamed curve so // we offer to save it. while (mDisallowCustom && curveName.IsSameAs(wxT("unnamed"))) { wxMessageBox(_("To use this EQ curve in a batch chain, please choose a new name for it.\nChoose the 'Save/Manage Curves...' button and rename the 'unnamed' curve, then use that one."), _("EQ Curve needs a different name"), wxOK | wxCENTRE, this); return false; } return true; } // // Populate the window with relevant variables // bool EqualizationDialog::TransferDataToWindow() { // Set log or lin freq scale (affects interpolation as well) mLinFreq->SetValue( linCheck ); wxCommandEvent dummyEvent; OnLinFreq(dummyEvent); // causes a CalcFilter mGridOnOff->SetValue( drawGrid ); // checks/unchecks the box on the interface MSlider->SetValue((M-1)/2); M = 0; // force refresh in TransferDataFromWindow() dBMinSlider->SetValue((int)dBMin); dBMin = 0; // force refresh in TransferDataFromWindow() dBMaxSlider->SetValue((int)dBMax); dBMax = 0; // force refresh in TransferDataFromWindow() // Set initial curve setCurve( curveName ); // Set graphic interpolation mode mInterpChoice->SetSelection(interp); // Set Graphic (Fader) or Draw mode if(drawMode) { mFaderOrDraw[0]->SetValue(true); } else { mFaderOrDraw[1]->SetValue(true); UpdateGraphic(); } return TransferDataFromWindow(); } // // Retrieve data from the window // bool EqualizationDialog::TransferDataFromWindow() { // Read the sliders and send to the panel wxString tip; bool rr = false; int dB = dBMinSlider->GetValue(); if (dB != dBMin) { rr = true; dBMin = dB; mPanel->dBMin = dBMin; #if wxUSE_TOOLTIPS tip.Printf(wxString(wxT("%d ")) + _("dB"),(int)dBMin); dBMinSlider->SetToolTip(tip); #endif } dB = dBMaxSlider->GetValue(); if (dB != dBMax) { rr = true; dBMax = dB; mPanel->dBMax = dBMax; #if wxUSE_TOOLTIPS tip.Printf(wxString(wxT("%d ")) + _("dB"),(int)dBMax); dBMaxSlider->SetToolTip(tip); #endif } // Refresh ruler if values have changed if (rr) { int w1, w2, h; dBRuler->ruler.GetMaxSize(&w1, &h); dBRuler->ruler.SetRange(dBMax, dBMin); dBRuler->ruler.GetMaxSize(&w2, &h); if( w1 != w2 ) // Reduces flicker { dBRuler->SetSize(wxSize(w2,h)); szr1->Layout(); LayoutEQSliders(); szrG->Layout(); freqRuler->Refresh(false); } dBRuler->Refresh(false); } int m = 2 * MSlider->GetValue() + 1; // odd numbers only if (m != M) { M = m; mPanel->M = M; mMText->SetLabel(wxString::Format(wxT("%d"), M)); #if wxUSE_TOOLTIPS tip.Printf(wxT("%d"), M); MSlider->SetToolTip(tip); #endif } mPanel->Refresh(false); return true; } bool EqualizationDialog::CalcFilter() { double loLog = log10(mLoFreq); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; double delta = mHiFreq / ((double)(mWindowSize/2.)); double val0; double val1; bool lin = mFaderOrDraw[0]->GetValue() & mLinFreq->IsChecked(); if( lin ) { val0 = mLinEnvelope->GetValue(0.0); //no scaling required - saved as dB val1 = mLinEnvelope->GetValue(1.0); } else { val0 = mLogEnvelope->GetValue(0.0); //no scaling required - saved as dB val1 = mLogEnvelope->GetValue(1.0); } mFilterFuncR[0] = val0; double freq = delta; int i; for(i=1; i<=mWindowSize/2; i++) { double when; if( lin ) when = freq/mHiFreq; else when = (log10(freq) - loLog)/denom; if(when < 0.) { mFilterFuncR[i] = val0; } else if(when > 1.0) { mFilterFuncR[i] = val1; } else { if( lin ) mFilterFuncR[i] = mLinEnvelope->GetValue(when); else mFilterFuncR[i] = mLogEnvelope->GetValue(when); } freq += delta; } mFilterFuncR[mWindowSize/2] = val1; mFilterFuncR[0] = (float)(pow(10., mFilterFuncR[0]/20.)); for(i=1;iIsChecked() ) // linear freq mode? { Envelope *env = mLinEnvelope; env->Flatten(0.); env->SetTrackLen(1.0); if( mCurves[currentCurve].points.GetCount() ) { double when, value; int i; int nCurvePoints = mCurves[currentCurve].points.GetCount(); for(i=0;iInsert(when, value); else break; } if ( i != nCurvePoints) // there are more points at higher freqs { when = 1.; // set the RH end to the next highest point value = mCurves[currentCurve].points[nCurvePoints-1].dB; env->Insert(when, value); changed = true; } } } else { Envelope *env = mLogEnvelope; env->Flatten(0.); env->SetTrackLen(1.0); if( mCurves[currentCurve].points.GetCount() ) { double when, value; double loLog = log10(20.); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; int i; int nCurvePoints = mCurves[currentCurve].points.GetCount(); for(i=0;i= 20) { when = (log10(mCurves[currentCurve].points[i].Freq) - loLog)/denom; value = mCurves[currentCurve].points[i].dB; if(when <= 1) env->Insert(when, value); else { // we have a point beyond fs/2. Insert it so that env code can use it. // but just this one, we have no use for the rest env->SetTrackLen(when); // can't Insert if the envelope isn't long enough env->Insert(when, value); break; } } else { //get the first point as close as we can to the last point requested changed = true; //double f = mCurves[currentCurve].points[i].Freq; //double v = mCurves[currentCurve].points[i].dB; mLogEnvelope->Insert(0., mCurves[currentCurve].points[i].dB); } } } } if(changed) // not all points were loaded so switch to unnamed EnvelopeUpdated(); mPanel->RecalcRequired = true; mPanel->Refresh( false ); } void EqualizationDialog::setCurve() { setCurve((int) mCurves.GetCount()-1); } void EqualizationDialog::setCurve(wxString curveName) { unsigned i = 0; for( i = 0; i < mCurves.GetCount(); i++ ) if( curveName == mCurves[ i ].Name ) break; if( i == mCurves.GetCount()) { wxMessageBox( wxT("Requested curve not found, using 'unnamed'"), wxT("Curve not found"), wxOK|wxICON_ERROR ); setCurve((int) mCurves.GetCount()-1); } else setCurve( i ); } // // Set new curve selection and manage state of delete button // void EqualizationDialog::Select( int curve ) { // Set current choice mCurve->SetSelection( curve ); curveName = mCurves[ curve ].Name; // If the "unnamed" curve became active if( (unsigned int)curve + 1U == mCurve->GetCount() ) { // Prevent focus from being lost if( mDelete->FindFocus() == mDelete ) { mCurve->SetFocus(); } } } // // Capture updated envelope // void EqualizationDialog::EnvelopeUpdated() { if( mFaderOrDraw[0]->GetValue() & mLinFreq->IsChecked() ) EnvelopeUpdated(mLinEnvelope, true); else EnvelopeUpdated(mLogEnvelope, false); } void EqualizationDialog::EnvelopeUpdated(Envelope *env, bool lin) { // Allocate and populate point arrays int numPoints = env->GetNumberOfPoints(); double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; env->GetPoints( when, value, numPoints ); // Clear the unnamed curve int curve = mCurves.GetCount()-1; mCurves[ curve ].points.Clear(); if(lin) { // Copy and convert points int point; for( point = 0; point < numPoints; point++ ) { double freq = when[ point ] * mHiFreq; double db = value[ point ]; // Add it to the curve mCurves[ curve ].points.Add( EQPoint( freq, db ) ); } } else { double loLog = log10( 20. ); double hiLog = log10( mHiFreq ); double denom = hiLog - loLog; // Copy and convert points int point; for( point = 0; point < numPoints; point++ ) { double freq = pow( 10., ( ( when[ point ] * denom ) + loLog )); double db = value[ point ]; // Add it to the curve mCurves[ curve ].points.Add( EQPoint( freq, db ) ); } } // Remember that we've updated the unnamed curve mDirty = true; // set 'unnamed' as the selected curve Select( (int) mCurves.GetCount()-1 ); // Clean up delete [] when; delete [] value; } // // Process XML tags and handle the ones we recognize // bool EqualizationDialog::HandleXMLTag(const wxChar *tag, const wxChar **attrs) { // May want to add a version strings... if( !wxStrcmp( tag, wxT("equalizationeffect") ) ) { return true; } // Located a new curve if( !wxStrcmp(tag, wxT("curve") ) ) { // Process the attributes while( *attrs ) { // Cache attr/value and bump to next const wxChar *attr = *attrs++; const wxChar *value = *attrs++; // Create a new curve and name it if( !wxStrcmp( attr, wxT("name") ) ) { const wxString strValue = value; if (!XMLValueChecker::IsGoodString(strValue)) return false; // check for a duplicate name and add (n) if there is one int n = 0; wxString strValueTemp = strValue; bool exists; do { exists = false; for(size_t i=0;i0) strValueTemp.Printf(wxT("%s (%d)"),strValue.c_str(),n); if(mCurves[i].Name == strValueTemp) { exists = true; break; } } n++; } while(exists == true); mCurves.Add( EQCurve( strValueTemp ) ); } } // Tell caller it was processed return true; } // Located a new point if( !wxStrcmp( tag, wxT("point") ) ) { // Set defaults in case attributes are missing double f = 0.0; double d = 0.0; // Process the attributes double dblValue; while( *attrs ) { // Cache attr/value and bump to next const wxChar *attr = *attrs++; const wxChar *value = *attrs++; const wxString strValue = value; // Get the frequency if( !wxStrcmp( attr, wxT("f") ) ) { if (!XMLValueChecker::IsGoodString(strValue) || !Internat::CompatibleToDouble(strValue, &dblValue)) return false; f = dblValue; } // Get the dB else if( !wxStrcmp( attr, wxT("d") ) ) { if (!XMLValueChecker::IsGoodString(strValue) || !Internat::CompatibleToDouble(strValue, &dblValue)) return false; d = dblValue; } } // Create a new point mCurves[ mCurves.GetCount() - 1 ].points.Add( EQPoint( f, d ) ); // Tell caller it was processed return true; } // Tell caller we didn't understand the tag return false; } // // Return handler for recognized tags // XMLTagHandler *EqualizationDialog::HandleXMLChild(const wxChar *tag) { if( !wxStrcmp( tag, wxT("equalizationeffect") ) ) { return this; } if( !wxStrcmp( tag, wxT("curve") ) ) { return this; } if( !wxStrcmp( tag, wxT("point") ) ) { return this; } return NULL; } // // Write all of the curves to the XML file // void EqualizationDialog::WriteXML(XMLWriter &xmlFile) { // Start our heirarchy xmlFile.StartTag( wxT( "equalizationeffect" ) ); // Write all curves int numCurves = mCurves.GetCount(); int curve; for( curve = 0; curve < numCurves; curve++ ) { // Start a new curve xmlFile.StartTag( wxT( "curve" ) ); xmlFile.WriteAttr( wxT( "name" ), mCurves[ curve ].Name ); // Write all points int numPoints = mCurves[ curve ].points.GetCount(); int point; for( point = 0; point < numPoints; point++ ) { // Write new point xmlFile.StartTag( wxT( "point" ) ); xmlFile.WriteAttr( wxT( "f" ), mCurves[ curve ].points[ point ].Freq, 12 ); xmlFile.WriteAttr( wxT( "d" ), mCurves[ curve ].points[ point ].dB, 12 ); xmlFile.EndTag( wxT( "point" ) ); } // Terminate curve xmlFile.EndTag( wxT( "curve" ) ); } // Terminate our heirarchy xmlFile.EndTag( wxT( "equalizationeffect" ) ); } // WDR: handler implementations for EqualizationDialog // // Graphic EQ slider was adjusted // void EqualizationDialog::OnSlider(wxCommandEvent &event) { wxSliderBugfix *s = (wxSliderBugfix *)event.GetEventObject(); for (int i = 0; thirdOct[i] <= mHiFreq; ++i) { if( i == NUMBER_OF_BANDS ) break; if( s == m_sliders[i]) { int posn = m_sliders[i]->GetValue(); if( wxGetKeyState(WXK_SHIFT) ) { if( posn > m_sliders_old[i] ) m_EQVals[i] += (float).1; else if( posn < m_sliders_old[i] ) m_EQVals[i] -= .1f; } else m_EQVals[i] += (posn - m_sliders_old[i]); if( m_EQVals[i] > 20. ) m_EQVals[i] = 20.; if( m_EQVals[i] < -20. ) m_EQVals[i] = -20.; int newPosn = (int)m_EQVals[i]; m_sliders[i]->SetValue( newPosn ); m_sliders_old[i] = newPosn; #if wxUSE_TOOLTIPS wxString tip; if( thirdOct[i] < 1000.) tip.Printf( wxT("%dHz\n%.1fdB"), (int)thirdOct[i], m_EQVals[i] ); else tip.Printf( wxT("%gkHz\n%.1fdB"), thirdOct[i]/1000., m_EQVals[i] ); s->SetToolTip(tip); #endif break; } } GraphicEQ(mLogEnvelope); EnvelopeUpdated(); } void EqualizationDialog::OnInterp(wxCommandEvent &event) { if(mFaderOrDraw[1]->GetValue()) { GraphicEQ(mLogEnvelope); EnvelopeUpdated(); } interp = mInterpChoice->GetSelection(); } void EqualizationDialog::LayoutEQSliders() { //layout the Graphic EQ sizer here wxSize szrGSize = szrG->GetSize(); //total size we have to play with wxSize szr2Size = szr2->GetSize(); //size of the dBMax/Min sliders wxSizerItem *ruler = szr1->GetItem((size_t)1); wxSize rulerSize = ruler->GetSize(); //and the ruler wxSizerItem *EQslider = szrG->GetItem((size_t)1); wxSize EQsliderSize = EQslider->GetSize(); //size of the sliders #if defined(__WXMAC__) // LL: 2010-01-04 - Don't know why, but on the Mac, the rightmost sliders // will wind up off the edge of the window since they get spaced out too // much. Somewhere, there's an extra 2 pixels in slider width that's not // being accounted for. (I guess) EQsliderSize.x += 2; #endif int start, w, range, so_far; start = szr2Size.x + rulerSize.x + 12; //inc ruler & mPanel border (4+4 + 4) szrG->SetItemMinSize((size_t)0, start - EQsliderSize.x/2, -1); //set 1st spacer so that 1st slider aligned with ruler range = szrGSize.x - EQsliderSize.x/2 - start; so_far = start + EQsliderSize.x/2; double loLog = log10(mLoFreq); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; for (int i = 1; thirdOct[i] <= mHiFreq; ++i) //go along the spacers { if( i == NUMBER_OF_BANDS ) break; float posn = range*(log10(thirdOct[i])-loLog)/denom; //centre of this slider, from start w = start + ((int)(posn+.5)) - EQsliderSize.x/2; //LH edge of slider, from 0 w = w - so_far; //gap needed to put it here szrG->SetItemMinSize((size_t)(i*2), w, -1); //set spacers so that sliders aligned with ruler so_far += (w + EQsliderSize.x); } RefreshRect(wxRect(szrG->GetPosition(),szrGSize)); } void EqualizationDialog::GraphicEQ(Envelope *env) { // Vigilant Sentry noted this "value" var had not previously been initialized, // so there must be some path to lines 2133 and 2179 that do not get a setting. // ANSWER-ME: Is this a good default value? double value = 0.0; double dist, span, s; env->Flatten(0.); env->SetTrackLen(1.0); int n = mInterpChoice->GetSelection(); switch( n ) { case 0: // B-spline { int minF = 0; for(int i=0; i whenSliders[bandsInUse-1] ) //after last fader { dist = whens[i] - whenSliders[bandsInUse-1]; span = whenSliders[bandsInUse-1] - whenSliders[bandsInUse-2]; s = dist/span; if( s > 1.5 ) value = 0.; else if( s > .5 ) value = m_EQVals[bandsInUse-1]*(s - 1.5)*(s - 1.5)/2.; else value = m_EQVals[bandsInUse-1]*(.75 - s*s) + m_EQVals[bandsInUse-2]*(s - .5)*(s - .5)/2.; } else //normal case { dist = whens[i] - whenSliders[minF]; span = whenSliders[minF+1] - whenSliders[minF]; s = dist/span; if(s < .5 ) { value = m_EQVals[minF]*(0.75 - s*s); if( minF+1 < bandsInUse ) value += m_EQVals[minF+1]*(s+.5)*(s+.5)/2.; if( minF-1 >= 0 ) value += m_EQVals[minF-1]*(s-.5)*(s-.5)/2.; } else { value = m_EQVals[minF]*(s-1.5)*(s-1.5)/2.; if( minF+1 < bandsInUse ) value += m_EQVals[minF+1]*(.75-(1.-s)*(1.-s)); if( minF+2 < bandsInUse ) value += m_EQVals[minF+2]*(s-.5)*(s-.5)/2.; } } } if(whens[i]<=0.) env->Move( 0., value ); env->Insert( whens[i], value ); } env->Move( 1., value ); break; } case 1: // Cosine squared { int minF = 0; for(int i=0; i whenSliders[bandsInUse-1] ) //after last fader { span = whenSliders[bandsInUse-1] - whenSliders[bandsInUse-2]; dist = whens[i] - whenSliders[bandsInUse-1]; if( dist < span ) value = m_EQVals[bandsInUse-1]*(1. + cos(M_PI*dist/span))/2.; else value = 0.; } else //normal case { span = whenSliders[minF+1] - whenSliders[minF]; dist = whenSliders[minF+1] - whens[i]; value = m_EQVals[minF]*(1. + cos(M_PI*(span-dist)/span))/2. + m_EQVals[minF+1]*(1. + cos(M_PI*dist/span))/2.; } } if(whens[i]<=0.) env->Move( 0., value ); env->Insert( whens[i], value ); } env->Move( 1., value ); break; } case 2: // Cubic Spline { double y2[NUMBER_OF_BANDS+1]; m_EQVals[bandsInUse] = m_EQVals[bandsInUse-1]; spline(whenSliders, m_EQVals, bandsInUse+1, y2); for(double xf=0; xf<1.; xf+=1./NUM_PTS) { env->Insert(xf, splint(whenSliders, m_EQVals, bandsInUse+1, y2, xf)); } break; } } mPanel->RecalcRequired = true; mPanel->Refresh( false ); } void EqualizationDialog::spline(double x[], double y[], int n, double y2[]) { int i; double p, sig, *u = new double[n]; y2[0] = 0.; // u[0] = 0.; //'natural' boundary conditions for(i=1;i=0;i--) y2[i] = y2[i]*y2[i+1] + u[i]; delete [] u; } double EqualizationDialog::splint(double x[], double y[], int n, double y2[], double xr) { double a, b, h; static double xlast = 0.; // remember last x value requested static int k = 0; // and which interval we were in if( xr < xlast ) k = 0; // gone back to start, (or somewhere to the left) xlast = xr; while( (x[k] <= xr) && (k < n-1) ) k++; k--; h = x[k+1] - x[k]; a = ( x[k+1] - xr )/h; b = (xr - x[k])/h; return( a*y[k]+b*y[k+1]+((a*a*a-a)*y2[k]+(b*b*b-b)*y2[k+1])*h*h/6.); } void EqualizationDialog::OnDrawRadio(wxCommandEvent &evt) { int numPoints = mLogEnvelope->GetNumberOfPoints(); double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; double deltadB = 0.1; double dx, dy, dx1, dy1, err; mLogEnvelope->GetPoints( when, value, numPoints ); // set 'unnamed' as the selected curve EnvelopeUpdated(); bool flag = true; while (flag) { flag = false; int numDeleted = 0; mLogEnvelope->GetPoints( when, value, numPoints ); for(int j=0;jDelete(j+1); numPoints--; numDeleted++; flag = true; } } } delete [] when; delete [] value; if(mLinFreq->IsChecked()) { EnvLogToLin(); mPanel->mEnvelope = mLinEnvelope; freqRuler->ruler.SetLog(false); freqRuler->ruler.SetRange(0, mHiFreq); } szrV->Show(szrG,false); szrH->Show(szrI,false); szrH->Show(szrL,true); Layout(); mPanel->RecalcRequired = true; // it may have changed slightly due to the deletion of points mPanel->Refresh( false ); drawMode = true; } void EqualizationDialog::OnSliderRadio(wxCommandEvent &evt) { UpdateGraphic(); } void EqualizationDialog::UpdateGraphic() { double loLog = log10(mLoFreq); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; if(mLinFreq->IsChecked()) //going from lin to log freq scale { // add some extra points to the linear envelope for the graphic to follow double step = pow(2., 1./12.); // twelve steps per octave double when,value; for(double freq=10.; freqGetValue(when); mLinEnvelope->Insert(when, value); } EnvLinToLog(); mPanel->mEnvelope = mLogEnvelope; freqRuler->ruler.SetLog(true); freqRuler->ruler.SetRange(mLoFreq, mHiFreq); } bandsInUse = 0; while(thirdOct[bandsInUse] <= mHiFreq) { bandsInUse++; if(bandsInUse == NUMBER_OF_BANDS) break; } for (int i = 0; iGetValue(whenSliders[i]); //set initial values of sliders if( m_EQVals[i] > 20.) m_EQVals[i] = 20.; if( m_EQVals[i] < -20.) m_EQVals[i] = -20.; } ErrMin(); //move sliders to minimise error for (int i = 0; iSetValue(lrint(m_EQVals[i])); //actually set slider positions m_sliders_old[i] = m_sliders[i]->GetValue(); #if wxUSE_TOOLTIPS wxString tip; if( thirdOct[i] < 1000.) tip.Printf( wxT("%dHz\n%.1fdB"), (int)thirdOct[i], m_EQVals[i] ); else tip.Printf( wxT("%gkHz\n%.1fdB"), thirdOct[i]/1000., m_EQVals[i] ); m_sliders[i]->SetToolTip(tip); #endif } szrV->Show(szrG,true); // eq sliders szrH->Show(szrI,true); // interpolation choice szrH->Show(szrL,false); // linear freq checkbox Layout(); // Make all sizers get resized first LayoutEQSliders(); // Then layout sliders Layout(); // And layout again to resize dialog wxSize wsz = GetSize(); wxSize ssz = szrV->GetSize(); if (ssz.x > wsz.x || ssz.y > wsz.y) { Fit(); } GraphicEQ(mLogEnvelope); drawMode = false; } void EqualizationDialog::OnLinFreq(wxCommandEvent &evt) { if(mLinFreq->IsChecked()) //going from log to lin freq scale { freqRuler->ruler.SetLog(false); freqRuler->ruler.SetRange(0, mHiFreq); EnvLogToLin(); mPanel->mEnvelope = mLinEnvelope; linCheck = true; } else //going from lin to log freq scale { freqRuler->ruler.SetLog(true); freqRuler->ruler.SetRange(mLoFreq, mHiFreq); EnvLinToLog(); mPanel->mEnvelope = mLogEnvelope; linCheck = false; } mPanel->Recalc(); freqRuler->Refresh(false); mPanel->Refresh(false); } void EqualizationDialog::EnvLogToLin(void) { int numPoints = mLogEnvelope->GetNumberOfPoints(); if( numPoints == 0 ) { return; } double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; mLinEnvelope->Flatten(0.); mLinEnvelope->SetTrackLen(1.0); mLogEnvelope->GetPoints( when, value, numPoints ); mLinEnvelope->Move(0., value[0]); double loLog = log10(20.); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; for( int i=0; i < numPoints; i++) mLinEnvelope->Insert(pow( 10., ((when[i] * denom) + loLog))/mHiFreq , value[i]); mLinEnvelope->Move(1., value[numPoints-1]); delete [] when; delete [] value; } void EqualizationDialog::EnvLinToLog(void) { int numPoints = mLinEnvelope->GetNumberOfPoints(); if( numPoints == 0 ) { return; } double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; mLogEnvelope->Flatten(0.); mLogEnvelope->SetTrackLen(1.0); mLinEnvelope->GetPoints( when, value, numPoints ); mLogEnvelope->Move(0., value[0]); double loLog = log10(20.); double hiLog = log10(mHiFreq); double denom = hiLog - loLog; bool changed = false; for( int i=0; i < numPoints; i++) { if( when[i]*mHiFreq >= 20 ) { mLogEnvelope->Insert((log10(when[i]*mHiFreq)-loLog)/denom , value[i]); } else { //get the first point as close as we can to the last point requested changed = true; double v = value[i]; mLogEnvelope->Insert(0., v); } } mLogEnvelope->Move(1., value[numPoints-1]); delete [] when; delete [] value; if(changed) EnvelopeUpdated(mLogEnvelope, false); } void EqualizationDialog::ErrMin(void) { double vals[NUM_PTS]; int i; double error = 0.0; double oldError = 0.0; double m_EQValsOld = 0.0; double correction = 1.6; bool flag; int j=0; Envelope *testEnvelope; testEnvelope = new Envelope(); testEnvelope->SetInterpolateDB(false); testEnvelope->Mirror(false); testEnvelope->Flatten(0.); testEnvelope->SetTrackLen(1.0); testEnvelope->CopyFrom(mLogEnvelope, 0.0, 1.0); for(i=0; i < NUM_PTS; i++) vals[i] = testEnvelope->GetValue(whens[i]); // Do error minimisation error = 0.; GraphicEQ(testEnvelope); for(i=0; i < NUM_PTS; i++) //calc initial error { double err = vals[i] - testEnvelope->GetValue(whens[i]); error += err*err; } oldError = error; while( j < bandsInUse*12 ) //loop over the sliders a number of times { i = j%bandsInUse; //use this slider if( (j > 0) & (i == 0) ) // if we've come back to the first slider again... { if( correction > 0 ) correction = -correction; //go down else correction = -correction/2.; //go up half as much } flag = true; // check if we've hit the slider limit do { oldError = error; m_EQValsOld = m_EQVals[i]; m_EQVals[i] += correction; //move fader value if( m_EQVals[i] > 20. ) { m_EQVals[i] = 20.; flag = false; } if( m_EQVals[i] < -20. ) { m_EQVals[i] = -20.; flag = false; } GraphicEQ(testEnvelope); //calculate envelope error = 0.; for(int k=0; k < NUM_PTS; k++) //calculate error { double err = vals[k] - testEnvelope->GetValue(whens[k]); error += err*err; } } while( (error < oldError) & flag ); if( error > oldError ) { m_EQVals[i] = m_EQValsOld; //last one didn't work error = oldError; } else oldError = error; if( error < .0025 * bandsInUse) break; // close enuff j++; //try next slider } if( error > .0025 * bandsInUse ) // not within 0.05dB on each slider, on average { Select( (int) mCurves.GetCount()-1 ); EnvelopeUpdated(testEnvelope, false); } delete testEnvelope; testEnvelope = NULL; } void EqualizationDialog::OnSliderM(wxCommandEvent &event) { TransferDataFromWindow(); mPanel->RecalcRequired = true; } void EqualizationDialog::OnSliderDBMIN(wxCommandEvent &event) { TransferDataFromWindow(); } void EqualizationDialog::OnSliderDBMAX(wxCommandEvent &event) { TransferDataFromWindow(); } // // New curve was selected // void EqualizationDialog::OnCurve(wxCommandEvent &event) { // Select new curve #if wxCHECK_VERSION(2, 6, 2) && !defined(__WXX11__) setCurve( mCurve->GetCurrentSelection() ); #else setCurve( mCurve->GetSelection() ); #endif if( !drawMode ) UpdateGraphic(); } // // User wants to modify the list in some way // void EqualizationDialog::OnManage(wxCommandEvent &event) { EditCurvesDialog d(this, mCurve->GetSelection()); d.ShowModal(); } void EqualizationDialog::OnClear(wxCommandEvent &event) { mLogEnvelope->Flatten(0.); mLogEnvelope->SetTrackLen(1.0); mLinEnvelope->Flatten(0.); mLinEnvelope->SetTrackLen(1.0); mPanel->RecalcRequired = true; mPanel->Refresh(false); if( !drawMode ) { for( int i=0; i< bandsInUse; i++) { m_sliders[i]->SetValue(0); m_sliders_old[i] = 0; m_EQVals[i] = 0.; } } EnvelopeUpdated(); } void EqualizationDialog::OnInvert(wxCommandEvent &event) // Inverts any curve { if(!drawMode) // Graphic (Slider) mode. Invert the sliders. { for (int i = 0; thirdOct[i] <= mHiFreq; ++i) { if( i == NUMBER_OF_BANDS ) break; m_EQVals[i] = -m_EQVals[i]; int newPosn = (int)m_EQVals[i]; m_sliders[i]->SetValue( newPosn ); m_sliders_old[i] = newPosn; #if wxUSE_TOOLTIPS wxString tip; if( thirdOct[i] < 1000.) tip.Printf( wxT("%dHz\n%.1fdB"), (int)thirdOct[i], m_EQVals[i] ); else tip.Printf( wxT("%gkHz\n%.1fdB"), thirdOct[i]/1000., m_EQVals[i] ); m_sliders[i]->SetToolTip(tip); #endif } GraphicEQ(mLogEnvelope); } else // Draw mode. Invert the points. { bool lin; // refers to the 'log' or 'lin' of the frequency scale, not the amplitude int numPoints; // number of points in the curve/envelope // determine if log or lin curve is the current one // and find out how many points are in the curve if(mLinFreq->IsChecked()) // lin freq scale and so envelope { lin = true; numPoints = mLinEnvelope->GetNumberOfPoints(); } else { lin = false; numPoints = mLogEnvelope->GetNumberOfPoints(); } if( numPoints == 0 ) return; double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; if(lin) mLinEnvelope->GetPoints( when, value, numPoints ); else mLogEnvelope->GetPoints( when, value, numPoints ); // invert the curve for( int i=0; i < numPoints; i++) { if(lin) mLinEnvelope->Move(when[i] , -value[i]); else mLogEnvelope->Move(when[i] , -value[i]); } // copy it back to the other one (just in case) if(lin) EnvLinToLog(); else EnvLogToLin(); } // and update the display etc mPanel->Recalc(); mPanel->Refresh(false); EnvelopeUpdated(); } void EqualizationDialog::OnErase(wxEraseEvent &event) { // Ignore it } void EqualizationDialog::OnPaint(wxPaintEvent &event) { wxPaintDC dc(this); #if defined(__WXGTK__) dc.SetBackground(wxBrush(wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE))); #endif dc.Clear(); } void EqualizationDialog::OnSize(wxSizeEvent &event) { Layout(); if (mFaderOrDraw[1]->GetValue()) { LayoutEQSliders(); } event.Skip(); } void EqualizationDialog::OnPreview(wxCommandEvent &event) { TransferDataFromWindow(); m_pEffect->Preview(); mPanel->RecalcRequired = true; //redraw the window. Refresh(); Update(); //v Restore previous values? } void EqualizationDialog::OnGridOnOff(wxCommandEvent & WXUNUSED(event)) { if( mGridOnOff->IsChecked() ) drawGrid = true; else drawGrid = false; mPanel->Refresh(false); } void EqualizationDialog::RevertCustom() { EQCurve &realCustom = mCurves[mCurves.GetCount()-1]; wxASSERT(realCustom.Name.IsSameAs(wxT("unnamed"))); realCustom.points = mCustomBackup.points; } void EqualizationDialog::Finish(bool ok) { if(mLogEnvelope) delete mLogEnvelope; mLogEnvelope = NULL; if(mLinEnvelope) delete mLinEnvelope; mLinEnvelope = NULL; mPanel = NULL; EndModal(ok); } void EqualizationDialog::OnCancel(wxCommandEvent &event) { if (mDisallowCustom) RevertCustom(); Finish(false); } void EqualizationDialog::OnOk(wxCommandEvent &event) { TransferDataFromWindow(); if( Validate() ) { // Update unnamed curve (so it's there for next time) //(done in a hurry, may not be the neatest -MJS) if( !mDisallowCustom) { if ( mDirty && drawMode ) { int i, j; int numPoints = mLogEnvelope->GetNumberOfPoints(); double *when = new double[ numPoints ]; double *value = new double[ numPoints ]; mLogEnvelope->GetPoints( when, value, numPoints ); for(i=0,j=0;jvalue[i+1]-.05) && (value[i+1]value[i+2]-.05) ) { // within < 0.05 dB? mLogEnvelope->Delete(j+1); numPoints--; j--; } } delete [] when; delete [] value; Select( (int) mCurves.GetCount()-1 ); } SaveCurves(); } Finish(true); } else { event.Skip(false); } } //---------------------------------------------------------------------------- // EditCurvesDialog //---------------------------------------------------------------------------- // Note that the 'modified' curve used to be called 'custom' but is now called 'unnamed' // Some things that deal with 'unnamed' curves still use, for example, 'mCustomBackup' as variable names. /// Constructor BEGIN_EVENT_TABLE(EditCurvesDialog, wxDialog) EVT_BUTTON(UpButtonID, EditCurvesDialog::OnUp) EVT_BUTTON(DownButtonID, EditCurvesDialog::OnDown) EVT_BUTTON(RenameButtonID, EditCurvesDialog::OnRename) EVT_BUTTON(DeleteButtonID, EditCurvesDialog::OnDelete) EVT_BUTTON(ImportButtonID, EditCurvesDialog::OnImport) EVT_BUTTON(ExportButtonID, EditCurvesDialog::OnExport) EVT_BUTTON(LibraryButtonID, EditCurvesDialog::OnLibrary) EVT_BUTTON(DefaultsButtonID, EditCurvesDialog::OnDefaults) EVT_BUTTON(wxID_OK, EditCurvesDialog::OnOK) END_EVENT_TABLE() EditCurvesDialog::EditCurvesDialog(EqualizationDialog * parent, int position): wxDialog(parent, wxID_ANY, _("Manage Curves List"), wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER) { SetLabel(_("Manage Curves")); // Provide visual label SetName(_("Manage Curves List")); // Provide audible label mParent = parent; mPosition = position; // make a copy of mParent->mCurves here to muck about with. mEditCurves.Clear(); for (unsigned int i = 0; i < mParent->mCurves.GetCount(); i++) { mEditCurves.Add(mParent->mCurves[i].Name); mEditCurves[i].points = mParent->mCurves[i].points; } Populate(); } EditCurvesDialog::~EditCurvesDialog() { } /// Creates the dialog and its contents. void EditCurvesDialog::Populate() { //------------------------- Main section -------------------- ShuttleGui S(this, eIsCreating); PopulateOrExchange(S); // ----------------------- End of main section -------------- } /// Defines the dialog and does data exchange with it. void EditCurvesDialog::PopulateOrExchange(ShuttleGui & S) { S.StartHorizontalLay(wxEXPAND); { S.StartStatic(_("&Curves"), 1); { S.SetStyle(wxSUNKEN_BORDER | wxLC_REPORT | wxLC_HRULES | wxLC_VRULES ); mList = S.Id(CurvesListID).AddListControlReportMode(); mList->InsertColumn(0, _("Curve Name"), wxLIST_FORMAT_RIGHT); } S.EndStatic(); S.StartVerticalLay(0); { S.Id(UpButtonID).AddButton(_("Move &Up"), wxALIGN_LEFT); S.Id(DownButtonID).AddButton(_("Move &Down"), wxALIGN_LEFT); S.Id(RenameButtonID).AddButton(_("&Rename..."), wxALIGN_LEFT); S.Id(DeleteButtonID).AddButton(_("D&elete..."), wxALIGN_LEFT); S.Id(ImportButtonID).AddButton(_("I&mport..."), wxALIGN_LEFT); S.Id(ExportButtonID).AddButton(_("E&xport..."), wxALIGN_LEFT); S.Id(LibraryButtonID).AddButton(_("&Get More..."), wxALIGN_LEFT); S.Id(DefaultsButtonID).AddButton(_("De&faults"), wxALIGN_LEFT); } S.EndVerticalLay(); } S.EndHorizontalLay(); S.AddStandardButtons(); S.StartStatic(_("Help")); S.AddConstTextBox(wxT(""), _("Rename 'unnamed' to save a new entry.\n'OK' saves all changes, 'Cancel' doesn't.")); S.EndStatic(); PopulateList(mPosition); Fit(); return; } void EditCurvesDialog::PopulateList(int position) { mList->DeleteAllItems(); for (unsigned int i = 0; i < mEditCurves.GetCount(); i++) mList->InsertItem(i, mEditCurves[i].Name); mList->SetColumnWidth(0, wxLIST_AUTOSIZE); int curvesWidth = mList->GetColumnWidth(0); mList->SetColumnWidth(0, wxLIST_AUTOSIZE_USEHEADER); int headerWidth = mList->GetColumnWidth(0); mList->SetColumnWidth(0, wxMax(headerWidth, curvesWidth)); // use 'position' to set focus mList->EnsureVisible(position); mList->SetItemState(position, wxLIST_STATE_SELECTED|wxLIST_STATE_FOCUSED, wxLIST_STATE_SELECTED|wxLIST_STATE_FOCUSED); } void EditCurvesDialog::OnUp(wxCommandEvent &event) { long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); if ( item == -1 ) return; // no items selected if( item == 0 ) item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); // top item selected, can't move up int state; while( item != -1 ) { if ( item == mList->GetItemCount()-1) { // 'unnamed' always stays at the bottom wxMessageBox(_("'unnamed' always stays at the bottom of the list"), _("'unnamed' is special")); // these could get tedious! return; } state = mList->GetItemState(item-1, wxLIST_STATE_SELECTED); if ( state != wxLIST_STATE_SELECTED ) { // swap this with one above but only if it isn't selected EQCurve temp(wxT("temp")); temp.Name = mEditCurves[item].Name; temp.points = mEditCurves[item].points; mEditCurves[item].Name = mEditCurves[item-1].Name; mEditCurves[item].points = mEditCurves[item-1].points; mEditCurves[item-1].Name = temp.Name; mEditCurves[item-1].points = temp.points; wxString sTemp = mList->GetItemText(item); mList->SetItem(item, 0, mList->GetItemText(item-1)); mList->SetItem(item-1, 0, sTemp); mList->SetItemState(item, 0, wxLIST_STATE_SELECTED); mList->SetItemState(item-1, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); } item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } } void EditCurvesDialog::OnDown(wxCommandEvent &event) { // looks harder than OnUp as we need to seek backwards up the list, hence GetPreviousItem long item = GetPreviousItem(mList->GetItemCount()); if( item == -1 ) return; // nothing selected int state; while( item != -1 ) { if( (item != mList->GetItemCount()-1) && (item != mList->GetItemCount()-2) ) { // can't move 'unnamed' down, or the one above it state = mList->GetItemState(item+1, wxLIST_STATE_SELECTED); if ( state != wxLIST_STATE_SELECTED ) { // swap this with one below but only if it isn't selected EQCurve temp(wxT("temp")); temp.Name = mEditCurves[item].Name; temp.points = mEditCurves[item].points; mEditCurves[item].Name = mEditCurves[item+1].Name; mEditCurves[item].points = mEditCurves[item+1].points; mEditCurves[item+1].Name = temp.Name; mEditCurves[item+1].points = temp.points; wxString sTemp = mList->GetItemText(item); mList->SetItem(item, 0, mList->GetItemText(item+1)); mList->SetItem(item+1, 0, sTemp); mList->SetItemState(item, 0, wxLIST_STATE_SELECTED); mList->SetItemState(item+1, wxLIST_STATE_SELECTED, wxLIST_STATE_SELECTED); } } item = GetPreviousItem(item); } } long EditCurvesDialog::GetPreviousItem(long item) // wx doesn't have this { long lastItem = -1; long itemTemp = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); while( (itemTemp != -1) && (itemTemp < item) ) { lastItem = itemTemp; itemTemp = mList->GetNextItem(itemTemp, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } return lastItem; } // Rename curve/curves void EditCurvesDialog::OnRename(wxCommandEvent &event) { wxString name; int numCurves = mEditCurves.GetCount(); int curve = 0; // Setup list of characters that aren't allowed wxArrayString exclude; exclude.Add( wxT("<") ); exclude.Add( wxT(">") ); exclude.Add( wxT("'") ); exclude.Add( wxT("\"") ); // Get the first one to be renamed long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); long firstItem = item; // for reselection with PopulateList while(item >= 0) { // Prompt the user until a valid name is enter or cancelled bool overwrite = false; bool bad = true; while( bad ) // Check for an unacceptable duplicate { // Show the dialog and bail if the user cancels bad = false; // build the dialog wxTextEntryDialog dlg( this, _("Rename '") + mEditCurves[ item ].Name + _("' to..."), _("Rename...") ); dlg.SetTextValidator( wxFILTER_EXCLUDE_CHAR_LIST ); dlg.SetName( _("Rename '") + mEditCurves[ item ].Name ); wxTextValidator *tv = dlg.GetTextValidator(); tv->SetExcludes( exclude ); // Tell the validator about excluded chars if( dlg.ShowModal() == wxID_CANCEL ) { bad = true; break; } // Extract the name from the dialog name = dlg.GetValue(); // Search list of curves for a duplicate name for( curve = 0; curve < numCurves; curve++ ) { wxString temp = mEditCurves[ curve ].Name; if( name.IsSameAs( mEditCurves[ curve ].Name )) // case sensitive { if( curve == item ) // trying to rename a curve with the same name { wxMessageBox( _("Name is the same as the original one"), _("Same name"), wxOK ); bad = true; break; } int answer = wxMessageBox( _("Overwrite existing curve '") + name +_("'?"), _("Curve exists"), wxYES_NO ); if (answer == wxYES) { bad = false; overwrite = true; // we are going to overwrite the one with this name break; } else bad = true; } } if( name == wxT("") || name == wxT("unnamed") ) bad = true; } if( bad != true ) // user didn't cancel this one { if( item == numCurves-1 ) // renaming 'unnamed' { if(overwrite) { // Overwrite another curve with 'unnamed' // ANSWER-ME: What is the expected value of "curve" here? // It was not previously initialized at declaration. // And if we expect it to have been through the above loop, // it will be numCurves, which is a bad index, right? // I've initialized it to zero, so we at least know what value it has. mEditCurves[ curve ].Name = name; mList->SetItem(curve, 0, name); mEditCurves[ curve ].points = mEditCurves[ item ].points; } else { // Create a new entry mEditCurves.Add( EQCurve( wxT("unnamed") ) ); // Copy over the points mEditCurves[ numCurves ].points = mEditCurves[ numCurves - 1 ].points; // Give the original unnamed entry the new name mEditCurves[ numCurves - 1 ].Name = name; numCurves++; } } else // renaming a curve other than 'unnamed' { if(overwrite) { // Overwrite another curve with this one, then delete this one // ANSWER-ME: Same question as above, i.e., what's the expected value of "curve" here? mEditCurves[ curve ].Name = name; mEditCurves[ curve ].points = mEditCurves[ item ].points; mEditCurves.RemoveAt( item ); numCurves--; } else // just rename (the 'normal' case) { mEditCurves[ item ].Name = name; mList->SetItem(item, 0, name); } } } // get next selected item item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } PopulateList(firstItem); // Note: only saved to file when you OK out of the dialog return; } // Delete curve/curves void EditCurvesDialog::OnDelete(wxCommandEvent &event) { // We could could count them here // And then put in a 'Delete N items?' prompt. #if 0 // 'one at a time' prompt code // Get the first one to be deleted long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); // Take care, mList and mEditCurves will get out of sync as curves are deleted int deleted = 0; long highlight = -1; while(item >= 0) { if(item == mList->GetItemCount()-1) //unnamed { wxMessageBox(_("You cannot delete the 'unnamed' curve."), _("Can't delete 'unnamed'"), wxOK | wxCENTRE, this); } else { // Create the prompt wxString quest; quest = wxString(_("Delete '")) + mEditCurves[ item-deleted ].Name + _("' ?"); // Ask for confirmation before removal int ans = wxMessageBox( quest, _("Confirm Deletion"), wxYES_NO | wxCENTRE, this ); if( ans == wxYES ) { // Remove the curve from the array mEditCurves.RemoveAt( item-deleted ); deleted++; } else highlight = item-deleted; // if user presses 'No', select that curve } // get next selected item item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } if(highlight == -1) PopulateList(mEditCurves.GetCount()-1); // set 'unnamed' as the selected curve else PopulateList(highlight); // user said 'No' to deletion #else // 'delete all N' code int count = mList->GetSelectedItemCount(); long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); // Create the prompt wxString quest; if( count > 1 ) quest.Printf(_("Delete ") + wxString(wxT("%d ")) + _("items?"), count); else if( count == 1 ) quest = wxString(_("Delete '")) + mEditCurves[ item ].Name + _("' ?"); else return; // Ask for confirmation before removal int ans = wxMessageBox( quest, _("Confirm Deletion"), wxYES_NO | wxCENTRE, this ); if( ans == wxYES ) { // Remove the curve(s) from the array // Take care, mList and mEditCurves will get out of sync as curves are deleted int deleted = 0; while(item >= 0) { if(item == mList->GetItemCount()-1) //unnamed { wxMessageBox(_("You cannot delete the 'unnamed' curve, it is special."), _("Can't delete 'unnamed'"), wxOK | wxCENTRE, this); } else { mEditCurves.RemoveAt( item-deleted ); deleted++; } item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } PopulateList(mEditCurves.GetCount()-1); // set 'unnamed' as the selected curve } #endif } void EditCurvesDialog::OnImport( wxCommandEvent &event ) { wxFileDialog filePicker(this, _("Choose an EQ curve file"), FileNames::DataDir(), wxT(""), _("xml files (*.xml;*.XML)|*.xml;*.XML")); wxString fileName = wxT(""); if( filePicker.ShowModal() == wxID_CANCEL) return; else fileName = filePicker.GetPath(); // Use EqualizationDialog::LoadCurves to read into (temporary) mEditCurves // This may not be the best OOP way of doing it, but I don't know better (MJS) EQCurveArray temp; temp = mParent->mCurves; // temp copy of the main dialog curves mParent->mCurves = mEditCurves; // copy EditCurvesDialog to main interface mParent->LoadCurves(fileName, true); // use main interface to load imported curves mEditCurves = mParent->mCurves; // copy back to this interface mParent->mCurves = temp; // and reset the main interface how it was PopulateList(0); // update the EditCurvesDialog dialog return; } void EditCurvesDialog::OnExport( wxCommandEvent &event ) { wxFileDialog filePicker(this, _("Export EQ curves as..."), FileNames::DataDir(), wxT(""), wxT("*.XML"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT | wxRESIZE_BORDER); // wxFD_CHANGE_DIR? wxString fileName = wxT(""); if( filePicker.ShowModal() == wxID_CANCEL) return; else fileName = filePicker.GetPath(); EQCurveArray temp; temp = mParent->mCurves; // backup the parent's curves EQCurveArray exportCurves; // Copy selected curves to export exportCurves.Clear(); long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); int i=0; while(item >= 0) { if(item != mList->GetItemCount()-1) // not 'unnamed' { exportCurves.Add(mEditCurves[item].Name); exportCurves[i].points = mEditCurves[item].points; i++; } else wxMessageBox(_("You cannot export 'unnamed' curve"), _("'unnamed' is special")); // get next selected item item = mList->GetNextItem(item, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); } if(i>0) { mParent->mCurves = exportCurves; mParent->SaveCurves(fileName); mParent->mCurves = temp; wxString message; message.Printf(_("%d curves exported to %s"), i, fileName.c_str()); wxMessageBox(message, _("Curves exported")); } else wxMessageBox(_("No curves exported"), _("No curves exported")); } void EditCurvesDialog::OnLibrary( wxCommandEvent &event ) { wxLaunchDefaultBrowser(wxT("http://wiki.audacityteam.org/wiki/EQCurvesDownload")); } void EditCurvesDialog::OnDefaults( wxCommandEvent &event ) { EQCurveArray temp; temp = mParent->mCurves; // we expect this to fail in LoadCurves (due to a lack of path) and handle that there mParent->LoadCurves( wxT("EQDefaultCurves.xml") ); mEditCurves = mParent->mCurves; mParent->mCurves = temp; PopulateList(0); // update the EditCurvesDialog dialog } void EditCurvesDialog::OnOK(wxCommandEvent &event) { // Make a backup of the current curves wxString backupPlace = wxFileName( FileNames::DataDir(), wxT("EQBackup.xml") ).GetFullPath(); mParent->SaveCurves(backupPlace); // Load back into the main dialog mParent->mCurves.Clear(); for (unsigned int i = 0; i < mEditCurves.GetCount(); i++) { mParent->mCurves.Add(mEditCurves[i].Name); mParent->mCurves[i].points = mEditCurves[i].points; } mParent->SaveCurves(); mParent->LoadCurves(); mParent->CreateChoice(); mParent->Layout(); // Select something sensible long item = mList->GetNextItem(-1, wxLIST_NEXT_ALL, wxLIST_STATE_SELECTED); if (item == -1) item = mList->GetItemCount()-1; // nothing selected, default to 'unnamed' mParent->setCurve(item); EndModal(true); } #if wxUSE_ACCESSIBILITY SliderAx::SliderAx( wxWindow * window, wxString fmt ): wxWindowAccessible( window ) { mParent = window; mFmt = fmt; } SliderAx::~SliderAx() { } // Retrieves the address of an IDispatch interface for the specified child. // All objects must support this property. wxAccStatus SliderAx::GetChild( int childId, wxAccessible** child ) { if( childId == wxACC_SELF ) { *child = this; } else { *child = NULL; } return wxACC_OK; } // Gets the number of children. wxAccStatus SliderAx::GetChildCount(int* childCount) { *childCount = 3; return wxACC_OK; } // Gets the default action for this object (0) or > 0 (the action for a child). // Return wxACC_OK even if there is no action. actionName is the action, or the empty // string if there is no action. // The retrieved string describes the action that is performed on an object, // not what the object does as a result. For example, a toolbar button that prints // a document has a default action of "Press" rather than "Prints the current document." wxAccStatus SliderAx::GetDefaultAction( int childId, wxString *actionName ) { actionName->Clear(); return wxACC_OK; } // Returns the description for this object or a child. wxAccStatus SliderAx::GetDescription( int childId, wxString *description ) { description->Clear(); return wxACC_OK; } // Gets the window with the keyboard focus. // If childId is 0 and child is NULL, no object in // this subhierarchy has the focus. // If this object has the focus, child should be 'this'. wxAccStatus SliderAx::GetFocus(int* childId, wxAccessible** child) { *childId = 0; *child = this; return wxACC_OK; } // Returns help text for this object or a child, similar to tooltip text. wxAccStatus SliderAx::GetHelpText( int childId, wxString *helpText ) { helpText->Clear(); return wxACC_OK; } // Returns the keyboard shortcut for this object or child. // Return e.g. ALT+K wxAccStatus SliderAx::GetKeyboardShortcut( int childId, wxString *shortcut ) { shortcut->Clear(); return wxACC_OK; } // Returns the rectangle for this object (id = 0) or a child element (id > 0). // rect is in screen coordinates. wxAccStatus SliderAx::GetLocation( wxRect& rect, int elementId ) { wxSliderBugfix *s = wxDynamicCast( GetWindow(), wxSliderBugfix ); rect = s->GetRect(); rect.SetPosition( s->GetParent()->ClientToScreen( rect.GetPosition() ) ); return wxACC_OK; } // Gets the name of the specified object. wxAccStatus SliderAx::GetName(int childId, wxString* name) { wxSliderBugfix *s = wxDynamicCast( GetWindow(), wxSliderBugfix ); *name = s->GetName(); return wxACC_OK; } // Returns a role constant. wxAccStatus SliderAx::GetRole(int childId, wxAccRole* role) { switch( childId ) { case 0: *role = wxROLE_SYSTEM_SLIDER; break; case 1: case 3: *role = wxROLE_SYSTEM_PUSHBUTTON; break; case 2: *role = wxROLE_SYSTEM_INDICATOR; break; } return wxACC_OK; } // Gets a variant representing the selected children // of this object. // Acceptable values: // - a null variant (IsNull() returns TRUE) // - a list variant (GetType() == wxT("list")) // - an integer representing the selected child element, // or 0 if this object is selected (GetType() == wxT("long")) // - a "void*" pointer to a wxAccessible child object wxAccStatus SliderAx::GetSelections( wxVariant *selections ) { return wxACC_NOT_IMPLEMENTED; } // Returns a state constant. wxAccStatus SliderAx::GetState(int childId, long* state) { wxSliderBugfix *s = wxDynamicCast( GetWindow(), wxSliderBugfix ); switch( childId ) { case 0: *state = wxACC_STATE_SYSTEM_FOCUSABLE; break; case 1: if( s->GetValue() == s->GetMin() ) { *state = wxACC_STATE_SYSTEM_INVISIBLE; } break; case 3: if( s->GetValue() == s->GetMax() ) { *state = wxACC_STATE_SYSTEM_INVISIBLE; } break; } // Do not use mSliderIsFocused is not set until after this method // is called. *state |= ( s == wxWindow::FindFocus() ? wxACC_STATE_SYSTEM_FOCUSED : 0 ); return wxACC_OK; } // Returns a localized string representing the value for the object // or child. wxAccStatus SliderAx::GetValue(int childId, wxString* strValue) { wxSliderBugfix *s = wxDynamicCast( GetWindow(), wxSliderBugfix ); if( childId == 0 ) { strValue->Printf( mFmt, s->GetValue() ); return wxACC_OK; } return wxACC_NOT_SUPPORTED; } #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: 65b35bfa-632c-46fe-9170-840a158b3c97