Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
2.5KB

  1. /*
  2. * DISTRHO Plugin Toolkit (DPT)
  3. * Copyright (C) 2012-2013 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU Lesser General Public License for more details.
  13. *
  14. * For a full copy of the license see the LGPL.txt file
  15. */
  16. #ifndef __DISTRHO_UI_HPP__
  17. #define __DISTRHO_UI_HPP__
  18. #include "DistrhoUtils.hpp"
  19. #include <cstdint>
  20. START_NAMESPACE_DISTRHO
  21. // -------------------------------------------------
  22. // UI
  23. struct UIPrivateData;
  24. class UI
  25. {
  26. public:
  27. UI();
  28. virtual ~UI();
  29. // ---------------------------------------------
  30. // Host DSP State
  31. double d_sampleRate() const;
  32. void d_editParameter(uint32_t index, bool started);
  33. void d_setParameterValue(uint32_t index, float value);
  34. #if DISTRHO_PLUGIN_WANT_STATE
  35. void d_setState(const char* key, const char* value);
  36. #endif
  37. #if DISTRHO_PLUGIN_IS_SYNTH
  38. void d_sendNote(bool onOff, uint8_t channel, uint8_t note, uint8_t velocity);
  39. #endif
  40. // ---------------------------------------------
  41. // Host UI State
  42. void d_uiResize(unsigned int width, unsigned int height);
  43. protected:
  44. // ---------------------------------------------
  45. // Information
  46. virtual const char* d_name() const { return DISTRHO_PLUGIN_NAME; }
  47. virtual unsigned int d_width() const = 0;
  48. virtual unsigned int d_height() const = 0;
  49. // ---------------------------------------------
  50. // DSP Callbacks
  51. virtual void d_parameterChanged(uint32_t index, float value) = 0;
  52. #if DISTRHO_PLUGIN_WANT_PROGRAMS
  53. virtual void d_programChanged(uint32_t index) = 0;
  54. #endif
  55. #if DISTRHO_PLUGIN_WANT_STATE
  56. virtual void d_stateChanged(const char* key, const char* value) = 0;
  57. #endif
  58. #if DISTRHO_PLUGIN_IS_SYNTH
  59. virtual void d_noteReceived(bool onOff, uint8_t channel, uint8_t note, uint8_t velocity) = 0;
  60. #endif
  61. // ---------------------------------------------
  62. // UI Callbacks
  63. virtual void d_uiIdle() = 0;
  64. // ---------------------------------------------
  65. private:
  66. UIPrivateData* const pData;
  67. friend class UIInternal;
  68. };
  69. // -------------------------------------------------
  70. UI* createUI();
  71. // -------------------------------------------------
  72. END_NAMESPACE_DISTRHO
  73. #endif // __DISTRHO_UI_HPP__