mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
284 lines
9.1 KiB
C++
284 lines
9.1 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.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#include "jucer_HeaderComponent.h"
|
|
|
|
#include "../../Application/jucer_Application.h"
|
|
|
|
#include "../../ProjectSaving/jucer_ProjectExporter.h"
|
|
#include "../../Project/UI/jucer_ProjectContentComponent.h"
|
|
|
|
//==============================================================================
|
|
HeaderComponent::HeaderComponent (ProjectContentComponent* pcc)
|
|
: projectContentComponent (pcc)
|
|
{
|
|
setTitle ("Header");
|
|
setFocusContainerType (FocusContainerType::focusContainer);
|
|
|
|
addAndMakeVisible (configLabel);
|
|
addAndMakeVisible (exporterBox);
|
|
|
|
exporterBox.onChange = [this] { updateExporterButton(); };
|
|
|
|
juceIcon.setImage (ImageCache::getFromMemory (BinaryData::juce_icon_png, BinaryData::juce_icon_pngSize), RectanglePlacement::centred);
|
|
addAndMakeVisible (juceIcon);
|
|
|
|
projectNameLabel.setText ({}, dontSendNotification);
|
|
addAndMakeVisible (projectNameLabel);
|
|
|
|
initialiseButtons();
|
|
}
|
|
|
|
//==============================================================================
|
|
void HeaderComponent::resized()
|
|
{
|
|
auto bounds = getLocalBounds();
|
|
configLabel.setFont (FontOptions { (float) bounds.getHeight() / 3.0f });
|
|
|
|
{
|
|
auto headerBounds = bounds.removeFromLeft (tabsWidth);
|
|
|
|
const int buttonSize = 25;
|
|
auto buttonBounds = headerBounds.removeFromRight (buttonSize);
|
|
|
|
projectSettingsButton.setBounds (buttonBounds.removeFromBottom (buttonSize).reduced (2));
|
|
|
|
juceIcon.setBounds (headerBounds.removeFromLeft (headerBounds.getHeight()).reduced (2));
|
|
|
|
headerBounds.removeFromRight (5);
|
|
projectNameLabel.setBounds (headerBounds);
|
|
}
|
|
|
|
{
|
|
auto exporterWidth = jmin (400, bounds.getWidth() / 2);
|
|
Rectangle<int> exporterBounds (0, 0, exporterWidth, bounds.getHeight());
|
|
|
|
exporterBounds.setCentre (bounds.getCentre());
|
|
|
|
saveAndOpenInIDEButton.setBounds (exporterBounds.removeFromRight (exporterBounds.getHeight()).reduced (2));
|
|
|
|
exporterBounds.removeFromRight (5);
|
|
exporterBox.setBounds (exporterBounds.removeFromBottom (roundToInt ((float) exporterBounds.getHeight() / 1.8f)));
|
|
configLabel.setBounds (exporterBounds);
|
|
}
|
|
}
|
|
|
|
void HeaderComponent::paint (Graphics& g)
|
|
{
|
|
g.fillAll (findColour (backgroundColourId));
|
|
}
|
|
|
|
//==============================================================================
|
|
void HeaderComponent::setCurrentProject (Project* newProject)
|
|
{
|
|
stopTimer();
|
|
repaint();
|
|
|
|
projectNameLabel.setText ({}, dontSendNotification);
|
|
|
|
project = newProject;
|
|
|
|
if (project != nullptr)
|
|
{
|
|
exportersTree = project->getExporters();
|
|
exportersTree.addListener (this);
|
|
updateExporters();
|
|
|
|
projectNameValue.referTo (project->getProjectValue (Ids::name));
|
|
projectNameValue.addListener (this);
|
|
updateName();
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
void HeaderComponent::updateExporters()
|
|
{
|
|
auto selectedExporter = getSelectedExporter();
|
|
|
|
exporterBox.clear();
|
|
|
|
int i = 0;
|
|
|
|
for (Project::ExporterIterator exporter (*project); exporter.next(); ++i)
|
|
{
|
|
const auto exporterName = exporter->getUniqueName();
|
|
const auto id = i + 1;
|
|
exporterBox.addItem (exporterName, id);
|
|
|
|
if (selectedExporter != nullptr && exporterName == selectedExporter->getUniqueName())
|
|
exporterBox.setSelectedId (id);
|
|
}
|
|
|
|
const auto preferredExporterIndex = std::invoke ([&]
|
|
{
|
|
std::vector<ProjectExporter::ExporterTypeInfo> infos;
|
|
ProjectExporter::getCurrentPlatformExporterTypeInfos (infos);
|
|
|
|
for (const auto& info : infos)
|
|
{
|
|
int index = 0;
|
|
|
|
for (Project::ExporterIterator exporter (*project); exporter.next(); ++index)
|
|
{
|
|
if (exporter->getUniqueName().contains (info.displayName))
|
|
return index;
|
|
}
|
|
}
|
|
|
|
if (exporterBox.getSelectedItemIndex() == -1)
|
|
{
|
|
int index = 0;
|
|
|
|
for (Project::ExporterIterator exporter (*project); exporter.next(); ++index)
|
|
{
|
|
if (exporter->canLaunchProject())
|
|
return index;
|
|
}
|
|
}
|
|
|
|
return -1;
|
|
});
|
|
|
|
if (exporterBox.getSelectedItemIndex() == -1)
|
|
exporterBox.setSelectedItemIndex (preferredExporterIndex != -1 ? preferredExporterIndex : 0);
|
|
|
|
updateExporterButton();
|
|
}
|
|
|
|
std::unique_ptr<ProjectExporter> HeaderComponent::getSelectedExporter() const
|
|
{
|
|
if (project != nullptr)
|
|
{
|
|
int i = 0;
|
|
auto selectedIndex = exporterBox.getSelectedItemIndex();
|
|
|
|
for (Project::ExporterIterator exporter (*project); exporter.next();)
|
|
if (i++ == selectedIndex)
|
|
return std::move (exporter.exporter);
|
|
}
|
|
|
|
return nullptr;
|
|
}
|
|
|
|
bool HeaderComponent::canCurrentExporterLaunchProject() const
|
|
{
|
|
if (project != nullptr)
|
|
{
|
|
if (auto selectedExporter = getSelectedExporter())
|
|
{
|
|
for (Project::ExporterIterator exporter (*project); exporter.next();)
|
|
if (exporter->canLaunchProject() && exporter->getUniqueName() == selectedExporter->getUniqueName())
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
//==============================================================================
|
|
void HeaderComponent::sidebarTabsWidthChanged (int newWidth)
|
|
{
|
|
tabsWidth = newWidth;
|
|
resized();
|
|
}
|
|
|
|
void HeaderComponent::valueChanged (Value&)
|
|
{
|
|
updateName();
|
|
}
|
|
|
|
void HeaderComponent::timerCallback()
|
|
{
|
|
repaint();
|
|
}
|
|
|
|
//==============================================================================
|
|
void HeaderComponent::initialiseButtons()
|
|
{
|
|
addAndMakeVisible (projectSettingsButton);
|
|
projectSettingsButton.onClick = [this] { projectContentComponent->showProjectSettings(); };
|
|
|
|
addAndMakeVisible (saveAndOpenInIDEButton);
|
|
saveAndOpenInIDEButton.setBackgroundColour (Colours::white);
|
|
saveAndOpenInIDEButton.setIconInset (7);
|
|
saveAndOpenInIDEButton.onClick = [this]
|
|
{
|
|
if (project == nullptr)
|
|
return;
|
|
|
|
if (! project->isSaveAndExportDisabled())
|
|
{
|
|
projectContentComponent->openInSelectedIDE (true);
|
|
return;
|
|
}
|
|
|
|
auto setWarningVisible = [this] (const Identifier& identifier)
|
|
{
|
|
auto child = project->getProjectMessages().getChildWithName (ProjectMessages::Ids::warning)
|
|
.getChildWithName (identifier);
|
|
|
|
if (child.isValid())
|
|
child.setProperty (ProjectMessages::Ids::isVisible, true, nullptr);
|
|
};
|
|
|
|
if (project->isFileModificationCheckPending())
|
|
setWarningVisible (ProjectMessages::Ids::jucerFileModified);
|
|
};
|
|
|
|
updateExporterButton();
|
|
}
|
|
|
|
void HeaderComponent::updateName()
|
|
{
|
|
if (project != nullptr)
|
|
projectNameLabel.setText (project->getDocumentTitle(), dontSendNotification);
|
|
}
|
|
|
|
void HeaderComponent::updateExporterButton()
|
|
{
|
|
if (auto selectedExporter = getSelectedExporter())
|
|
{
|
|
auto selectedName = selectedExporter->getUniqueName();
|
|
|
|
for (auto info : ProjectExporter::getExporterTypeInfos())
|
|
{
|
|
if (selectedName.contains (info.displayName))
|
|
{
|
|
saveAndOpenInIDEButton.setImage (info.icon);
|
|
saveAndOpenInIDEButton.repaint();
|
|
saveAndOpenInIDEButton.setEnabled (canCurrentExporterLaunchProject());
|
|
}
|
|
}
|
|
}
|
|
}
|