kopia lustrzana https://github.com/jameshball/osci-render
20 wiersze
523 B
C++
20 wiersze
523 B
C++
#pragma once
|
|
#include <JuceHeader.h>
|
|
|
|
#include "AboutComponent.h"
|
|
#include "MainMenuBarModel.h"
|
|
|
|
class OscirenderAudioProcessorEditor;
|
|
class OscirenderAudioProcessor;
|
|
class OsciMainMenuBarModel : public MainMenuBarModel {
|
|
public:
|
|
OsciMainMenuBarModel(OscirenderAudioProcessor& p, OscirenderAudioProcessorEditor& editor);
|
|
void openSyphonInputDialog();
|
|
void disconnectSyphonInput();
|
|
void resetMenuItems();
|
|
|
|
private:
|
|
OscirenderAudioProcessor& audioProcessor;
|
|
OscirenderAudioProcessorEditor& editor;
|
|
};
|