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.

juce_ModalComponentManager.h 15KB

9 years ago
10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376
  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library.
  4. Copyright (c) 2015 - ROLI Ltd.
  5. Permission is granted to use this software under the terms of either:
  6. a) the GPL v2 (or any later version)
  7. b) the Affero GPL v3
  8. Details of these licenses can be found at: www.gnu.org/licenses
  9. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  10. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  11. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  12. ------------------------------------------------------------------------------
  13. To release a closed-source product which uses JUCE, commercial licenses are
  14. available: visit www.juce.com for more information.
  15. ==============================================================================
  16. */
  17. #ifndef JUCE_MODALCOMPONENTMANAGER_H_INCLUDED
  18. #define JUCE_MODALCOMPONENTMANAGER_H_INCLUDED
  19. //==============================================================================
  20. /**
  21. Manages the system's stack of modal components.
  22. Normally you'll just use the Component methods to invoke modal states in components,
  23. and won't have to deal with this class directly, but this is the singleton object that's
  24. used internally to manage the stack.
  25. @see Component::enterModalState, Component::exitModalState, Component::isCurrentlyModal,
  26. Component::getCurrentlyModalComponent, Component::isCurrentlyBlockedByAnotherModalComponent
  27. */
  28. class JUCE_API ModalComponentManager : private AsyncUpdater,
  29. private DeletedAtShutdown
  30. {
  31. public:
  32. //==============================================================================
  33. /** Receives callbacks when a modal component is dismissed.
  34. You can register a callback using Component::enterModalState() or
  35. ModalComponentManager::attachCallback().
  36. For some quick ways of creating callback objects, see the ModalCallbackFunction class.
  37. @see ModalCallbackFunction
  38. */
  39. class Callback
  40. {
  41. public:
  42. /** */
  43. Callback() {}
  44. /** Destructor. */
  45. virtual ~Callback() {}
  46. /** Called to indicate that a modal component has been dismissed.
  47. You can register a callback using Component::enterModalState() or
  48. ModalComponentManager::attachCallback().
  49. The returnValue parameter is the value that was passed to Component::exitModalState()
  50. when the component was dismissed.
  51. The callback object will be deleted shortly after this method is called.
  52. */
  53. virtual void modalStateFinished (int returnValue) = 0;
  54. };
  55. //==============================================================================
  56. juce_DeclareSingleton_SingleThreaded_Minimal (ModalComponentManager)
  57. //==============================================================================
  58. /** Returns the number of components currently being shown modally.
  59. @see getModalComponent
  60. */
  61. int getNumModalComponents() const;
  62. /** Returns one of the components being shown modally.
  63. An index of 0 is the most recently-shown, topmost component.
  64. */
  65. Component* getModalComponent (int index) const;
  66. /** Returns true if the specified component is in a modal state. */
  67. bool isModal (Component* component) const;
  68. /** Returns true if the specified component is currently the topmost modal component. */
  69. bool isFrontModalComponent (Component* component) const;
  70. /** Adds a new callback that will be called when the specified modal component is dismissed.
  71. If the component is modal, then when it is dismissed, either by being hidden, or by calling
  72. Component::exitModalState(), then the Callback::modalStateFinished() method will be
  73. called.
  74. Each component can have any number of callbacks associated with it, and this one is added
  75. to that list.
  76. The object that is passed in will be deleted by the manager when it's no longer needed. If
  77. the given component is not currently modal, the callback object is deleted immediately and
  78. no action is taken.
  79. */
  80. void attachCallback (Component* component, Callback* callback);
  81. /** Brings any modal components to the front. */
  82. void bringModalComponentsToFront (bool topOneShouldGrabFocus = true);
  83. /** Calls exitModalState (0) on any components that are currently modal.
  84. @returns true if any components were modal; false if nothing needed cancelling
  85. */
  86. bool cancelAllModalComponents();
  87. #if JUCE_MODAL_LOOPS_PERMITTED
  88. /** Runs the event loop until the currently topmost modal component is dismissed, and
  89. returns the exit code for that component.
  90. */
  91. int runEventLoopForCurrentComponent();
  92. #endif
  93. protected:
  94. /** Creates a ModalComponentManager.
  95. You shouldn't ever call the constructor - it's a singleton, so use ModalComponentManager::getInstance()
  96. */
  97. ModalComponentManager();
  98. /** Destructor. */
  99. ~ModalComponentManager();
  100. /** @internal */
  101. void handleAsyncUpdate() override;
  102. private:
  103. //==============================================================================
  104. class ModalItem;
  105. class ReturnValueRetriever;
  106. friend class Component;
  107. friend struct ContainerDeletePolicy<ModalItem>;
  108. OwnedArray<ModalItem> stack;
  109. void startModal (Component*, bool autoDelete);
  110. void endModal (Component*, int returnValue);
  111. void endModal (Component*);
  112. JUCE_DECLARE_NON_COPYABLE (ModalComponentManager)
  113. };
  114. //==============================================================================
  115. /**
  116. This class provides some handy utility methods for creating ModalComponentManager::Callback
  117. objects that will invoke a static function with some parameters when a modal component is dismissed.
  118. */
  119. class ModalCallbackFunction
  120. {
  121. public:
  122. //==============================================================================
  123. /** This is a utility function to create a ModalComponentManager::Callback that will
  124. call a static function with a parameter.
  125. The function that you supply must take two parameters - the first being an int, which is
  126. the result code that was used when the modal component was dismissed, and the second
  127. can be a custom type. Note that this custom value will be copied and stored, so it must
  128. be a primitive type or a class that provides copy-by-value semantics.
  129. E.g. @code
  130. static void myCallbackFunction (int modalResult, double customValue)
  131. {
  132. if (modalResult == 1)
  133. doSomethingWith (customValue);
  134. }
  135. Component* someKindOfComp;
  136. ...
  137. someKindOfComp->enterModalState (ModalCallbackFunction::create (myCallbackFunction, 3.0));
  138. @endcode
  139. @see ModalComponentManager::Callback
  140. */
  141. template <typename ParamType>
  142. static ModalComponentManager::Callback* create (void (*functionToCall) (int, ParamType),
  143. ParamType parameterValue)
  144. {
  145. return new FunctionCaller1<ParamType> (functionToCall, parameterValue);
  146. }
  147. #if JUCE_COMPILER_SUPPORTS_LAMBDAS
  148. /** This is a utility function to create a ModalComponentManager::Callback that will
  149. call a lambda function.
  150. The lambda that you supply must take an integer parameter, which is the result code that
  151. was returned when the modal component was dismissed.
  152. @see ModalComponentManager::Callback
  153. */
  154. static ModalComponentManager::Callback* create (std::function<void(int)>);
  155. #endif
  156. //==============================================================================
  157. /** This is a utility function to create a ModalComponentManager::Callback that will
  158. call a static function with two custom parameters.
  159. The function that you supply must take three parameters - the first being an int, which is
  160. the result code that was used when the modal component was dismissed, and the next two are
  161. your custom types. Note that these custom values will be copied and stored, so they must
  162. be primitive types or classes that provide copy-by-value semantics.
  163. E.g. @code
  164. static void myCallbackFunction (int modalResult, double customValue1, String customValue2)
  165. {
  166. if (modalResult == 1)
  167. doSomethingWith (customValue1, customValue2);
  168. }
  169. Component* someKindOfComp;
  170. ...
  171. someKindOfComp->enterModalState (ModalCallbackFunction::create (myCallbackFunction, 3.0, String ("xyz")));
  172. @endcode
  173. @see ModalComponentManager::Callback
  174. */
  175. template <typename ParamType1, typename ParamType2>
  176. static ModalComponentManager::Callback* withParam (void (*functionToCall) (int, ParamType1, ParamType2),
  177. ParamType1 parameterValue1,
  178. ParamType2 parameterValue2)
  179. {
  180. return new FunctionCaller2<ParamType1, ParamType2> (functionToCall, parameterValue1, parameterValue2);
  181. }
  182. //==============================================================================
  183. /** This is a utility function to create a ModalComponentManager::Callback that will
  184. call a static function with a component.
  185. The function that you supply must take two parameters - the first being an int, which is
  186. the result code that was used when the modal component was dismissed, and the second
  187. can be a Component class. The component will be stored as a WeakReference, so that if it gets
  188. deleted before this callback is invoked, the pointer that is passed to the function will be null.
  189. E.g. @code
  190. static void myCallbackFunction (int modalResult, Slider* mySlider)
  191. {
  192. if (modalResult == 1 && mySlider != nullptr) // (must check that mySlider isn't null in case it was deleted..)
  193. mySlider->setValue (0.0);
  194. }
  195. Component* someKindOfComp;
  196. Slider* mySlider;
  197. ...
  198. someKindOfComp->enterModalState (ModalCallbackFunction::forComponent (myCallbackFunction, mySlider));
  199. @endcode
  200. @see ModalComponentManager::Callback
  201. */
  202. template <class ComponentType>
  203. static ModalComponentManager::Callback* forComponent (void (*functionToCall) (int, ComponentType*),
  204. ComponentType* component)
  205. {
  206. return new ComponentCaller1<ComponentType> (functionToCall, component);
  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. return new ComponentCaller2<ComponentType, ParamType> (functionToCall, component, param);
  234. }
  235. private:
  236. //==============================================================================
  237. template <typename ParamType>
  238. struct FunctionCaller1 : public ModalComponentManager::Callback
  239. {
  240. typedef void (*FunctionType) (int, ParamType);
  241. FunctionCaller1 (FunctionType& f, ParamType& p1)
  242. : function (f), param (p1) {}
  243. void modalStateFinished (int returnValue) override { function (returnValue, param); }
  244. private:
  245. const FunctionType function;
  246. ParamType param;
  247. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (FunctionCaller1)
  248. };
  249. template <typename ParamType1, typename ParamType2>
  250. struct FunctionCaller2 : public ModalComponentManager::Callback
  251. {
  252. typedef void (*FunctionType) (int, ParamType1, ParamType2);
  253. FunctionCaller2 (FunctionType& f, ParamType1& p1, ParamType2& p2)
  254. : function (f), param1 (p1), param2 (p2) {}
  255. void modalStateFinished (int returnValue) override { function (returnValue, param1, param2); }
  256. private:
  257. const FunctionType function;
  258. ParamType1 param1;
  259. ParamType2 param2;
  260. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (FunctionCaller2)
  261. };
  262. template <typename ComponentType>
  263. struct ComponentCaller1 : public ModalComponentManager::Callback
  264. {
  265. typedef void (*FunctionType) (int, ComponentType*);
  266. ComponentCaller1 (FunctionType& f, ComponentType* c)
  267. : function (f), comp (c) {}
  268. void modalStateFinished (int returnValue) override
  269. {
  270. function (returnValue, static_cast<ComponentType*> (comp.get()));
  271. }
  272. private:
  273. const FunctionType function;
  274. WeakReference<Component> comp;
  275. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ComponentCaller1)
  276. };
  277. template <typename ComponentType, typename ParamType1>
  278. struct ComponentCaller2 : public ModalComponentManager::Callback
  279. {
  280. typedef void (*FunctionType) (int, ComponentType*, ParamType1);
  281. ComponentCaller2 (FunctionType& f, ComponentType* c, ParamType1 p1)
  282. : function (f), comp (c), param1 (p1) {}
  283. void modalStateFinished (int returnValue) override
  284. {
  285. function (returnValue, static_cast<ComponentType*> (comp.get()), param1);
  286. }
  287. private:
  288. const FunctionType function;
  289. WeakReference<Component> comp;
  290. ParamType1 param1;
  291. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ComponentCaller2)
  292. };
  293. ModalCallbackFunction();
  294. ~ModalCallbackFunction();
  295. JUCE_DECLARE_NON_COPYABLE (ModalCallbackFunction)
  296. };
  297. #endif // JUCE_MODALCOMPONENTMANAGER_H_INCLUDED