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.

121 lines
4.3KB

  1. /*
  2. ==============================================================================
  3. This file is part of the JUCE library - "Jules' Utility Class Extensions"
  4. Copyright 2004-11 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 "../Project/jucer_Project.h"
  21. //==============================================================================
  22. /**
  23. */
  24. class OpenDocumentManager
  25. {
  26. public:
  27. //==============================================================================
  28. OpenDocumentManager();
  29. ~OpenDocumentManager();
  30. juce_DeclareSingleton_SingleThreaded_Minimal (OpenDocumentManager);
  31. //==============================================================================
  32. class Document
  33. {
  34. public:
  35. Document() {}
  36. virtual ~Document() {}
  37. virtual bool loadedOk() const = 0;
  38. virtual bool isForFile (const File& file) const = 0;
  39. virtual bool isForNode (const ValueTree& node) const = 0;
  40. virtual bool refersToProject (Project& project) const = 0;
  41. virtual String getName() const = 0;
  42. virtual String getType() const = 0;
  43. virtual bool needsSaving() const = 0;
  44. virtual bool save() = 0;
  45. virtual bool hasFileBeenModifiedExternally() = 0;
  46. virtual void reloadFromFile() = 0;
  47. virtual Component* createEditor() = 0;
  48. virtual Component* createViewer() = 0;
  49. virtual void fileHasBeenRenamed (const File& newFile) = 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. void fileHasBeenRenamed (const File& oldFile, const File& newFile);
  66. //==============================================================================
  67. class DocumentCloseListener
  68. {
  69. public:
  70. DocumentCloseListener() {}
  71. virtual ~DocumentCloseListener() {}
  72. virtual void documentAboutToClose (Document* document) = 0;
  73. };
  74. void addListener (DocumentCloseListener* listener);
  75. void removeListener (DocumentCloseListener* listener);
  76. //==============================================================================
  77. class DocumentType
  78. {
  79. public:
  80. DocumentType() {}
  81. virtual ~DocumentType() {}
  82. virtual bool canOpenFile (const File& file) = 0;
  83. virtual Document* openFile (Project* project, const File& file) = 0;
  84. };
  85. void registerType (DocumentType* type);
  86. private:
  87. OwnedArray <DocumentType> types;
  88. OwnedArray <Document> documents;
  89. Array <DocumentCloseListener*> listeners;
  90. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OpenDocumentManager);
  91. };
  92. #endif // __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__