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.

235 lines
6.6KB

  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_EMBED_UI && DISTRHO_PLUGIN_HAS_EXTERNAL_UI
  95. /* --------------------------------------------------------------------------------------------------------
  96. * External embeddable UI helpers */
  97. /**
  98. Get the Window Id that will be used for the next created window.
  99. @note: This function is only valid during createUI(),
  100. it will return 0 when called from anywhere else.
  101. */
  102. static uintptr_t getNextWindowId() noexcept;
  103. #endif
  104. protected:
  105. /* --------------------------------------------------------------------------------------------------------
  106. * DSP/Plugin Callbacks */
  107. /**
  108. A parameter has changed on the plugin side.@n
  109. This is called by the host to inform the UI about parameter changes.
  110. */
  111. virtual void parameterChanged(uint32_t index, float value) = 0;
  112. #if DISTRHO_PLUGIN_WANT_PROGRAMS
  113. /**
  114. A program has been loaded on the plugin side.@n
  115. This is called by the host to inform the UI about program changes.
  116. */
  117. virtual void programLoaded(uint32_t index) = 0;
  118. #endif
  119. #if DISTRHO_PLUGIN_WANT_STATE
  120. /**
  121. A state has changed on the plugin side.@n
  122. This is called by the host to inform the UI about state changes.
  123. */
  124. virtual void stateChanged(const char* key, const char* value) = 0;
  125. #endif
  126. /* --------------------------------------------------------------------------------------------------------
  127. * DSP/Plugin Callbacks (optional) */
  128. /**
  129. Optional callback to inform the UI about a sample rate change on the plugin side.
  130. @see getSampleRate()
  131. */
  132. virtual void sampleRateChanged(double newSampleRate);
  133. #ifdef HAVE_DGL
  134. /* --------------------------------------------------------------------------------------------------------
  135. * UI Callbacks (optional) */
  136. /**
  137. uiIdle.
  138. @TODO Document this.
  139. */
  140. virtual void uiIdle() {}
  141. /**
  142. File browser selected function.
  143. @see Window::fileBrowserSelected(const char*)
  144. */
  145. virtual void uiFileBrowserSelected(const char* filename);
  146. /**
  147. OpenGL window reshape function, called when parent window is resized.
  148. You can reimplement this function for a custom OpenGL state.
  149. @see Window::onReshape(uint,uint)
  150. */
  151. virtual void uiReshape(uint width, uint height);
  152. /* --------------------------------------------------------------------------------------------------------
  153. * UI Resize Handling, internal */
  154. /**
  155. OpenGL widget resize function, called when the widget is resized.
  156. This is overriden here so the host knows when the UI is resized by you.
  157. @see Widget::onResize(const ResizeEvent&)
  158. */
  159. void onResize(const ResizeEvent& ev) override;
  160. #endif
  161. // -------------------------------------------------------------------------------------------------------
  162. private:
  163. struct PrivateData;
  164. PrivateData* const pData;
  165. friend class UIExporter;
  166. friend class UIExporterWindow;
  167. #ifdef HAVE_DGL
  168. // these should not be used
  169. void setAbsoluteX(int) const noexcept {}
  170. void setAbsoluteY(int) const noexcept {}
  171. void setAbsolutePos(int, int) const noexcept {}
  172. void setAbsolutePos(const DGL::Point<int>&) const noexcept {}
  173. #endif
  174. DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(UI)
  175. };
  176. /** @} */
  177. /* ------------------------------------------------------------------------------------------------------------
  178. * Create UI, entry point */
  179. /**
  180. @addtogroup EntryPoints
  181. @{
  182. */
  183. /**
  184. createUI.
  185. @TODO Document this.
  186. */
  187. extern UI* createUI();
  188. /** @} */
  189. // -----------------------------------------------------------------------------------------------------------
  190. END_NAMESPACE_DISTRHO
  191. #endif // DISTRHO_UI_HPP_INCLUDED