LadspaControls.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * LadspaControls.h - model for LADSPA plugin controls
  3. *
  4. * Copyright (c) 2008-2014 Tobias Doerffel <tobydox/at/users.sourceforge.net>
  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 LADSPA_CONTROLS_H
  25. #define LADSPA_CONTROLS_H
  26. #include "EffectControls.h"
  27. #include "LadspaControl.h"
  28. #include "LadspaControlDialog.h"
  29. typedef QVector<LadspaControl *> control_list_t;
  30. class LadspaEffect;
  31. class LadspaControls : public EffectControls
  32. {
  33. Q_OBJECT
  34. public:
  35. LadspaControls( LadspaEffect * _eff );
  36. virtual ~LadspaControls();
  37. inline int controlCount()
  38. {
  39. return m_controlCount;
  40. }
  41. virtual void saveSettings( QDomDocument & _doc, QDomElement & _parent );
  42. virtual void loadSettings( const QDomElement & _this );
  43. inline virtual QString nodeName() const
  44. {
  45. return "ladspacontrols";
  46. }
  47. virtual EffectControlDialog * createView()
  48. {
  49. return new LadspaControlDialog( this );
  50. }
  51. protected slots:
  52. void updateLinkStatesFromGlobal();
  53. void linkPort( int _port, bool _state );
  54. private:
  55. LadspaEffect * m_effect;
  56. ch_cnt_t m_processors;
  57. ch_cnt_t m_controlCount;
  58. bool m_noLink;
  59. BoolModel m_stereoLinkModel;
  60. //! control vector for each processor
  61. QVector<control_list_t> m_controls;
  62. friend class LadspaControlDialog;
  63. friend class LadspaEffect;
  64. signals:
  65. void effectModelChanged( LadspaControls * );
  66. } ;
  67. #endif