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.

97 lines
3.7KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-9 by Raw Material Software Ltd.
  5. ------------------------------------------------------------------------------
  6. JUCE can be redistributed and/or modified under the terms of the GNU General
  7. Public License (Version 2), as published by the Free Software Foundation.
  8. A copy of the license is included in the JUCE distribution, or can be found
  9. online at www.gnu.org/licenses.
  10. JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
  11. WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  13. ------------------------------------------------------------------------------
  14. To release a closed-source product which uses JUCE, commercial licenses are
  15. available: visit www.rawmaterialsoftware.com/juce for more information.
  16. ==============================================================================
  17. */
  18. #ifndef __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__
  19. #define __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__
  20. #include "../model/jucer_Project.h"
  21. #include "../model/jucer_DrawableDocument.h"
  22. class DocumentEditorComponent;
  23. //==============================================================================
  24. /**
  25. */
  26. class OpenDocumentManager
  27. {
  28. public:
  29. //==============================================================================
  30. OpenDocumentManager();
  31. ~OpenDocumentManager();
  32. juce_DeclareSingleton_SingleThreaded_Minimal (OpenDocumentManager);
  33. //==============================================================================
  34. class Document
  35. {
  36. public:
  37. Document() {}
  38. virtual ~Document() {}
  39. virtual bool loadedOk() const = 0;
  40. virtual bool isForFile (const File& file) const = 0;
  41. virtual bool isForNode (const ValueTree& node) const = 0;
  42. virtual bool refersToProject (Project& project) const = 0;
  43. virtual const String getName() const = 0;
  44. virtual const String getType() const = 0;
  45. virtual bool needsSaving() const = 0;
  46. virtual bool save() = 0;
  47. virtual bool hasFileBeenModifiedExternally() = 0;
  48. virtual void reloadFromFile() = 0;
  49. virtual Component* createEditor() = 0;
  50. };
  51. Document* getDocumentForFile (Project* project, const File& file);
  52. bool canOpenFile (const File& file);
  53. //==============================================================================
  54. int getNumOpenDocuments() const;
  55. Document* getOpenDocument (int index) const;
  56. void moveDocumentToTopOfStack (Document* doc);
  57. bool closeDocument (int index, bool saveIfNeeded);
  58. bool closeDocument (Document* document, bool saveIfNeeded);
  59. bool closeAllDocumentsUsingProject (Project& project, bool saveIfNeeded);
  60. void closeFile (const File& f, bool saveIfNeeded);
  61. bool anyFilesNeedSaving() const;
  62. bool saveAll();
  63. FileBasedDocument::SaveResult saveIfNeededAndUserAgrees (Document* doc);
  64. void reloadModifiedFiles();
  65. //==============================================================================
  66. void registerEditor (DocumentEditorComponent* editor);
  67. void deregisterEditor (DocumentEditorComponent* editor);
  68. //==============================================================================
  69. juce_UseDebuggingNewOperator
  70. private:
  71. OwnedArray <Document> documents;
  72. SortedSet <DocumentEditorComponent*> editors;
  73. };
  74. #endif // __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__