mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
161 lines
6.2 KiB
C++
161 lines
6.2 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "../../CodeEditor/jucer_OpenDocumentManager.h"
|
|
#include "jucer_HeaderComponent.h"
|
|
#include "jucer_ProjectMessagesComponent.h"
|
|
#include "jucer_ContentViewComponent.h"
|
|
|
|
class Sidebar;
|
|
struct WizardHolder;
|
|
|
|
//==============================================================================
|
|
class ProjectContentComponent final : public Component,
|
|
public ApplicationCommandTarget,
|
|
private ChangeListener,
|
|
private OpenDocumentManager::DocumentCloseListener
|
|
{
|
|
public:
|
|
//==============================================================================
|
|
ProjectContentComponent();
|
|
~ProjectContentComponent() override;
|
|
|
|
Project* getProject() const noexcept { return project; }
|
|
void setProject (Project*);
|
|
|
|
void saveOpenDocumentList();
|
|
void reloadLastOpenDocuments();
|
|
|
|
bool showEditorForFile (const File&, bool grabFocus);
|
|
bool hasFileInRecentList (const File&) const;
|
|
File getCurrentFile() const;
|
|
|
|
bool showDocument (OpenDocumentManager::Document*, bool grabFocus);
|
|
void hideDocument (OpenDocumentManager::Document*);
|
|
OpenDocumentManager::Document* getCurrentDocument() const { return currentDocument; }
|
|
void closeDocument();
|
|
void saveDocumentAsync();
|
|
void saveAsAsync();
|
|
|
|
void hideEditor();
|
|
void setScrollableEditorComponent (std::unique_ptr<Component> component);
|
|
void setEditorDocument (std::unique_ptr<Component> component, OpenDocumentManager::Document* doc);
|
|
Component* getEditorComponent();
|
|
|
|
Component& getSidebarComponent();
|
|
|
|
bool goToPreviousFile();
|
|
bool goToNextFile();
|
|
bool canGoToCounterpart() const;
|
|
bool goToCounterpart();
|
|
|
|
void saveProjectAsync();
|
|
void closeProject();
|
|
void openInSelectedIDE (bool saveFirst);
|
|
void showNewExporterMenu();
|
|
|
|
void showFilesPanel() { showProjectPanel (0); }
|
|
void showModulesPanel() { showProjectPanel (1); }
|
|
void showExportersPanel() { showProjectPanel (2); }
|
|
|
|
void showProjectSettings();
|
|
void showCurrentExporterSettings();
|
|
void showExporterSettings (const String& exporterName);
|
|
void showModule (const String& moduleID);
|
|
|
|
void deleteSelectedTreeItems();
|
|
|
|
void refreshProjectTreeFileStatuses();
|
|
void updateMissingFileStatuses();
|
|
|
|
void showBubbleMessage (Rectangle<int>, const String&);
|
|
|
|
StringArray getExportersWhichCanLaunch() const;
|
|
|
|
static void getSelectedProjectItemsBeingDragged (const DragAndDropTarget::SourceDetails&,
|
|
OwnedArray<Project::Item>& selectedNodes);
|
|
|
|
//==============================================================================
|
|
ApplicationCommandTarget* getNextCommandTarget() override;
|
|
void getAllCommands (Array<CommandID>&) override;
|
|
void getCommandInfo (CommandID, ApplicationCommandInfo&) override;
|
|
bool perform (const InvocationInfo&) override;
|
|
|
|
bool isSaveCommand (CommandID);
|
|
|
|
void paint (Graphics&) override;
|
|
void resized() override;
|
|
void childBoundsChanged (Component*) override;
|
|
void lookAndFeelChanged() override;
|
|
|
|
ProjectMessagesComponent& getProjectMessagesComponent() { return projectMessagesComponent; }
|
|
|
|
static String getProjectTabName() { return "Project"; }
|
|
|
|
private:
|
|
//==============================================================================
|
|
bool documentAboutToClose (OpenDocumentManager::Document*) override;
|
|
void changeListenerCallback (ChangeBroadcaster*) override;
|
|
void showTranslationTool();
|
|
|
|
//==============================================================================
|
|
void showProjectPanel (int index);
|
|
bool canSelectedProjectBeLaunch();
|
|
|
|
//==============================================================================
|
|
Project* project = nullptr;
|
|
OpenDocumentManager::Document* currentDocument = nullptr;
|
|
RecentDocumentList recentDocumentList;
|
|
|
|
HeaderComponent headerComponent { this };
|
|
std::unique_ptr<Sidebar> sidebar;
|
|
ProjectMessagesComponent projectMessagesComponent;
|
|
ContentViewComponent contentViewComponent;
|
|
|
|
std::unique_ptr<ResizableEdgeComponent> resizerBar;
|
|
ComponentBoundsConstrainer sidebarSizeConstrainer;
|
|
std::unique_ptr<Component> translationTool;
|
|
BubbleMessageComponent bubbleMessage;
|
|
|
|
bool isForeground = false;
|
|
int lastViewedTab = 0;
|
|
|
|
std::unique_ptr<WizardHolder> wizardHolder;
|
|
ScopedMessageBox messageBox;
|
|
|
|
//==============================================================================
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (ProjectContentComponent)
|
|
};
|