From b786315b6f2cdaac742301468f068f6cde1f0231 Mon Sep 17 00:00:00 2001 From: falkTX Date: Thu, 26 Feb 2015 12:43:05 +0000 Subject: [PATCH] Fix build --- plugins/Nekobi/DistrhoUINekobi.cpp | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/plugins/Nekobi/DistrhoUINekobi.cpp b/plugins/Nekobi/DistrhoUINekobi.cpp index 8899df7..71f7b16 100644 --- a/plugins/Nekobi/DistrhoUINekobi.cpp +++ b/plugins/Nekobi/DistrhoUINekobi.cpp @@ -35,13 +35,15 @@ DistrhoUINekobi::DistrhoUINekobi() // background fImgBackground = Image(DistrhoArtworkNekobi::backgroundData, DistrhoArtworkNekobi::backgroundWidth, DistrhoArtworkNekobi::backgroundHeight, GL_BGR); + // about Image aboutImage(DistrhoArtworkNekobi::aboutData, DistrhoArtworkNekobi::aboutWidth, DistrhoArtworkNekobi::aboutHeight, GL_BGR); fAboutWindow.setImage(aboutImage); // slider Image sliderImage(DistrhoArtworkNekobi::sliderData, DistrhoArtworkNekobi::sliderWidth, DistrhoArtworkNekobi::sliderHeight); - fSliderWaveform = new ImageSlider(this, sliderImage, DistrhoPluginNekobi::paramWaveform); + fSliderWaveform = new ImageSlider(this, sliderImage); + fSliderWaveform->setId(DistrhoPluginNekobi::paramWaveform); fSliderWaveform->setStartPos(133, 40); fSliderWaveform->setEndPos(133, 60); fSliderWaveform->setRange(0.0f, 1.0f); @@ -53,7 +55,8 @@ DistrhoUINekobi::DistrhoUINekobi() Image knobImage(DistrhoArtworkNekobi::knobData, DistrhoArtworkNekobi::knobWidth, DistrhoArtworkNekobi::knobHeight); // knob Tuning - fKnobTuning = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramTuning); + fKnobTuning = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobTuning->setId(DistrhoPluginNekobi::paramTuning); fKnobTuning->setAbsolutePos(41, 43); fKnobTuning->setRange(-12.0f, 12.0f); fKnobTuning->setDefault(0.0f); @@ -62,7 +65,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobTuning->setCallback(this); // knob Cutoff - fKnobCutoff = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramCutoff); + fKnobCutoff = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobCutoff->setId(DistrhoPluginNekobi::paramCutoff); fKnobCutoff->setAbsolutePos(185, 43); fKnobCutoff->setRange(0.0f, 100.0f); fKnobCutoff->setDefault(25.0f); @@ -71,7 +75,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobCutoff->setCallback(this); // knob Resonance - fKnobResonance = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramResonance); + fKnobResonance = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobResonance->setId(DistrhoPluginNekobi::paramResonance); fKnobResonance->setAbsolutePos(257, 43); fKnobResonance->setRange(0.0f, 95.0f); fKnobResonance->setDefault(25.0f); @@ -80,7 +85,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobResonance->setCallback(this); // knob Env Mod - fKnobEnvMod = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramEnvMod); + fKnobEnvMod = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobEnvMod->setId(DistrhoPluginNekobi::paramEnvMod); fKnobEnvMod->setAbsolutePos(329, 43); fKnobEnvMod->setRange(0.0f, 100.0f); fKnobEnvMod->setDefault(50.0f); @@ -89,7 +95,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobEnvMod->setCallback(this); // knob Decay - fKnobDecay = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramDecay); + fKnobDecay = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobDecay->setId(DistrhoPluginNekobi::paramDecay); fKnobDecay->setAbsolutePos(400, 43); fKnobDecay->setRange(0.0f, 100.0f); fKnobDecay->setDefault(75.0f); @@ -98,7 +105,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobDecay->setCallback(this); // knob Accent - fKnobAccent = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramAccent); + fKnobAccent = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobAccent->setId(DistrhoPluginNekobi::paramAccent); fKnobAccent->setAbsolutePos(473, 43); fKnobAccent->setRange(0.0f, 100.0f); fKnobAccent->setDefault(25.0f); @@ -107,7 +115,8 @@ DistrhoUINekobi::DistrhoUINekobi() fKnobAccent->setCallback(this); // knob Volume - fKnobVolume = new ImageKnob(this, knobImage, ImageKnob::Vertical, DistrhoPluginNekobi::paramVolume); + fKnobVolume = new ImageKnob(this, knobImage, ImageKnob::Vertical); + fKnobVolume->setId(DistrhoPluginNekobi::paramVolume); fKnobVolume->setAbsolutePos(545, 43); fKnobVolume->setRange(0.0f, 100.0f); fKnobVolume->setDefault(75.0f);