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.

153 lines
5.5KB

  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. //==============================================================================
  31. class Document
  32. {
  33. public:
  34. Document() {}
  35. virtual ~Document() {}
  36. virtual bool loadedOk() const = 0;
  37. virtual bool isForFile (const File& file) const = 0;
  38. virtual bool isForNode (const ValueTree& node) const = 0;
  39. virtual bool refersToProject (Project& project) const = 0;
  40. virtual Project* getProject() const = 0;
  41. virtual String getName() const = 0;
  42. virtual String getType() const = 0;
  43. virtual File getFile() const = 0;
  44. virtual bool needsSaving() const = 0;
  45. virtual bool save() = 0;
  46. virtual bool hasFileBeenModifiedExternally() = 0;
  47. virtual void reloadFromFile() = 0;
  48. virtual Component* createEditor() = 0;
  49. virtual Component* createViewer() = 0;
  50. virtual void fileHasBeenRenamed (const File& newFile) = 0;
  51. virtual String getState() const = 0;
  52. virtual void restoreState (const String& state) = 0;
  53. virtual File getCounterpartFile() const { return File::nonexistent; }
  54. };
  55. //==============================================================================
  56. int getNumOpenDocuments() const;
  57. Document* getOpenDocument (int index) const;
  58. void clear();
  59. bool canOpenFile (const File& file);
  60. Document* openFile (Project* project, const File& file);
  61. bool closeDocument (int index, bool saveIfNeeded);
  62. bool closeDocument (Document* document, bool saveIfNeeded);
  63. bool closeAll (bool askUserToSave);
  64. bool closeAllDocumentsUsingProject (Project& project, bool saveIfNeeded);
  65. void closeFile (const File& f, bool saveIfNeeded);
  66. bool anyFilesNeedSaving() const;
  67. bool saveAll();
  68. FileBasedDocument::SaveResult saveIfNeededAndUserAgrees (Document* doc);
  69. void reloadModifiedFiles();
  70. void fileHasBeenRenamed (const File& oldFile, const File& newFile);
  71. //==============================================================================
  72. class DocumentCloseListener
  73. {
  74. public:
  75. DocumentCloseListener() {}
  76. virtual ~DocumentCloseListener() {}
  77. virtual void documentAboutToClose (Document* document) = 0;
  78. };
  79. void addListener (DocumentCloseListener* listener);
  80. void removeListener (DocumentCloseListener* listener);
  81. //==============================================================================
  82. class DocumentType
  83. {
  84. public:
  85. DocumentType() {}
  86. virtual ~DocumentType() {}
  87. virtual bool canOpenFile (const File& file) = 0;
  88. virtual Document* openFile (Project* project, const File& file) = 0;
  89. };
  90. void registerType (DocumentType* type);
  91. private:
  92. OwnedArray <DocumentType> types;
  93. OwnedArray <Document> documents;
  94. Array <DocumentCloseListener*> listeners;
  95. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OpenDocumentManager);
  96. };
  97. //==============================================================================
  98. class RecentDocumentList : private OpenDocumentManager::DocumentCloseListener
  99. {
  100. public:
  101. RecentDocumentList();
  102. ~RecentDocumentList();
  103. void clear();
  104. void newDocumentOpened (OpenDocumentManager::Document* document);
  105. OpenDocumentManager::Document* getCurrentDocument() const { return previousDocs.getLast(); }
  106. bool canGoToPrevious() const;
  107. bool canGoToNext() const;
  108. OpenDocumentManager::Document* getPrevious();
  109. OpenDocumentManager::Document* getNext();
  110. OpenDocumentManager::Document* getClosestPreviousDocOtherThan (OpenDocumentManager::Document* oneToAvoid) const;
  111. void restoreFromXML (Project& project, const XmlElement& xml);
  112. XmlElement* createXML() const;
  113. private:
  114. void documentAboutToClose (OpenDocumentManager::Document*);
  115. Array <OpenDocumentManager::Document*> previousDocs, nextDocs;
  116. };
  117. #endif // __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__