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_MultiDocumentPanel.h 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  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. #pragma once
  20. class MultiDocumentPanel;
  21. //==============================================================================
  22. /**
  23. This is a derivative of DocumentWindow that is used inside a MultiDocumentPanel
  24. component.
  25. It's like a normal DocumentWindow but has some extra functionality to make sure
  26. everything works nicely inside a MultiDocumentPanel.
  27. @see MultiDocumentPanel
  28. */
  29. class JUCE_API MultiDocumentPanelWindow : public DocumentWindow
  30. {
  31. public:
  32. //==============================================================================
  33. /**
  34. */
  35. MultiDocumentPanelWindow (Colour backgroundColour);
  36. /** Destructor. */
  37. ~MultiDocumentPanelWindow();
  38. //==============================================================================
  39. /** @internal */
  40. void maximiseButtonPressed() override;
  41. /** @internal */
  42. void closeButtonPressed() override;
  43. /** @internal */
  44. void activeWindowStatusChanged() override;
  45. /** @internal */
  46. void broughtToFront() override;
  47. private:
  48. //==============================================================================
  49. void updateOrder();
  50. MultiDocumentPanel* getOwner() const noexcept;
  51. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MultiDocumentPanelWindow)
  52. };
  53. //==============================================================================
  54. /**
  55. A component that contains a set of other components either in floating windows
  56. or tabs.
  57. This acts as a panel that can be used to hold a set of open document windows, with
  58. different layout modes.
  59. Use addDocument() and closeDocument() to add or remove components from the
  60. panel - never use any of the Component methods to access the panel's child
  61. components directly, as these are managed internally.
  62. */
  63. class JUCE_API MultiDocumentPanel : public Component,
  64. private ComponentListener
  65. {
  66. public:
  67. //==============================================================================
  68. /** Creates an empty panel.
  69. Use addDocument() and closeDocument() to add or remove components from the
  70. panel - never use any of the Component methods to access the panel's child
  71. components directly, as these are managed internally.
  72. */
  73. MultiDocumentPanel();
  74. /** Destructor.
  75. When deleted, this will call closeAllDocuments (false) to make sure all its
  76. components are deleted. If you need to make sure all documents are saved
  77. before closing, then you should call closeAllDocuments (true) and check that
  78. it returns true before deleting the panel.
  79. */
  80. ~MultiDocumentPanel();
  81. //==============================================================================
  82. /** Tries to close all the documents.
  83. If checkItsOkToCloseFirst is true, then the tryToCloseDocument() method will
  84. be called for each open document, and any of these calls fails, this method
  85. will stop and return false, leaving some documents still open.
  86. If checkItsOkToCloseFirst is false, then all documents will be closed
  87. unconditionally.
  88. @see closeDocument
  89. */
  90. bool closeAllDocuments (bool checkItsOkToCloseFirst);
  91. /** Adds a document component to the panel.
  92. If the number of documents would exceed the limit set by setMaximumNumDocuments() then
  93. this will fail and return false. (If it does fail, the component passed-in will not be
  94. deleted, even if deleteWhenRemoved was set to true).
  95. The MultiDocumentPanel will deal with creating a window border to go around your component,
  96. so just pass in the bare content component here, no need to give it a ResizableWindow
  97. or DocumentWindow.
  98. @param component the component to add
  99. @param backgroundColour the background colour to use to fill the component's
  100. window or tab
  101. @param deleteWhenRemoved if true, then when the component is removed by closeDocument()
  102. or closeAllDocuments(), then it will be deleted. If false, then
  103. the caller must handle the component's deletion
  104. */
  105. bool addDocument (Component* component,
  106. Colour backgroundColour,
  107. bool deleteWhenRemoved);
  108. /** Closes one of the documents.
  109. If checkItsOkToCloseFirst is true, then the tryToCloseDocument() method will
  110. be called, and if it fails, this method will return false without closing the
  111. document.
  112. If checkItsOkToCloseFirst is false, then the documents will be closed
  113. unconditionally.
  114. The component will be deleted if the deleteWhenRemoved parameter was set to
  115. true when it was added with addDocument.
  116. @see addDocument, closeAllDocuments
  117. */
  118. bool closeDocument (Component* component,
  119. bool checkItsOkToCloseFirst);
  120. /** Returns the number of open document windows.
  121. @see getDocument
  122. */
  123. int getNumDocuments() const noexcept;
  124. /** Returns one of the open documents.
  125. The order of the documents in this array may change when they are added, removed
  126. or moved around.
  127. @see getNumDocuments
  128. */
  129. Component* getDocument (int index) const noexcept;
  130. /** Returns the document component that is currently focused or on top.
  131. If currently using floating windows, then this will be the component in the currently
  132. active window, or the top component if none are active.
  133. If it's currently in tabbed mode, then it'll return the component in the active tab.
  134. @see setActiveDocument
  135. */
  136. Component* getActiveDocument() const noexcept;
  137. /** Makes one of the components active and brings it to the top.
  138. @see getActiveDocument
  139. */
  140. void setActiveDocument (Component* component);
  141. /** Callback which gets invoked when the currently-active document changes. */
  142. virtual void activeDocumentChanged();
  143. /** Sets a limit on how many windows can be open at once.
  144. If this is zero or less there's no limit (the default). addDocument() will fail
  145. if this number is exceeded.
  146. */
  147. void setMaximumNumDocuments (int maximumNumDocuments);
  148. /** Sets an option to make the document fullscreen if there's only one document open.
  149. If set to true, then if there's only one document, it'll fill the whole of this
  150. component without tabs or a window border. If false, then tabs or a window
  151. will always be shown, even if there's only one document. If there's more than
  152. one document open, then this option makes no difference.
  153. */
  154. void useFullscreenWhenOneDocument (bool shouldUseTabs);
  155. /** Returns the result of the last time useFullscreenWhenOneDocument() was called.
  156. */
  157. bool isFullscreenWhenOneDocument() const noexcept;
  158. //==============================================================================
  159. /** The different layout modes available. */
  160. enum LayoutMode
  161. {
  162. FloatingWindows, /**< In this mode, there are overlapping DocumentWindow components for each document. */
  163. MaximisedWindowsWithTabs /**< In this mode, a TabbedComponent is used to show one document at a time. */
  164. };
  165. /** Changes the panel's mode.
  166. @see LayoutMode, getLayoutMode
  167. */
  168. void setLayoutMode (LayoutMode newLayoutMode);
  169. /** Returns the current layout mode. */
  170. LayoutMode getLayoutMode() const noexcept { return mode; }
  171. /** Sets the background colour for the whole panel.
  172. Each document has its own background colour, but this is the one used to fill the areas
  173. behind them.
  174. */
  175. void setBackgroundColour (Colour newBackgroundColour);
  176. /** Returns the current background colour.
  177. @see setBackgroundColour
  178. */
  179. Colour getBackgroundColour() const noexcept { return backgroundColour; }
  180. /** If the panel is being used in tabbed mode, this returns the TabbedComponent that's involved. */
  181. TabbedComponent* getCurrentTabbedComponent() const noexcept { return tabComponent; }
  182. //==============================================================================
  183. /** A subclass must override this to say whether its currently ok for a document
  184. to be closed.
  185. This method is called by closeDocument() and closeAllDocuments() to indicate that
  186. a document should be saved if possible, ready for it to be closed.
  187. If this method returns true, then it means the document is ok and can be closed.
  188. If it returns false, then it means that the closeDocument() method should stop
  189. and not close.
  190. Normally, you'd use this method to ask the user if they want to save any changes,
  191. then return true if the save operation went ok. If the user cancelled the save
  192. operation you could return false here to abort the close operation.
  193. If your component is based on the FileBasedDocument class, then you'd probably want
  194. to call FileBasedDocument::saveIfNeededAndUserAgrees() and return true if this returned
  195. FileBasedDocument::savedOk
  196. @see closeDocument, FileBasedDocument::saveIfNeededAndUserAgrees()
  197. */
  198. virtual bool tryToCloseDocument (Component* component) = 0;
  199. /** Creates a new window to be used for a document.
  200. The default implementation of this just returns a basic MultiDocumentPanelWindow object,
  201. but you might want to override it to return a custom component.
  202. */
  203. virtual MultiDocumentPanelWindow* createNewDocumentWindow();
  204. //==============================================================================
  205. /** @internal */
  206. void paint (Graphics&) override;
  207. /** @internal */
  208. void resized() override;
  209. /** @internal */
  210. void componentNameChanged (Component&) override;
  211. private:
  212. //==============================================================================
  213. LayoutMode mode;
  214. Array <Component*> components;
  215. ScopedPointer<TabbedComponent> tabComponent;
  216. Colour backgroundColour;
  217. int maximumNumDocuments, numDocsBeforeTabsUsed;
  218. class TabbedComponentInternal;
  219. friend class MultiDocumentPanelWindow;
  220. friend class TabbedComponentInternal;
  221. Component* getContainerComp (Component*) const;
  222. void updateOrder();
  223. void addWindow (Component*);
  224. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MultiDocumentPanel)
  225. };