The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

298 lines
13KB

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