diff options
author | David Robillard <d@drobilla.net> | 2011-03-15 04:26:31 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-03-15 04:26:31 +0000 |
commit | 59f728f7e8270eaf0300649937053acb25b89699 (patch) | |
tree | 1983654051a4bba620c796cb3c8dba5a86952f4c /src/mdaSpecMeterGUI.h | |
parent | 4fbdf88bfb0ce05b44c53f270af863273228e61a (diff) | |
download | mda.lv2-59f728f7e8270eaf0300649937053acb25b89699.tar.gz mda.lv2-59f728f7e8270eaf0300649937053acb25b89699.tar.bz2 mda.lv2-59f728f7e8270eaf0300649937053acb25b89699.zip |
Remove GUI stuff and SpecMeter plugin.
git-svn-id: http://svn.drobilla.net/lad/trunk/plugins/mdala.lv2@3089 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/mdaSpecMeterGUI.h')
-rw-r--r-- | src/mdaSpecMeterGUI.h | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/mdaSpecMeterGUI.h b/src/mdaSpecMeterGUI.h deleted file mode 100644 index edb0f9c..0000000 --- a/src/mdaSpecMeterGUI.h +++ /dev/null @@ -1,62 +0,0 @@ -/* - Copyright 2008-2011 David Robillard <http://drobilla.net> - Copyright 1999-2000 Paul Kellett (Maxim Digital Audio) - - This 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 3 of the License, - or (at your option) any later version. - - This software is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this software. If not, see <http://www.gnu.org/licenses/>. -*/ - -#ifndef _mdaSpecMeterGUI_h_ -#define _mdaSpecMeterGUI_h_ - -#include "vstgui.h" - - -class CDraw : public CControl -{ -public: - CDraw(CRect& size, float x, CBitmap* background); - ~CDraw(); - - void draw(CDrawContext *pContext); - LvzInt32 x2pix(float x); - LvzInt32 x22pix(float x); - - float Lpeak, Lrms, Lmin, Rpeak, Rrms, Rmin, Corr; - float band[2][16]; - LvzInt32 temp; - -protected: - CBitmap* bitmap; -}; - - -class mdaSpecMeterGUI : public AEffGUIEditor -{ -public: - mdaSpecMeterGUI(AudioEffect* effect); - ~mdaSpecMeterGUI(); - - long open(void* ptr); - void idle(); - void close(); - -private: - CDraw* draw; - CBitmap* background; - LvzInt32 xtimer; -}; - - -#endif // _mdaSpecMeterGUI_h_ - |