mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +02:00
Added mod overlay
This commit is contained in:
parent
463433752e
commit
4977698b19
5 changed files with 16 additions and 4 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
1.0.25:
|
||||||
|
- Added manual
|
||||||
|
- Added cable when dragging mod sources
|
||||||
|
- Fixed right click on mod depth button
|
||||||
|
|
||||||
1.0.24:
|
1.0.24:
|
||||||
- Added MIDI learn
|
- Added MIDI learn
|
||||||
- Fixed glitch in noise LFO
|
- Fixed glitch in noise LFO
|
||||||
|
|
|
||||||
2
VERSION
2
VERSION
|
|
@ -1 +1 @@
|
||||||
1.0.24
|
1.0.25
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit b729bd7b1214cc277240a54fef6ba5818432c573
|
Subproject commit 9eb75b5bad2525a387bcf1c1d773f897c35ef372
|
||||||
|
|
@ -22,6 +22,7 @@ WavetableAudioProcessorEditor::WavetableAudioProcessorEditor (WavetableAudioProc
|
||||||
addAndMakeVisible (usage);
|
addAndMakeVisible (usage);
|
||||||
|
|
||||||
addChildComponent (modOverview);
|
addChildComponent (modOverview);
|
||||||
|
addAndMakeVisible (modOverlay);
|
||||||
|
|
||||||
usage.setBounds (45, 12, 80, 16);
|
usage.setBounds (45, 12, 80, 16);
|
||||||
modOverview.setBounds (usage.getRight() + 10, 12, 150, 16);
|
modOverview.setBounds (usage.getRight() + 10, 12, 150, 16);
|
||||||
|
|
@ -70,6 +71,7 @@ void WavetableAudioProcessorEditor::resized()
|
||||||
|
|
||||||
editor.setBounds (rc);
|
editor.setBounds (rc);
|
||||||
patchBrowser.setBounds (rc);
|
patchBrowser.setBounds (rc);
|
||||||
|
modOverlay.setBounds (getLocalBounds());
|
||||||
}
|
}
|
||||||
|
|
||||||
void WavetableAudioProcessorEditor::addMenuItems (juce::PopupMenu& m)
|
void WavetableAudioProcessorEditor::addMenuItems (juce::PopupMenu& m)
|
||||||
|
|
@ -97,4 +99,8 @@ void WavetableAudioProcessorEditor::addMenuItems (juce::PopupMenu& m)
|
||||||
um.addItem ("200%", [setSize] { setSize (2.00f); });
|
um.addItem ("200%", [setSize] { setSize (2.00f); });
|
||||||
|
|
||||||
m.addSubMenu ("UI Size", um);
|
m.addSubMenu ("UI Size", um);
|
||||||
|
|
||||||
|
m.addSeparator();
|
||||||
|
|
||||||
|
m.addItem ("Manual", [] { juce::URL ("https://github.com/FigBug/Wavetable/blob/master/Manual.md").launchInDefaultBrowser(); });
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,7 @@ private:
|
||||||
gin::TriggeredScope scope { wtProc.scopeFifo };
|
gin::TriggeredScope scope { wtProc.scopeFifo };
|
||||||
gin::SynthesiserUsage usage { wtProc };
|
gin::SynthesiserUsage usage { wtProc };
|
||||||
gin::ModulationOverview modOverview { wtProc.modMatrix };
|
gin::ModulationOverview modOverview { wtProc.modMatrix };
|
||||||
|
gin::ModOverlay modOverlay { wtProc.modMatrix };
|
||||||
|
|
||||||
Editor editor { wtProc };
|
Editor editor { wtProc };
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue