1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-23 01:44:22 +00:00

New classes: Reverb and ReverbAudioSource. Fixes for component alpha levels, mac file chooser, MemoryInputStream.

This commit is contained in:
Julian Storer 2011-05-23 18:17:03 +01:00
parent 94b07cb09b
commit e6f64740d9
36 changed files with 1170 additions and 258 deletions

View file

@ -1823,7 +1823,7 @@ void Component::paintComponent (Graphics& g)
paint (imG);
}
g.setColour (Colours::black.withAlpha (getAlpha()));
g.setColour (Colours::black);
g.drawImageAt (bufferedImage, 0, 0);
}
else
@ -1914,9 +1914,9 @@ void Component::paintEntireComponent (Graphics& g, const bool ignoreAlphaLevel)
{
jassert (! g.isClipEmpty());
#if JUCE_DEBUG
#if JUCE_DEBUG
flags.isInsidePaintCall = true;
#endif
#endif
if (effect != nullptr)
{
@ -1943,9 +1943,9 @@ void Component::paintEntireComponent (Graphics& g, const bool ignoreAlphaLevel)
paintComponentAndChildren (g);
}
#if JUCE_DEBUG
#if JUCE_DEBUG
flags.isInsidePaintCall = false;
#endif
#endif
}
void Component::setPaintingIsUnclipped (const bool shouldPaintWithoutClipping) noexcept