juicysfplugin/Source/PluginEditor.cpp

137 lines
4.3 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.
==============================================================================
*/
#include "PluginProcessor.h"
#include "PluginEditor.h"
//==============================================================================
2018-02-28 07:34:22 +08:00
JuicySFAudioProcessorEditor::JuicySFAudioProcessorEditor (JuicySFAudioProcessor& p)
2018-02-27 08:25:20 +08:00
: AudioProcessorEditor (&p),
processor (p),
midiKeyboard (p.keyboardState, SurjectiveMidiKeyboardComponent::horizontalKeyboard),
tablesComponent(p.getFluidSynthModel()),
filePicker(p.getFluidSynthModel())
2018-02-27 08:17:12 +08:00
{
2018-02-27 08:25:20 +08:00
// set resize limits for this plug-in
setResizeLimits (400, 300, 800, 600);
setSize (p.lastUIWidth, p.lastUIHeight);
// processor.subscribeToStateChanges(this);
2018-02-27 08:25:20 +08:00
midiKeyboard.setName ("MIDI Keyboard");
midiKeyboard.setWantsKeyboardFocus(false);
tablesComponent.setWantsKeyboardFocus(false);
setWantsKeyboardFocus(true);
addAndMakeVisible (midiKeyboard);
addAndMakeVisible(tablesComponent);
addAndMakeVisible(filePicker);
2018-02-27 08:17:12 +08:00
}
2018-02-28 07:34:22 +08:00
JuicySFAudioProcessorEditor::~JuicySFAudioProcessorEditor()
2018-02-27 08:17:12 +08:00
{
// processor.unsubscribeFromStateChanges(this);
}
//void JuicySFAudioProcessorEditor::getStateInformation (XmlElement& xml) {
// // save
// xml.setAttribute ("uiWidth", getWidth());
// xml.setAttribute ("uiHeight", getHeight());
//}
//
//void JuicySFAudioProcessorEditor::setStateInformation (XmlElement* xmlState) {
// // load
// setSize (xmlState->getIntAttribute ("uiWidth", getWidth()),
// xmlState->getIntAttribute ("uiHeight", getHeight()));
//}
2018-02-27 08:17:12 +08:00
//==============================================================================
2018-02-28 07:34:22 +08:00
void JuicySFAudioProcessorEditor::paint (Graphics& g)
2018-02-27 08:17:12 +08:00
{
// (Our component is opaque, so we must completely fill the background with a solid colour)
g.fillAll (getLookAndFeel().findColour (ResizableWindow::backgroundColourId));
2018-02-27 08:25:20 +08:00
// g.setColour (Colours::white);
// g.setFont (15.0f);
// g.drawFittedText ("Hello World!", getLocalBounds(), Justification::centred, 1);
if (!focusInitialized) {
if (!hasKeyboardFocus(false) && isVisible()) {
grabKeyboardFocus();
}
if (getCurrentlyFocusedComponent() == this) {
focusInitialized = true;
}
}
2018-02-27 08:17:12 +08:00
}
2018-02-28 07:34:22 +08:00
void JuicySFAudioProcessorEditor::resized()
2018-02-27 08:17:12 +08:00
{
2018-02-27 08:25:20 +08:00
const int padding = 8;
const int pianoHeight = 70;
const int filePickerHeight = 25;
Rectangle<int> r (getLocalBounds());
filePicker.setBounds(r.removeFromTop(filePickerHeight + padding).reduced(padding, 0).withTrimmedTop(padding));
midiKeyboard.setBounds (r.removeFromBottom (pianoHeight).reduced(padding, 0));
tablesComponent.setBounds(r.reduced(0, padding));
processor.lastUIWidth = getWidth();
processor.lastUIHeight = getHeight();
2018-02-27 08:25:20 +08:00
// Rectangle<int> r2 (getLocalBounds());
// r2.reduce(0, padding);
// r2.removeFromBottom(pianoHeight);
// r2.removeFromTop(filePickerHeight);
// tablesComponent.setBounds (r2);
//
// Rectangle<int> r3 (getLocalBounds());
// r3.removeFromTop(filePickerHeight);
//
// filePicker.setBounds(r3);
2018-02-27 08:17:12 +08:00
}
2018-02-27 08:25:20 +08:00
2018-02-28 07:34:22 +08:00
bool JuicySFAudioProcessorEditor::keyPressed(const KeyPress &key) {
2018-02-27 08:25:20 +08:00
// if (!hasKeyboardFocus(false))
// return false;
// if (key.getKeyCode() == KeyPress::upKey){
// }
// cout << "hey\n";
const int cursorKeys[] = {
KeyPress::leftKey,
KeyPress::rightKey,
KeyPress::upKey,
KeyPress::downKey
};
if (any_of(
begin(cursorKeys),
end(cursorKeys),
[&](int i) { return i == key.getKeyCode(); }
)) {
return tablesComponent.keyPressed(key);
} else {
return midiKeyboard.keyPressed(key);
}
// for(auto childComponent : getChildren()) {
// if (childComponent->keyPressed(key)) return true;
// }
return false;
}
2018-02-28 07:34:22 +08:00
bool JuicySFAudioProcessorEditor::keyStateChanged (bool isKeyDown) {
2018-02-27 08:25:20 +08:00
return midiKeyboard.keyStateChanged(isKeyDown);
// for(auto childComponent : getChildren()) {
// if (childComponent->keyStateChanged(isKeyDown)) return true;
// }
// return false;
}