diff options
| author | pepper <peppersclothescult@gmail.com> | 2015-01-10 21:37:24 -0800 |
|---|---|---|
| committer | pepper <peppersclothescult@gmail.com> | 2015-01-10 21:37:24 -0800 |
| commit | 58f8437f4b8b741ddc8e7bcde21bf983cc618430 (patch) | |
| tree | bfd0a9d601274fe56de15a4eaeb0998f9481419d /vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h | |
| parent | 36773a28ece1641a2d827a29869cdd4c38e87925 (diff) | |
Diffstat (limited to 'vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h')
| -rw-r--r-- | vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h b/vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h new file mode 100644 index 0000000..dae8bdc --- /dev/null +++ b/vendor/vstsdk2.4/vstgui.sf/drawtest/source/controlsgui.h @@ -0,0 +1,51 @@ +#ifndef __controlsgui__ +#define __controlsgui__ + +#ifndef __vstcontrols__ +#include "vstcontrols.h" +#endif + +class CLabel; + +class ControlsGUI : public CViewContainer, CControlListener +{ +public: + ControlsGUI (const CRect &size, CFrame *pParent, CBitmap *pBackground = 0); + + virtual void onIdle (); + + virtual void valueChanged (CDrawContext *pContext, CControl *pControl); + +protected: + + COnOffButton *cOnOffButton; + CKickButton *cKickButton; + CKnob *cKnob; + CMovieButton *cMovieButton; + CAnimKnob *cAnimKnob; + COptionMenu *cOptionMenu; + + CRockerSwitch *cRockerSwitch; + CHorizontalSwitch *cHorizontalSwitch; + CVerticalSwitch *cVerticalSwitch; + CHorizontalSlider *cHorizontalSlider; + CHorizontalSlider *cHorizontalSlider2; + CVerticalSlider *cVerticalSlider; + CTextEdit *cTextEdit; + + CSplashScreen *cSplashScreen; + CMovieBitmap *cMovieBitmap; + CAutoAnimation *cAutoAnimation; + CSpecialDigit *cSpecialDigit; + CParamDisplay *cParamDisplay; + CVuMeter *cVuMeter; + + CViewContainer *cViewContainer; + + // others + CLabel *cLabel; + + long oldTicks; +}; + +#endif |
