|
1 |
| -/* |
2 |
| - ============================================================================== |
3 |
| -
|
4 |
| - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
5 |
| - * Copyright � 2017 Armando Montanez * |
6 |
| - * * |
7 |
| - * This file is part of SimpleSide. * |
8 |
| - * * |
9 |
| - * SimpleSide is free software: you can redistribute it and/or modify * |
10 |
| - * it under the terms of the GNU General Public License as published by * |
11 |
| - * the Free Software Foundation, either version 3 of the License, or * |
12 |
| - * (at your option) any later version. * |
13 |
| - * * |
14 |
| - * SimpleSide is distributed in the hope that it will be useful, * |
15 |
| - * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
16 |
| - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
17 |
| - * GNU General Public License for more details. * |
18 |
| - * * |
19 |
| - * You should have received a copy of the GNU General Public License * |
20 |
| - * along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. * |
21 |
| - * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
22 |
| -
|
23 |
| - ============================================================================== |
24 |
| -*/ |
25 |
| - |
26 |
| -#include "PluginProcessor.h" |
27 |
| -#include "PluginEditor.h" |
28 |
| - |
29 |
| - |
30 |
| -//============================================================================== |
31 |
| -SimpleSideAudioProcessorEditor::SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor& p) |
32 |
| - : AudioProcessorEditor (&p), processor (p), mainView(&(processor.primaryCurve)), mixKnob(processor.mixValue), rateReadout(processor.rateValue), graphicsUpdateTimer(this) |
33 |
| -{ |
34 |
| - // Make sure that before the constructor has finished, you've set the |
35 |
| - // editor's size to whatever you need it to be. |
36 |
| - setSize (800, 500); |
37 |
| - background = ImageCache::getFromMemory(BinaryData::background_png, BinaryData::background_pngSize); |
38 |
| - addAndMakeVisible(&mainView); |
39 |
| - addAndMakeVisible(&mixKnob); |
40 |
| - addAndMakeVisible(&rateReadout); |
41 |
| - processor.primaryCurve.setParent(&mainView); |
42 |
| - graphicsUpdateTimer.startTimerHz(60); |
43 |
| -} |
44 |
| - |
45 |
| -SimpleSideAudioProcessorEditor::~SimpleSideAudioProcessorEditor() |
46 |
| -{ |
47 |
| - processor.primaryCurve.setParent(NULL); |
48 |
| -} |
49 |
| - |
50 |
| -//============================================================================== |
51 |
| -void SimpleSideAudioProcessorEditor::paint (Graphics& g) |
52 |
| -{ |
53 |
| - g.drawImageAt(background, 0, 0); |
54 |
| - // debugging stuff |
55 |
| - /* |
56 |
| - if (false) { |
57 |
| - g.setColour(Colours::white); |
58 |
| - g.drawSingleLineText("this is some text", 0, 0); |
59 |
| - g.drawSingleLineText(std::to_string(processor.currentTime), 0, 10); |
60 |
| - g.drawSingleLineText(std::to_string(processor.numBeats), 0, 20); |
61 |
| - g.drawSingleLineText(std::to_string(processor.position), 0, 30); |
62 |
| - g.drawSingleLineText(std::to_string(processor.sizeOfSample), 0, 40); |
63 |
| - g.drawSingleLineText(std::to_string(processor.finalPosition), 0, 50); |
64 |
| - g.drawSingleLineText(std::to_string(processor.samplesPerSec), 0, 60); |
65 |
| - g.drawSingleLineText(std::to_string(processor.hostSecPerBeat), 0, 70); |
66 |
| - g.drawSingleLineText(std::to_string(processor.samplesPerSec*processor.hostSecPerBeat), 0, 80); |
67 |
| - } |
68 |
| - */ |
69 |
| -} |
70 |
| - |
71 |
| -void SimpleSideAudioProcessorEditor::resized() |
72 |
| -{ |
73 |
| - // This is generally where you'll want to lay out the positions of any |
74 |
| - // subcomponents in your editor.. |
75 |
| -} |
| 1 | +/* |
| 2 | + ============================================================================== |
| 3 | +
|
| 4 | + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
| 5 | + * Copyright � 2017 Armando Montanez * |
| 6 | + * * |
| 7 | + * This file is part of SimpleSide. * |
| 8 | + * * |
| 9 | + * SimpleSide is free software: you can redistribute it and/or modify * |
| 10 | + * it under the terms of the GNU General Public License as published by * |
| 11 | + * the Free Software Foundation, either version 3 of the License, or * |
| 12 | + * (at your option) any later version. * |
| 13 | + * * |
| 14 | + * SimpleSide is distributed in the hope that it will be useful, * |
| 15 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of * |
| 16 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * |
| 17 | + * GNU General Public License for more details. * |
| 18 | + * * |
| 19 | + * You should have received a copy of the GNU General Public License * |
| 20 | + * along with SimpleSide. If not, see <http://www.gnu.org/licenses/>. * |
| 21 | + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
| 22 | +
|
| 23 | + ============================================================================== |
| 24 | +*/ |
| 25 | + |
| 26 | +#include "PluginProcessor.h" |
| 27 | +#include "PluginEditor.h" |
| 28 | + |
| 29 | + |
| 30 | +//============================================================================== |
| 31 | +SimpleSideAudioProcessorEditor::SimpleSideAudioProcessorEditor (SimpleSideAudioProcessor& p) |
| 32 | + : AudioProcessorEditor (&p), processor (p), mainView(&(processor.primaryCurve)), mixKnob(processor.mixValue), rateReadout(processor.rateValue), graphicsUpdateTimer(this) |
| 33 | +{ |
| 34 | + // Make sure that before the constructor has finished, you've set the |
| 35 | + // editor's size to whatever you need it to be. |
| 36 | + setSize (800, 500); |
| 37 | + background = juce::ImageCache::getFromMemory(BinaryData::background_png, BinaryData::background_pngSize); |
| 38 | + addAndMakeVisible(&mainView); |
| 39 | + addAndMakeVisible(&mixKnob); |
| 40 | + addAndMakeVisible(&rateReadout); |
| 41 | + processor.primaryCurve.setParent(&mainView); |
| 42 | + graphicsUpdateTimer.startTimerHz(60); |
| 43 | +} |
| 44 | + |
| 45 | +SimpleSideAudioProcessorEditor::~SimpleSideAudioProcessorEditor() |
| 46 | +{ |
| 47 | + processor.primaryCurve.setParent(NULL); |
| 48 | +} |
| 49 | + |
| 50 | +//============================================================================== |
| 51 | +void SimpleSideAudioProcessorEditor::paint (juce::Graphics& g) |
| 52 | +{ |
| 53 | + g.drawImageAt(background, 0, 0); |
| 54 | + // debugging stuff |
| 55 | + /* |
| 56 | + if (false) { |
| 57 | + g.setColour(Colours::white); |
| 58 | + g.drawSingleLineText("this is some text", 0, 0); |
| 59 | + g.drawSingleLineText(std::to_string(processor.currentTime), 0, 10); |
| 60 | + g.drawSingleLineText(std::to_string(processor.numBeats), 0, 20); |
| 61 | + g.drawSingleLineText(std::to_string(processor.position), 0, 30); |
| 62 | + g.drawSingleLineText(std::to_string(processor.sizeOfSample), 0, 40); |
| 63 | + g.drawSingleLineText(std::to_string(processor.finalPosition), 0, 50); |
| 64 | + g.drawSingleLineText(std::to_string(processor.samplesPerSec), 0, 60); |
| 65 | + g.drawSingleLineText(std::to_string(processor.hostSecPerBeat), 0, 70); |
| 66 | + g.drawSingleLineText(std::to_string(processor.samplesPerSec*processor.hostSecPerBeat), 0, 80); |
| 67 | + } |
| 68 | + */ |
| 69 | +} |
| 70 | + |
| 71 | +void SimpleSideAudioProcessorEditor::resized() |
| 72 | +{ |
| 73 | + // This is generally where you'll want to lay out the positions of any |
| 74 | + // subcomponents in your editor.. |
| 75 | +} |
0 commit comments