juicysfplugin/Source/PluginEditor.h

55 lines
1.6 KiB
C
Raw Normal View History

2018-02-27 08:17:12 +08:00
/*
==============================================================================
This file was auto-generated!
It contains the basic framework code for a JUCE plugin editor.
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
#include "PluginProcessor.h"
2018-02-27 08:25:20 +08:00
#include "TablesComponent.h"
#include "SurjectiveMidiKeyboardComponent.h"
#include "FilePicker.h"
#include "StateChangeSubscriber.h"
2018-02-27 08:17:12 +08:00
//==============================================================================
/**
*/
class JuicySFAudioProcessorEditor : public AudioProcessorEditor/*,
public StateChangeSubscriber*/
2018-02-27 08:17:12 +08:00
{
public:
2018-02-28 07:34:22 +08:00
JuicySFAudioProcessorEditor (JuicySFAudioProcessor&);
~JuicySFAudioProcessorEditor();
2018-02-27 08:17:12 +08:00
//==============================================================================
void paint (Graphics&) override;
void resized() override;
2018-02-27 08:25:20 +08:00
bool keyPressed(const KeyPress &key) override;
bool keyStateChanged (bool isKeyDown) override;
// void getStateInformation (XmlElement& xml) override;
// void setStateInformation (XmlElement* xmlState) override;
const FilePicker& getFilePicker();
2018-02-27 08:17:12 +08:00
private:
// This reference is provided as a quick way for your editor to
// access the processor object that created it.
2018-02-27 08:39:50 +08:00
JuicySFAudioProcessor& processor;
2018-02-27 08:25:20 +08:00
SurjectiveMidiKeyboardComponent midiKeyboard;
TablesComponent tablesComponent;
FilePicker filePicker;
bool focusInitialized;
2018-02-27 08:17:12 +08:00
2018-02-28 07:34:22 +08:00
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (JuicySFAudioProcessorEditor)
2018-02-27 08:17:12 +08:00
};