Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
==============================================================================
This file was auto-generated by the Jucer!
It contains the basic outline for a simple desktop window.
==============================================================================
*/
#ifndef __MAINWINDOW_H_BA75E17__
#define __MAINWINDOW_H_BA75E17__
#include "../JuceLibraryCode/JuceHeader.h"
#include "UI/UIComponent.h"
#include "Audio/AudioComponent.h"
#include "Processors/ProcessorGraph.h"
//==============================================================================
class MainWindow : public DocumentWindow
{
public:
//==============================================================================
MainWindow();
~MainWindow();
void closeButtonPressed();
private:
//==============================================================================
void saveWindowBounds();
void loadWindowBounds();
// ScopedPointer <UIComponent> uiComponent;
AudioComponent* audioComponent;
ProcessorGraph* processorGraph;
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MainWindow)
};
#endif // __MAINWINDOW_H_BA75E17__