DISTRHO Plugin Framework
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.

254 lines
7.4KB

  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_NAMESPACE::NanoWidget UIWidget;
  26. #else
  27. # include "../dgl/Widget.hpp"
  28. typedef DGL_NAMESPACE::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, bool userResizable = false);
  50. /**
  51. Destructor.
  52. */
  53. virtual ~UI();
  54. /**
  55. Set geometry constraints for the UI when resized by the user.
  56. This is a convenience function that calls getParentWindow().setGeometryConstraints()
  57. @see Window::setGeometryConstraints(uint,uint,bool)
  58. */
  59. void setGeometryConstraints(uint minWidth, uint minHeight, bool keepAspectRatio);
  60. /* --------------------------------------------------------------------------------------------------------
  61. * Host state */
  62. /**
  63. Get the current sample rate used in plugin processing.
  64. @see sampleRateChanged(double)
  65. */
  66. double getSampleRate() const noexcept;
  67. /**
  68. editParameter.
  69. @TODO Document this.
  70. */
  71. void editParameter(uint32_t index, bool started);
  72. /**
  73. setParameterValue.
  74. @TODO Document this.
  75. */
  76. void setParameterValue(uint32_t index, float value);
  77. #if DISTRHO_PLUGIN_WANT_STATE
  78. /**
  79. setState.
  80. @TODO Document this.
  81. */
  82. void setState(const char* key, const char* value);
  83. #endif
  84. #if DISTRHO_PLUGIN_WANT_MIDI_INPUT
  85. /**
  86. sendNote.
  87. @TODO Document this.
  88. @note Work in progress. Implemented for DSSI and LV2 formats.
  89. */
  90. void sendNote(uint8_t channel, uint8_t note, uint8_t velocity);
  91. #endif
  92. #if DISTRHO_PLUGIN_WANT_DIRECT_ACCESS
  93. /* --------------------------------------------------------------------------------------------------------
  94. * Direct DSP access - DO NOT USE THIS UNLESS STRICTLY NECESSARY!! */
  95. /**
  96. getPluginInstancePointer.
  97. @TODO Document this.
  98. */
  99. void* getPluginInstancePointer() const noexcept;
  100. #endif
  101. #if DISTRHO_PLUGIN_HAS_EXTERNAL_UI
  102. /* --------------------------------------------------------------------------------------------------------
  103. * External UI helpers */
  104. /**
  105. Get the bundle path that will be used for the next UI.
  106. @note: This function is only valid during createUI(),
  107. it will return null when called from anywhere else.
  108. */
  109. static const char* getNextBundlePath() noexcept;
  110. # if DISTRHO_PLUGIN_HAS_EMBED_UI
  111. /**
  112. Get the Window Id that will be used for the next created window.
  113. @note: This function is only valid during createUI(),
  114. it will return 0 when called from anywhere else.
  115. */
  116. static uintptr_t getNextWindowId() noexcept;
  117. # endif
  118. #endif
  119. protected:
  120. /* --------------------------------------------------------------------------------------------------------
  121. * DSP/Plugin Callbacks */
  122. /**
  123. A parameter has changed on the plugin side.@n
  124. This is called by the host to inform the UI about parameter changes.
  125. */
  126. virtual void parameterChanged(uint32_t index, float value) = 0;
  127. #if DISTRHO_PLUGIN_WANT_PROGRAMS
  128. /**
  129. A program has been loaded on the plugin side.@n
  130. This is called by the host to inform the UI about program changes.
  131. */
  132. virtual void programLoaded(uint32_t index) = 0;
  133. #endif
  134. #if DISTRHO_PLUGIN_WANT_STATE
  135. /**
  136. A state has changed on the plugin side.@n
  137. This is called by the host to inform the UI about state changes.
  138. */
  139. virtual void stateChanged(const char* key, const char* value) = 0;
  140. #endif
  141. /* --------------------------------------------------------------------------------------------------------
  142. * DSP/Plugin Callbacks (optional) */
  143. /**
  144. Optional callback to inform the UI about a sample rate change on the plugin side.
  145. @see getSampleRate()
  146. */
  147. virtual void sampleRateChanged(double newSampleRate);
  148. #ifdef HAVE_DGL
  149. /* --------------------------------------------------------------------------------------------------------
  150. * UI Callbacks (optional) */
  151. /**
  152. uiIdle.
  153. @TODO Document this.
  154. */
  155. virtual void uiIdle() {}
  156. #ifndef DGL_FILE_BROWSER_DISABLED
  157. /**
  158. File browser selected function.
  159. @see Window::fileBrowserSelected(const char*)
  160. */
  161. virtual void uiFileBrowserSelected(const char* filename);
  162. #endif
  163. /**
  164. OpenGL window reshape function, called when parent window is resized.
  165. You can reimplement this function for a custom OpenGL state.
  166. @see Window::onReshape(uint,uint)
  167. */
  168. virtual void uiReshape(uint width, uint height);
  169. /* --------------------------------------------------------------------------------------------------------
  170. * UI Resize Handling, internal */
  171. /**
  172. OpenGL widget resize function, called when the widget is resized.
  173. This is overriden here so the host knows when the UI is resized by you.
  174. @see Widget::onResize(const ResizeEvent&)
  175. */
  176. void onResize(const ResizeEvent& ev) override;
  177. #endif
  178. // -------------------------------------------------------------------------------------------------------
  179. private:
  180. struct PrivateData;
  181. PrivateData* const pData;
  182. friend class UIExporter;
  183. friend class UIExporterWindow;
  184. #ifdef HAVE_DGL
  185. // these should not be used
  186. void setAbsoluteX(int) const noexcept {}
  187. void setAbsoluteY(int) const noexcept {}
  188. void setAbsolutePos(int, int) const noexcept {}
  189. void setAbsolutePos(const DGL_NAMESPACE::Point<int>&) const noexcept {}
  190. #endif
  191. DISTRHO_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(UI)
  192. };
  193. /** @} */
  194. /* ------------------------------------------------------------------------------------------------------------
  195. * Create UI, entry point */
  196. /**
  197. @addtogroup EntryPoints
  198. @{
  199. */
  200. /**
  201. createUI.
  202. @TODO Document this.
  203. */
  204. extern UI* createUI();
  205. /** @} */
  206. // -----------------------------------------------------------------------------------------------------------
  207. END_NAMESPACE_DISTRHO
  208. #endif // DISTRHO_UI_HPP_INCLUDED