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.

152 lines
5.4KB

  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. };
  54. //==============================================================================
  55. int getNumOpenDocuments() const;
  56. Document* getOpenDocument (int index) const;
  57. void clear();
  58. bool canOpenFile (const File& file);
  59. Document* openFile (Project* project, const File& file);
  60. bool closeDocument (int index, bool saveIfNeeded);
  61. bool closeDocument (Document* document, bool saveIfNeeded);
  62. bool closeAll (bool askUserToSave);
  63. bool closeAllDocumentsUsingProject (Project& project, bool saveIfNeeded);
  64. void closeFile (const File& f, bool saveIfNeeded);
  65. bool anyFilesNeedSaving() const;
  66. bool saveAll();
  67. FileBasedDocument::SaveResult saveIfNeededAndUserAgrees (Document* doc);
  68. void reloadModifiedFiles();
  69. void fileHasBeenRenamed (const File& oldFile, const File& newFile);
  70. //==============================================================================
  71. class DocumentCloseListener
  72. {
  73. public:
  74. DocumentCloseListener() {}
  75. virtual ~DocumentCloseListener() {}
  76. virtual void documentAboutToClose (Document* document) = 0;
  77. };
  78. void addListener (DocumentCloseListener* listener);
  79. void removeListener (DocumentCloseListener* listener);
  80. //==============================================================================
  81. class DocumentType
  82. {
  83. public:
  84. DocumentType() {}
  85. virtual ~DocumentType() {}
  86. virtual bool canOpenFile (const File& file) = 0;
  87. virtual Document* openFile (Project* project, const File& file) = 0;
  88. };
  89. void registerType (DocumentType* type);
  90. private:
  91. OwnedArray <DocumentType> types;
  92. OwnedArray <Document> documents;
  93. Array <DocumentCloseListener*> listeners;
  94. JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (OpenDocumentManager);
  95. };
  96. //==============================================================================
  97. class RecentDocumentList : private OpenDocumentManager::DocumentCloseListener
  98. {
  99. public:
  100. RecentDocumentList();
  101. ~RecentDocumentList();
  102. void clear();
  103. void newDocumentOpened (OpenDocumentManager::Document* document);
  104. OpenDocumentManager::Document* getCurrentDocument() const { return previousDocs.getLast(); }
  105. bool canGoToPrevious() const;
  106. bool canGoToNext() const;
  107. OpenDocumentManager::Document* getPrevious();
  108. OpenDocumentManager::Document* getNext();
  109. OpenDocumentManager::Document* getClosestPreviousDocOtherThan (OpenDocumentManager::Document* oneToAvoid) const;
  110. void restoreFromXML (Project& project, const XmlElement& xml);
  111. XmlElement* createXML() const;
  112. private:
  113. void documentAboutToClose (OpenDocumentManager::Document*);
  114. Array <OpenDocumentManager::Document*> previousDocs, nextDocs;
  115. };
  116. #endif // __JUCER_OPENDOCUMENTMANAGER_JUCEHEADER__