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.

244 lines
6.9KB

  1. /*
  2. * DISTRHO Plugin Framework (DPF)
  3. * Copyright (C) 2012-2016 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * Permission to use, copy, modify, and/or distribute this software for any purpose with
  6. * or without fee is hereby granted, provided that the above copyright notice and this
  7. * permission notice appear in all copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD
  10. * TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN
  11. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  12. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
  13. * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
  14. * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  15. */
  16. #ifndef DISTRHO_UI_HPP_INCLUDED
  17. #define DISTRHO_UI_HPP_INCLUDED
  18. #include "extra/LeakDetector.hpp"
  19. #include "src/DistrhoPluginChecks.h"
  20. #ifndef HAVE_DGL
  21. # include "extra/ExternalWindow.hpp"
  22. typedef DISTRHO_NAMESPACE::ExternalWindow UIWidget;
  23. #elif DISTRHO_UI_USE_NANOVG
  24. # include "../dgl/NanoVG.hpp"
  25. typedef DGL::NanoWidget UIWidget;
  26. #else
  27. # include "../dgl/Widget.hpp"
  28. typedef DGL::Widget UIWidget;
  29. #endif
  30. START_NAMESPACE_DISTRHO
  31. /* ------------------------------------------------------------------------------------------------------------
  32. * DPF UI */
  33. /**
  34. @addtogroup MainClasses
  35. @{
  36. */
  37. /**
  38. DPF UI class from where UI instances are created.
  39. @note You must call setSize during construction,
  40. @TODO Detailed information about this class.
  41. */
  42. class UI : public UIWidget
  43. {
  44. public:
  45. /**
  46. UI class constructor.
  47. The UI should be initialized to a default state that matches the plugin side.
  48. */
  49. UI(uint width = 0, uint height = 0);
  50. /**
  51. Destructor.
  52. */
  53. virtual ~UI();
  54. /* --------------------------------------------------------------------------------------------------------
  55. * Host state */
  56. /**
  57. Get the current sample rate used in plugin processing.
  58. @see sampleRateChanged(double)
  59. */
  60. double getSampleRate() const noexcept;
  61. /**
  62. editParameter.
  63. @TODO Document this.
  64. */
  65. void editParameter(uint32_t index, bool started);
  66. /**
  67. setParameterValue.
  68. @TODO Document this.
  69. */
  70. void setParameterValue(uint32_t index, float value);
  71. #if DISTRHO_PLUGIN_WANT_STATE
  72. /**
  73. setState.
  74. @TODO Document this.
  75. */
  76. void setState(const char* key, const char* value);
  77. #endif
  78. #if DISTRHO_PLUGIN_IS_SYNTH
  79. /**
  80. sendNote.
  81. @TODO Document this.
  82. */
  83. void sendNote(uint8_t channel, uint8_t note, uint8_t velocity);
  84. #endif
  85. #if DISTRHO_PLUGIN_WANT_DIRECT_ACCESS
  86. /* --------------------------------------------------------------------------------------------------------
  87. * Direct DSP access - DO NOT USE THIS UNLESS STRICTLY NECESSARY!! */
  88. /**
  89. getPluginInstancePointer.
  90. @TODO Document this.
  91. */
  92. void* getPluginInstancePointer() const noexcept;
  93. #endif
  94. #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
  95. /* --------------------------------------------------------------------------------------------------------
  96. * External UI helpers */
  97. /**
  98. Get the bundle path that will be used for the next UI.
  99. @note: This function is only valid during createUI(),
  100. it will return null when called from anywhere else.
  101. */
  102. static const char* getNextBundlePath() noexcept;
  103. # if DISTRHO_PLUGIN_HAS_EMBED_UI
  104. /**
  105. Get the Window Id that will be used for the next created window.
  106. @note: This function is only valid during createUI(),
  107. it will return 0 when called from anywhere else.
  108. */
  109. static uintptr_t getNextWindowId() noexcept;
  110. # endif
  111. #endif
  112. protected:
  113. /* --------------------------------------------------------------------------------------------------------
  114. * DSP/Plugin Callbacks */
  115. /**
  116. A parameter has changed on the plugin side.@n
  117. This is called by the host to inform the UI about parameter changes.
  118. */
  119. virtual void parameterChanged(uint32_t index, float value) = 0;
  120. #if DISTRHO_PLUGIN_WANT_PROGRAMS
  121. /**
  122. A program has been loaded on the plugin side.@n
  123. This is called by the host to inform the UI about program changes.
  124. */
  125. virtual void programLoaded(uint32_t index) = 0;
  126. #endif
  127. #if DISTRHO_PLUGIN_WANT_STATE
  128. /**
  129. A state has changed on the plugin side.@n
  130. This is called by the host to inform the UI about state changes.
  131. */
  132. virtual void stateChanged(const char* key, const char* value) = 0;
  133. #endif
  134. /* --------------------------------------------------------------------------------------------------------
  135. * DSP/Plugin Callbacks (optional) */
  136. /**
  137. Optional callback to inform the UI about a sample rate change on the plugin side.
  138. @see getSampleRate()
  139. */
  140. virtual void sampleRateChanged(double newSampleRate);
  141. #ifdef HAVE_DGL
  142. /* --------------------------------------------------------------------------------------------------------
  143. * UI Callbacks (optional) */
  144. /**
  145. uiIdle.
  146. @TODO Document this.
  147. */
  148. virtual void uiIdle() {}
  149. /**
  150. File browser selected function.
  151. @see Window::fileBrowserSelected(const char*)
  152. */
  153. virtual void uiFileBrowserSelected(const char* filename);
  154. /**
  155. OpenGL window reshape function, called when parent window is resized.
  156. You can reimplement this function for a custom OpenGL state.
  157. @see Window::onReshape(uint,uint)
  158. */
  159. virtual void uiReshape(uint width, uint height);
  160. /* --------------------------------------------------------------------------------------------------------
  161. * UI Resize Handling, internal */
  162. /**
  163. OpenGL widget resize function, called when the widget is resized.
  164. This is overriden here so the host knows when the UI is resized by you.
  165. @see Widget::onResize(const ResizeEvent&)
  166. */
  167. void onResize(const ResizeEvent& ev) override;
  168. #endif
  169. // -------------------------------------------------------------------------------------------------------
  170. private:
  171. struct PrivateData;
  172. PrivateData* const pData;
  173. friend class UIExporter;
  174. friend class UIExporterWindow;
  175. #ifdef HAVE_DGL
  176. // these should not be used
  177. void setAbsoluteX(int) const noexcept {}
  178. void setAbsoluteY(int) const noexcept {}
  179. void setAbsolutePos(int, int) const noexcept {}
  180. void setAbsolutePos(const DGL::Point<int>&) const noexcept {}
  181. #endif
  182. DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(UI)
  183. };
  184. /** @} */
  185. /* ------------------------------------------------------------------------------------------------------------
  186. * Create UI, entry point */
  187. /**
  188. @addtogroup EntryPoints
  189. @{
  190. */
  191. /**
  192. createUI.
  193. @TODO Document this.
  194. */
  195. extern UI* createUI();
  196. /** @} */
  197. // -----------------------------------------------------------------------------------------------------------
  198. END_NAMESPACE_DISTRHO
  199. #endif // DISTRHO_UI_HPP_INCLUDED