juicysfplugin/Source/TablesComponent.h
2021-09-07 14:05:56 +08:00

35 lines
621 B
C++

//
// Created by Alex Birch on 17/09/2017.
//
#pragma once
#include <JuceHeader.h>
#include "Pills.h"
#include "TableComponent.h"
#include "FluidSynthModel.h"
#include <memory>
#include <fluidsynth.h>
using namespace std;
class TablesComponent : public Component
{
public:
TablesComponent(
AudioProcessorValueTreeState& valueTreeState
);
void resized() override;
bool keyPressed(const KeyPress &key) override;
private:
AudioProcessorValueTreeState& valueTreeState;
Pills banks;
TableComponent presetTable;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TablesComponent)
};