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

Projucer: Removed the live build

This commit is contained in:
Tom Poole 2021-05-14 08:18:19 +01:00
parent 64896eefcd
commit bfdda737a2
74 changed files with 673 additions and 7583 deletions

View file

@ -112,37 +112,6 @@ private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleMeter)
};
#if JUCE_PROJUCER_LIVE_BUILD
// Animate the meter in the Projucer live build.
struct MockSimpleMeter : public Component,
private Timer
{
MockSimpleMeter()
{
addAndMakeVisible (meter);
resized();
startTimerHz (100);
}
void paint (Graphics&) override {}
void resized() override
{
meter.setBounds (getBounds());
}
void timerCallback() override
{
meter.update (std::pow (randomNumberGenerator.nextFloat(), 2));
}
SimpleMeter meter;
Random randomNumberGenerator;
};
#endif
//==============================================================================
// A simple Inter-App Audio plug-in with a gain control and some meters.
class IAAEffectProcessor : public AudioProcessor