peak_controller_effect_control_dialog.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * peak_controller_EffectControlDialog.h - control dialog for
  3. * peakControllerEffect
  4. *
  5. * Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail/dot/com>
  6. *
  7. * This file is part of LMMS - https://lmms.io
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2 of the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public
  20. * License along with this program (see COPYING); if not, write to the
  21. * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  22. * Boston, MA 02110-1301 USA.
  23. *
  24. */
  25. #ifndef _PEAK_CONTROLLER_EFFECT_CONTROL_DIALOG_H
  26. #define _PEAK_CONTROLLER_EFFECT_CONTROL_DIALOG_H
  27. #include "EffectControlDialog.h"
  28. class PeakControllerEffectControls;
  29. class Knob;
  30. class LedCheckBox;
  31. class PeakControllerEffectControlDialog : public EffectControlDialog
  32. {
  33. Q_OBJECT
  34. public:
  35. PeakControllerEffectControlDialog(
  36. PeakControllerEffectControls * _controls );
  37. virtual ~PeakControllerEffectControlDialog()
  38. {
  39. }
  40. protected:
  41. Knob * m_baseKnob;
  42. Knob * m_amountKnob;
  43. Knob * m_attackKnob;
  44. Knob * m_decayKnob;
  45. Knob * m_tresholdKnob;
  46. LedCheckBox * m_muteLed;
  47. LedCheckBox * m_absLed;
  48. Knob * m_amountMultKnob;
  49. } ;
  50. #endif