stereomatrix_controls.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. * stereomatrix_controls.h - controls for stereoMatrix-effect
  3. *
  4. * Copyright (c) 2008 Paul Giblock <drfaygo/at/gmail/dot/com>
  5. *
  6. * This file is part of LMMS - https://lmms.io
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2 of the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public
  19. * License along with this program (see COPYING); if not, write to the
  20. * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. * Boston, MA 02110-1301 USA.
  22. *
  23. */
  24. #ifndef _STEREO_MATRIX_CONTROLS_H
  25. #define _STEREO_MATRIX_CONTROLS_H
  26. #include "EffectControls.h"
  27. #include "stereomatrix_control_dialog.h"
  28. #include "Knob.h"
  29. class stereoMatrixEffect;
  30. class stereoMatrixControls : public EffectControls
  31. {
  32. Q_OBJECT
  33. public:
  34. stereoMatrixControls( stereoMatrixEffect( * _eff ) );
  35. virtual ~stereoMatrixControls()
  36. {
  37. }
  38. virtual void saveSettings( QDomDocument & _doc, QDomElement & _parent );
  39. virtual void loadSettings( const QDomElement & _this );
  40. inline virtual QString nodeName() const
  41. {
  42. return( "stereomatrixcontrols" );
  43. }
  44. virtual int controlCount()
  45. {
  46. return( 1 );
  47. }
  48. virtual EffectControlDialog * createView()
  49. {
  50. return new stereoMatrixControlDialog( this );
  51. }
  52. private slots:
  53. void changeMatrix();
  54. private:
  55. stereoMatrixEffect * m_effect;
  56. FloatModel m_llModel;
  57. FloatModel m_lrModel;
  58. FloatModel m_rlModel;
  59. FloatModel m_rrModel;
  60. friend class stereoMatrixControlDialog;
  61. friend class stereoMatrixEffect;
  62. } ;
  63. #endif