From adacb33bf4eadcd49a744177bf3f059e7b2f2f52 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 22 Feb 2010 21:24:34 +0000 Subject: Merge with upstream r2. git-svn-id: http://svn.drobilla.net/lad/trunk/mda-lv2@2471 a436a847-0d15-0410-975c-d299462d15a1 --- src/mdaSpecMeterGUI.h | 87 ++++++++++++++++++++++++++------------------------- 1 file changed, 44 insertions(+), 43 deletions(-) (limited to 'src/mdaSpecMeterGUI.h') diff --git a/src/mdaSpecMeterGUI.h b/src/mdaSpecMeterGUI.h index 99a71f7..bc0a232 100644 --- a/src/mdaSpecMeterGUI.h +++ b/src/mdaSpecMeterGUI.h @@ -1,43 +1,44 @@ -#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); - long x2pix(float x); - long x22pix(float x); - - float Lpeak, Lrms, Lmin, Rpeak, Rrms, Rmin, Corr; - float band[2][16]; - -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; - long xtimer; -}; - - -#endif // _mdaSpecMeterGUI_h_ - +#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_ + -- cgit v1.2.1