|
1234567891011121314151617181920212223242526272829303132333435363738394041 |
- /*
- ZynAddSubFX - a software synthesizer
-
- Fl_EQGraph.H - Equalizer Graphical View
- Copyright (C) 2016 Mark McCurry
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License
- as published by the Free Software Foundation; either version 2
- of the License, or (at your option) any later version.
- */
- #pragma once
- #include "Fl_Osc_Widget.H"
- #include <FL/Fl_Box.H>
- #include "../globals.h"
-
- class EffectMgr;
- class Fl_Osc_Interface;
- class Fl_EQGraph:public Fl_Box, public Fl_Osc_Widget
- {
- public:
- Fl_EQGraph(int x,int y, int w, int h, const char *label=0);
- virtual ~Fl_EQGraph(void);
- void draw(void);
-
- void OSC_raw(const char *msg);
- void update(void);
-
- private:
- void draw_freq_line(float freq,int type);
-
- double getresponse(int maxy,float freq) const;
-
- float getfreqx(float x) const;
- float getfreqpos(float freq) const;
-
- float samplerate;
- float gain;
- float num[MAX_EQ_BANDS*MAX_FILTER_STAGES*3];
- float dem[MAX_EQ_BANDS*MAX_FILTER_STAGES*3];
- };
|