- clean working copy for leaving SVN
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
/*
|
||||
==============================================================================
|
||||
|
||||
This file was auto-generated by the Jucer!
|
||||
|
||||
It contains the basic startup code for a Juce application.
|
||||
|
||||
==============================================================================
|
||||
*/
|
||||
|
||||
#ifndef __PLUGINEDITOR_H_4ACCBAA__
|
||||
#define __PLUGINEDITOR_H_4ACCBAA__
|
||||
|
||||
#include "../JuceLibraryCode/JuceHeader.h"
|
||||
#include "PluginProcessor.h"
|
||||
|
||||
|
||||
//==============================================================================
|
||||
/** This is the editor component that our filter will display.
|
||||
*/
|
||||
class JuceDemoPluginAudioProcessorEditor : public AudioProcessorEditor,
|
||||
public SliderListener,
|
||||
public Timer
|
||||
{
|
||||
public:
|
||||
JuceDemoPluginAudioProcessorEditor (JuceDemoPluginAudioProcessor&);
|
||||
~JuceDemoPluginAudioProcessorEditor();
|
||||
|
||||
//==============================================================================
|
||||
void timerCallback() override;
|
||||
void paint (Graphics&) override;
|
||||
void resized() override;
|
||||
void sliderValueChanged (Slider*) override;
|
||||
|
||||
private:
|
||||
MidiKeyboardComponent midiKeyboard;
|
||||
Label infoLabel, gainLabel, delayLabel;
|
||||
Slider gainSlider, delaySlider;
|
||||
ScopedPointer<ResizableCornerComponent> resizer;
|
||||
ComponentBoundsConstrainer resizeLimits;
|
||||
|
||||
AudioPlayHead::CurrentPositionInfo lastDisplayedPosition;
|
||||
|
||||
JuceDemoPluginAudioProcessor& getProcessor() const
|
||||
{
|
||||
return static_cast<JuceDemoPluginAudioProcessor&> (processor);
|
||||
}
|
||||
|
||||
void displayPositionInfo (const AudioPlayHead::CurrentPositionInfo& pos);
|
||||
};
|
||||
|
||||
|
||||
#endif // __PLUGINEDITOR_H_4ACCBAA__
|
||||
Reference in New Issue
Block a user