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.

302 lines
13KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2020 - Raw Material Software Limited
  5. JUCE is an open source library subject to commercial or open-source
  6. licensing.
  7. By using JUCE, you agree to the terms of both the JUCE 6 End-User License
  8. Agreement and JUCE Privacy Policy (both effective as of the 16th June 2020).
  9. End User License Agreement: www.juce.com/juce-6-licence
  10. Privacy Policy: www.juce.com/juce-privacy-policy
  11. Or: You may also use this code under the terms of the GPL v3 (see
  12. www.gnu.org/licenses).
  13. JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
  14. EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
  15. DISCLAIMED.
  16. ==============================================================================
  17. */
  18. namespace juce
  19. {
  20. //==============================================================================
  21. /**
  22. Manages the system's stack of modal components.
  23. Normally you'll just use the Component methods to invoke modal states in components,
  24. and won't have to deal with this class directly, but this is the singleton object that's
  25. used internally to manage the stack.
  26. @see Component::enterModalState, Component::exitModalState, Component::isCurrentlyModal,
  27. Component::getCurrentlyModalComponent, Component::isCurrentlyBlockedByAnotherModalComponent
  28. @tags{GUI}
  29. */
  30. class JUCE_API ModalComponentManager : private AsyncUpdater,
  31. private DeletedAtShutdown
  32. {
  33. public:
  34. //==============================================================================
  35. /** Receives callbacks when a modal component is dismissed.
  36. You can register a callback using Component::enterModalState() or
  37. ModalComponentManager::attachCallback().
  38. For some quick ways of creating callback objects, see the ModalCallbackFunction class.
  39. @see ModalCallbackFunction
  40. */
  41. class JUCE_API Callback
  42. {
  43. public:
  44. /** */
  45. Callback() = default;
  46. /** Destructor. */
  47. virtual ~Callback() = default;
  48. /** Called to indicate that a modal component has been dismissed.
  49. You can register a callback using Component::enterModalState() or
  50. ModalComponentManager::attachCallback().
  51. The returnValue parameter is the value that was passed to Component::exitModalState()
  52. when the component was dismissed.
  53. The callback object will be deleted shortly after this method is called.
  54. */
  55. virtual void modalStateFinished (int returnValue) = 0;
  56. };
  57. //==============================================================================
  58. #ifndef DOXYGEN
  59. JUCE_DECLARE_SINGLETON_SINGLETHREADED_MINIMAL (ModalComponentManager)
  60. #endif
  61. //==============================================================================
  62. /** Returns the number of components currently being shown modally.
  63. @see getModalComponent
  64. */
  65. int getNumModalComponents() const;
  66. /** Returns one of the components being shown modally.
  67. An index of 0 is the most recently-shown, topmost component.
  68. */
  69. Component* getModalComponent (int index) const;
  70. /** Returns true if the specified component is in a modal state. */
  71. bool isModal (const Component* component) const;
  72. /** Returns true if the specified component is currently the topmost modal component. */
  73. bool isFrontModalComponent (const Component* component) const;
  74. /** Adds a new callback that will be called when the specified modal component is dismissed.
  75. If the component is modal, then when it is dismissed, either by being hidden, or by calling
  76. Component::exitModalState(), then the Callback::modalStateFinished() method will be
  77. called.
  78. Each component can have any number of callbacks associated with it, and this one is added
  79. to that list.
  80. The object that is passed in will be deleted by the manager when it's no longer needed. If
  81. the given component is not currently modal, the callback object is deleted immediately and
  82. no action is taken.
  83. */
  84. void attachCallback (Component* component, Callback* callback);
  85. /** Brings any modal components to the front. */
  86. void bringModalComponentsToFront (bool topOneShouldGrabFocus = true);
  87. /** Calls exitModalState (0) on any components that are currently modal.
  88. @returns true if any components were modal; false if nothing needed cancelling
  89. */
  90. bool cancelAllModalComponents();
  91. #if JUCE_MODAL_LOOPS_PERMITTED
  92. /** Runs the event loop until the currently topmost modal component is dismissed, and
  93. returns the exit code for that component.
  94. */
  95. int runEventLoopForCurrentComponent();
  96. #endif
  97. protected:
  98. /** Creates a ModalComponentManager.
  99. You shouldn't ever call the constructor - it's a singleton, so use ModalComponentManager::getInstance()
  100. */
  101. ModalComponentManager();
  102. /** Destructor. */
  103. ~ModalComponentManager() override;
  104. /** @internal */
  105. void handleAsyncUpdate() override;
  106. private:
  107. //==============================================================================
  108. friend class Component;
  109. struct ModalItem;
  110. OwnedArray<ModalItem> stack;
  111. void startModal (Component*, bool autoDelete);
  112. void endModal (Component*, int returnValue);
  113. void endModal (Component*);
  114. JUCE_DECLARE_NON_COPYABLE (ModalComponentManager)
  115. };
  116. //==============================================================================
  117. /**
  118. This class provides some handy utility methods for creating ModalComponentManager::Callback
  119. objects that will invoke a static function with some parameters when a modal component is dismissed.
  120. @tags{GUI}
  121. */
  122. class JUCE_API ModalCallbackFunction
  123. {
  124. public:
  125. /** This is a utility function to create a ModalComponentManager::Callback that will
  126. call a lambda function.
  127. The lambda that you supply must take an integer parameter, which is the result code that
  128. was returned when the modal component was dismissed.
  129. @see ModalComponentManager::Callback
  130. */
  131. static ModalComponentManager::Callback* create (std::function<void (int)>);
  132. //==============================================================================
  133. /** This is a utility function to create a ModalComponentManager::Callback that will
  134. call a static function with a parameter.
  135. The function that you supply must take two parameters - the first being an int, which is
  136. the result code that was used when the modal component was dismissed, and the second
  137. can be a custom type. Note that this custom value will be copied and stored, so it must
  138. be a primitive type or a class that provides copy-by-value semantics.
  139. E.g. @code
  140. static void myCallbackFunction (int modalResult, double customValue)
  141. {
  142. if (modalResult == 1)
  143. doSomethingWith (customValue);
  144. }
  145. Component* someKindOfComp;
  146. ...
  147. someKindOfComp->enterModalState (true, ModalCallbackFunction::create (myCallbackFunction, 3.0));
  148. @endcode
  149. @see ModalComponentManager::Callback
  150. */
  151. template <typename ParamType>
  152. static ModalComponentManager::Callback* create (void (*functionToCall) (int, ParamType),
  153. ParamType parameterValue)
  154. {
  155. return create ([=] (int r) { functionToCall (r, parameterValue); });
  156. }
  157. //==============================================================================
  158. /** This is a utility function to create a ModalComponentManager::Callback that will
  159. call a static function with two custom parameters.
  160. The function that you supply must take three parameters - the first being an int, which is
  161. the result code that was used when the modal component was dismissed, and the next two are
  162. your custom types. Note that these custom values will be copied and stored, so they must
  163. be primitive types or classes that provide copy-by-value semantics.
  164. E.g. @code
  165. static void myCallbackFunction (int modalResult, double customValue1, String customValue2)
  166. {
  167. if (modalResult == 1)
  168. doSomethingWith (customValue1, customValue2);
  169. }
  170. Component* someKindOfComp;
  171. ...
  172. someKindOfComp->enterModalState (true, ModalCallbackFunction::create (myCallbackFunction, 3.0, String ("xyz")));
  173. @endcode
  174. @see ModalComponentManager::Callback
  175. */
  176. template <typename ParamType1, typename ParamType2>
  177. static ModalComponentManager::Callback* withParam (void (*functionToCall) (int, ParamType1, ParamType2),
  178. ParamType1 parameterValue1,
  179. ParamType2 parameterValue2)
  180. {
  181. return create ([=] (int r) { functionToCall (r, parameterValue1, parameterValue2); });
  182. }
  183. //==============================================================================
  184. /** This is a utility function to create a ModalComponentManager::Callback that will
  185. call a static function with a component.
  186. The function that you supply must take two parameters - the first being an int, which is
  187. the result code that was used when the modal component was dismissed, and the second
  188. can be a Component class. The component will be stored as a WeakReference, so that if it gets
  189. deleted before this callback is invoked, the pointer that is passed to the function will be null.
  190. E.g. @code
  191. static void myCallbackFunction (int modalResult, Slider* mySlider)
  192. {
  193. if (modalResult == 1 && mySlider != nullptr) // (must check that mySlider isn't null in case it was deleted..)
  194. mySlider->setValue (0.0);
  195. }
  196. Component* someKindOfComp;
  197. Slider* mySlider;
  198. ...
  199. someKindOfComp->enterModalState (true, ModalCallbackFunction::forComponent (myCallbackFunction, mySlider));
  200. @endcode
  201. @see ModalComponentManager::Callback
  202. */
  203. template <class ComponentType>
  204. static ModalComponentManager::Callback* forComponent (void (*functionToCall) (int, ComponentType*),
  205. ComponentType* component)
  206. {
  207. WeakReference<Component> comp (component);
  208. return create ([=] (int r) { functionToCall (r, static_cast<ComponentType*> (comp.get())); });
  209. }
  210. //==============================================================================
  211. /** Creates a ModalComponentManager::Callback that will call a static function with a component.
  212. The function that you supply must take three parameters - the first being an int, which is
  213. the result code that was used when the modal component was dismissed, the second being a Component
  214. class, and the third being a custom type (which must be a primitive type or have copy-by-value semantics).
  215. The component will be stored as a WeakReference, so that if it gets deleted before this callback is
  216. invoked, the pointer that is passed into the function will be null.
  217. E.g. @code
  218. static void myCallbackFunction (int modalResult, Slider* mySlider, String customParam)
  219. {
  220. if (modalResult == 1 && mySlider != nullptr) // (must check that mySlider isn't null in case it was deleted..)
  221. mySlider->setName (customParam);
  222. }
  223. Component* someKindOfComp;
  224. Slider* mySlider;
  225. ...
  226. someKindOfComp->enterModalState (true, ModalCallbackFunction::forComponent (myCallbackFunction, mySlider, String ("hello")));
  227. @endcode
  228. @see ModalComponentManager::Callback
  229. */
  230. template <class ComponentType, typename ParamType>
  231. static ModalComponentManager::Callback* forComponent (void (*functionToCall) (int, ComponentType*, ParamType),
  232. ComponentType* component,
  233. ParamType param)
  234. {
  235. WeakReference<Component> comp (component);
  236. return create ([=] (int r) { functionToCall (r, static_cast<ComponentType*> (comp.get()), param); });
  237. }
  238. private:
  239. ModalCallbackFunction() = delete;
  240. ~ModalCallbackFunction() = delete;
  241. };
  242. } // namespace juce