mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
540 lines
16 KiB
C++
540 lines
16 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE library.
|
|
Copyright (c) 2013 - Raw Material Software Ltd.
|
|
|
|
Permission is granted to use this software under the terms of either:
|
|
a) the GPL v2 (or any later version)
|
|
b) the Affero GPL v3
|
|
|
|
Details of these licenses can be found at: www.gnu.org/licenses
|
|
|
|
JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
|
|
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
------------------------------------------------------------------------------
|
|
|
|
To release a closed-source product which uses JUCE, commercial licenses are
|
|
available: visit www.juce.com for more information.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#include "../jucer_Headers.h"
|
|
#include "../Application/jucer_Application.h"
|
|
|
|
//==============================================================================
|
|
String createAlphaNumericUID()
|
|
{
|
|
String uid;
|
|
const char chars[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
|
|
Random r;
|
|
|
|
uid << chars [r.nextInt (52)]; // make sure the first character is always a letter
|
|
|
|
for (int i = 5; --i >= 0;)
|
|
{
|
|
r.setSeedRandomly();
|
|
uid << chars [r.nextInt (62)];
|
|
}
|
|
|
|
return uid;
|
|
}
|
|
|
|
String hexString8Digits (int value)
|
|
{
|
|
return String::toHexString (value).paddedLeft ('0', 8);
|
|
}
|
|
|
|
String createGUID (const String& seed)
|
|
{
|
|
const String hex (MD5 ((seed + "_guidsalt").toUTF8()).toHexString().toUpperCase());
|
|
|
|
return "{" + hex.substring (0, 8)
|
|
+ "-" + hex.substring (8, 12)
|
|
+ "-" + hex.substring (12, 16)
|
|
+ "-" + hex.substring (16, 20)
|
|
+ "-" + hex.substring (20, 32)
|
|
+ "}";
|
|
}
|
|
|
|
String escapeSpaces (const String& s)
|
|
{
|
|
return s.replace (" ", "\\ ");
|
|
}
|
|
|
|
String addQuotesIfContainsSpaces (const String& text)
|
|
{
|
|
return (text.containsChar (' ') && ! text.isQuotedString()) ? text.quoted() : text;
|
|
}
|
|
|
|
void setValueIfVoid (Value value, const var& defaultValue)
|
|
{
|
|
if (value.getValue().isVoid())
|
|
value = defaultValue;
|
|
}
|
|
|
|
//==============================================================================
|
|
StringPairArray parsePreprocessorDefs (const String& text)
|
|
{
|
|
StringPairArray result;
|
|
String::CharPointerType s (text.getCharPointer());
|
|
|
|
while (! s.isEmpty())
|
|
{
|
|
String token, value;
|
|
s = s.findEndOfWhitespace();
|
|
|
|
while ((! s.isEmpty()) && *s != '=' && ! s.isWhitespace())
|
|
token << s.getAndAdvance();
|
|
|
|
s = s.findEndOfWhitespace();
|
|
|
|
if (*s == '=')
|
|
{
|
|
++s;
|
|
|
|
s = s.findEndOfWhitespace();
|
|
|
|
while ((! s.isEmpty()) && ! s.isWhitespace())
|
|
{
|
|
if (*s == ',')
|
|
{
|
|
++s;
|
|
break;
|
|
}
|
|
|
|
if (*s == '\\' && (s[1] == ' ' || s[1] == ','))
|
|
++s;
|
|
|
|
value << s.getAndAdvance();
|
|
}
|
|
}
|
|
|
|
if (token.isNotEmpty())
|
|
result.set (token, value);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
StringPairArray mergePreprocessorDefs (StringPairArray inheritedDefs, const StringPairArray& overridingDefs)
|
|
{
|
|
for (int i = 0; i < overridingDefs.size(); ++i)
|
|
inheritedDefs.set (overridingDefs.getAllKeys()[i], overridingDefs.getAllValues()[i]);
|
|
|
|
return inheritedDefs;
|
|
}
|
|
|
|
String createGCCPreprocessorFlags (const StringPairArray& defs)
|
|
{
|
|
String s;
|
|
|
|
for (int i = 0; i < defs.size(); ++i)
|
|
{
|
|
String def (defs.getAllKeys()[i]);
|
|
const String value (defs.getAllValues()[i]);
|
|
if (value.isNotEmpty())
|
|
def << "=" << value;
|
|
|
|
if (! def.endsWithChar ('"'))
|
|
def = def.quoted();
|
|
|
|
s += " -D " + def;
|
|
}
|
|
|
|
return s;
|
|
}
|
|
|
|
String replacePreprocessorDefs (const StringPairArray& definitions, String sourceString)
|
|
{
|
|
for (int i = 0; i < definitions.size(); ++i)
|
|
{
|
|
const String key (definitions.getAllKeys()[i]);
|
|
const String value (definitions.getAllValues()[i]);
|
|
|
|
sourceString = sourceString.replace ("${" + key + "}", value);
|
|
}
|
|
|
|
return sourceString;
|
|
}
|
|
|
|
StringArray getSearchPathsFromString (const String& searchPath)
|
|
{
|
|
StringArray s;
|
|
s.addTokens (searchPath, ";\r\n", StringRef());
|
|
return getCleanedStringArray (s);
|
|
}
|
|
|
|
StringArray getCommaOrWhitespaceSeparatedItems (const String& sourceString)
|
|
{
|
|
StringArray s;
|
|
s.addTokens (sourceString, ", \t\r\n", StringRef());
|
|
return getCleanedStringArray (s);
|
|
}
|
|
|
|
StringArray getCleanedStringArray (StringArray s)
|
|
{
|
|
s.trim();
|
|
s.removeEmptyStrings();
|
|
s.removeDuplicates (false);
|
|
return s;
|
|
}
|
|
|
|
void addPlistDictionaryKey (XmlElement* xml, const String& key, const String& value)
|
|
{
|
|
forEachXmlChildElementWithTagName (*xml, e, "key")
|
|
{
|
|
if (e->getAllSubText().trim().equalsIgnoreCase (key))
|
|
{
|
|
if (e->getNextElement() != nullptr && e->getNextElement()->hasTagName ("key"))
|
|
{
|
|
// try to fix broken plist format..
|
|
xml->removeChildElement (e, true);
|
|
break;
|
|
}
|
|
|
|
return; // (value already exists)
|
|
}
|
|
}
|
|
|
|
xml->createNewChildElement ("key")->addTextElement (key);
|
|
xml->createNewChildElement ("string")->addTextElement (value);
|
|
}
|
|
|
|
void addPlistDictionaryKeyBool (XmlElement* xml, const String& key, const bool value)
|
|
{
|
|
xml->createNewChildElement ("key")->addTextElement (key);
|
|
xml->createNewChildElement (value ? "true" : "false");
|
|
}
|
|
|
|
void addPlistDictionaryKeyInt (XmlElement* xml, const String& key, int value)
|
|
{
|
|
xml->createNewChildElement ("key")->addTextElement (key);
|
|
xml->createNewChildElement ("integer")->addTextElement (String (value));
|
|
}
|
|
|
|
//==============================================================================
|
|
void autoScrollForMouseEvent (const MouseEvent& e, bool scrollX, bool scrollY)
|
|
{
|
|
if (Viewport* const viewport = e.eventComponent->findParentComponentOfClass<Viewport>())
|
|
{
|
|
const MouseEvent e2 (e.getEventRelativeTo (viewport));
|
|
viewport->autoScroll (scrollX ? e2.x : 20, scrollY ? e2.y : 20, 8, 16);
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
int indexOfLineStartingWith (const StringArray& lines, const String& text, int index)
|
|
{
|
|
const int len = text.length();
|
|
|
|
for (const String* i = lines.begin() + index, * const e = lines.end(); i < e; ++i)
|
|
{
|
|
if (CharacterFunctions::compareUpTo (i->getCharPointer().findEndOfWhitespace(),
|
|
text.getCharPointer(), len) == 0)
|
|
return index;
|
|
|
|
++index;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
//==============================================================================
|
|
RolloverHelpComp::RolloverHelpComp()
|
|
: lastComp (nullptr)
|
|
{
|
|
setInterceptsMouseClicks (false, false);
|
|
startTimer (150);
|
|
}
|
|
|
|
void RolloverHelpComp::paint (Graphics& g)
|
|
{
|
|
AttributedString s;
|
|
s.setJustification (Justification::centredLeft);
|
|
s.append (lastTip, Font (14.0f), findColour (mainBackgroundColourId).contrasting (0.7f));
|
|
|
|
TextLayout tl;
|
|
tl.createLayoutWithBalancedLineLengths (s, getWidth() - 10.0f);
|
|
if (tl.getNumLines() > 3)
|
|
tl.createLayout (s, getWidth() - 10.0f);
|
|
|
|
tl.draw (g, getLocalBounds().toFloat());
|
|
}
|
|
|
|
void RolloverHelpComp::timerCallback()
|
|
{
|
|
Component* newComp = Desktop::getInstance().getMainMouseSource().getComponentUnderMouse();
|
|
|
|
if (newComp != nullptr
|
|
&& (newComp->getTopLevelComponent() != getTopLevelComponent()
|
|
|| newComp->isCurrentlyBlockedByAnotherModalComponent()))
|
|
newComp = nullptr;
|
|
|
|
if (newComp != lastComp)
|
|
{
|
|
lastComp = newComp;
|
|
|
|
String newTip (findTip (newComp));
|
|
|
|
if (newTip != lastTip)
|
|
{
|
|
lastTip = newTip;
|
|
repaint();
|
|
}
|
|
}
|
|
}
|
|
|
|
String RolloverHelpComp::findTip (Component* c)
|
|
{
|
|
while (c != nullptr)
|
|
{
|
|
if (TooltipClient* const tc = dynamic_cast <TooltipClient*> (c))
|
|
{
|
|
const String tip (tc->getTooltip());
|
|
|
|
if (tip.isNotEmpty())
|
|
return tip;
|
|
}
|
|
|
|
c = c->getParentComponent();
|
|
}
|
|
|
|
return String::empty;
|
|
}
|
|
|
|
//==============================================================================
|
|
class UTF8Component : public Component,
|
|
private TextEditorListener
|
|
{
|
|
public:
|
|
UTF8Component()
|
|
: desc (String::empty,
|
|
"Type any string into the box, and it'll be shown below as a portable UTF-8 literal, "
|
|
"ready to cut-and-paste into your source-code...")
|
|
{
|
|
desc.setJustificationType (Justification::centred);
|
|
desc.setColour (Label::textColourId, Colours::white);
|
|
addAndMakeVisible (desc);
|
|
|
|
const Colour bkgd (Colours::white.withAlpha (0.6f));
|
|
|
|
userText.setMultiLine (true, true);
|
|
userText.setReturnKeyStartsNewLine (true);
|
|
userText.setColour (TextEditor::backgroundColourId, bkgd);
|
|
addAndMakeVisible (userText);
|
|
userText.addListener (this);
|
|
|
|
resultText.setFont (getAppSettings().appearance.getCodeFont().withHeight (13.0f));
|
|
resultText.setMultiLine (true, true);
|
|
resultText.setColour (TextEditor::backgroundColourId, bkgd);
|
|
resultText.setReadOnly (true);
|
|
resultText.setSelectAllWhenFocused (true);
|
|
addAndMakeVisible (resultText);
|
|
|
|
userText.setText (getLastText());
|
|
}
|
|
|
|
void textEditorTextChanged (TextEditor&)
|
|
{
|
|
update();
|
|
}
|
|
|
|
void textEditorEscapeKeyPressed (TextEditor&)
|
|
{
|
|
getTopLevelComponent()->exitModalState (0);
|
|
}
|
|
|
|
void update()
|
|
{
|
|
getLastText() = userText.getText();
|
|
resultText.setText (CodeHelpers::stringLiteral (getLastText(), 100), false);
|
|
}
|
|
|
|
void resized()
|
|
{
|
|
Rectangle<int> r (getLocalBounds().reduced (8));
|
|
desc.setBounds (r.removeFromTop (44));
|
|
r.removeFromTop (8);
|
|
userText.setBounds (r.removeFromTop (r.getHeight() / 2));
|
|
r.removeFromTop (8);
|
|
resultText.setBounds (r);
|
|
}
|
|
|
|
private:
|
|
Label desc;
|
|
TextEditor userText, resultText;
|
|
|
|
String& getLastText()
|
|
{
|
|
static String t;
|
|
return t;
|
|
}
|
|
};
|
|
|
|
void showUTF8ToolWindow (ScopedPointer<Component>& ownerPointer)
|
|
{
|
|
if (ownerPointer != nullptr)
|
|
{
|
|
ownerPointer->toFront (true);
|
|
}
|
|
else
|
|
{
|
|
new FloatingToolWindow ("UTF-8 String Literal Converter",
|
|
"utf8WindowPos",
|
|
new UTF8Component(), ownerPointer,
|
|
500, 500,
|
|
300, 300, 1000, 1000);
|
|
}
|
|
}
|
|
|
|
//==============================================================================
|
|
class SVGPathDataComponent : public Component,
|
|
private TextEditorListener
|
|
{
|
|
public:
|
|
SVGPathDataComponent()
|
|
: desc (String::empty,
|
|
"Paste an SVG path string into the top box, and it'll be converted to some C++ "
|
|
"code that will load it as a Path object..")
|
|
{
|
|
desc.setJustificationType (Justification::centred);
|
|
desc.setColour (Label::textColourId, Colours::white);
|
|
addAndMakeVisible (desc);
|
|
|
|
const Colour bkgd (Colours::white.withAlpha (0.6f));
|
|
|
|
userText.setFont (getAppSettings().appearance.getCodeFont().withHeight (13.0f));
|
|
userText.setMultiLine (true, true);
|
|
userText.setReturnKeyStartsNewLine (true);
|
|
userText.setColour (TextEditor::backgroundColourId, bkgd);
|
|
addAndMakeVisible (userText);
|
|
userText.addListener (this);
|
|
|
|
resultText.setFont (getAppSettings().appearance.getCodeFont().withHeight (13.0f));
|
|
resultText.setMultiLine (true, true);
|
|
resultText.setColour (TextEditor::backgroundColourId, bkgd);
|
|
resultText.setReadOnly (true);
|
|
resultText.setSelectAllWhenFocused (true);
|
|
addAndMakeVisible (resultText);
|
|
|
|
userText.setText (getLastText());
|
|
}
|
|
|
|
void textEditorTextChanged (TextEditor&)
|
|
{
|
|
update();
|
|
}
|
|
|
|
void textEditorEscapeKeyPressed (TextEditor&)
|
|
{
|
|
getTopLevelComponent()->exitModalState (0);
|
|
}
|
|
|
|
void update()
|
|
{
|
|
getLastText() = userText.getText();
|
|
|
|
path = Drawable::parseSVGPath (getLastText().trim().unquoted().trim());
|
|
|
|
String result = "No path generated.. Not a valid SVG path string?";
|
|
|
|
if (! path.isEmpty())
|
|
{
|
|
MemoryOutputStream data;
|
|
path.writePathToStream (data);
|
|
|
|
MemoryOutputStream out;
|
|
|
|
out << "static const unsigned char pathData[] = ";
|
|
CodeHelpers::writeDataAsCppLiteral (data.getMemoryBlock(), out, false, true);
|
|
out << newLine
|
|
<< newLine
|
|
<< "Path path;" << newLine
|
|
<< "path.loadPathFromData (pathData, sizeof (pathData));" << newLine;
|
|
|
|
result = out.toString();
|
|
}
|
|
|
|
resultText.setText (result, false);
|
|
repaint (previewPathArea);
|
|
}
|
|
|
|
void resized()
|
|
{
|
|
Rectangle<int> r (getLocalBounds().reduced (8));
|
|
desc.setBounds (r.removeFromTop (44));
|
|
r.removeFromTop (8);
|
|
userText.setBounds (r.removeFromTop (r.getHeight() / 2));
|
|
r.removeFromTop (8);
|
|
previewPathArea = r.removeFromRight (r.getHeight());
|
|
resultText.setBounds (r);
|
|
}
|
|
|
|
void paint (Graphics& g)
|
|
{
|
|
g.setColour (Colours::white);
|
|
g.fillPath (path, path.getTransformToScaleToFit (previewPathArea.reduced (4).toFloat(), true));
|
|
}
|
|
|
|
private:
|
|
Label desc;
|
|
TextEditor userText, resultText;
|
|
Rectangle<int> previewPathArea;
|
|
Path path;
|
|
|
|
String& getLastText()
|
|
{
|
|
static String t;
|
|
return t;
|
|
}
|
|
};
|
|
|
|
void showSVGPathDataToolWindow (ScopedPointer<Component>& ownerPointer)
|
|
{
|
|
if (ownerPointer != nullptr)
|
|
ownerPointer->toFront (true);
|
|
else
|
|
new FloatingToolWindow ("SVG Path Converter",
|
|
"svgPathWindowPos",
|
|
new SVGPathDataComponent(), ownerPointer,
|
|
500, 500,
|
|
300, 300, 1000, 1000);
|
|
}
|
|
|
|
//==============================================================================
|
|
class AsyncCommandRetrier : public Timer
|
|
{
|
|
public:
|
|
AsyncCommandRetrier (const ApplicationCommandTarget::InvocationInfo& inf)
|
|
: info (inf)
|
|
{
|
|
info.originatingComponent = nullptr;
|
|
startTimer (500);
|
|
}
|
|
|
|
void timerCallback() override
|
|
{
|
|
stopTimer();
|
|
IntrojucerApp::getCommandManager().invoke (info, true);
|
|
delete this;
|
|
}
|
|
|
|
ApplicationCommandTarget::InvocationInfo info;
|
|
|
|
JUCE_DECLARE_NON_COPYABLE (AsyncCommandRetrier)
|
|
};
|
|
|
|
bool reinvokeCommandAfterCancellingModalComps (const ApplicationCommandTarget::InvocationInfo& info)
|
|
{
|
|
if (ModalComponentManager::getInstance()->cancelAllModalComponents())
|
|
{
|
|
new AsyncCommandRetrier (info);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|