-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Where is the per-item painting done for the combobox? + JUCE update #261
Comments
Also related, i need to change the display string of the combo box items without changing the preset format xml stuff. What decides what the xml gets, what decides the display string? |
it's in |
in the xml goes the string that you give the Parameter by |
hmm..ok - i think i need to add some code to the framework to make that possible.... edit: done: |
or: i introduce a TreeViewPainter class the same way as i did for the sliders |
Nevermind that, I'm using Juce PopupMenu, and you should be using that too. Please upgrade RS-MET Juce library which adds std:function in some places, makes all this stuff easier. |
I updated your JUCE, take my pull request! It builds. |
also download a new VST3 SDK! Save your old one for now, still trying to figure out how to get the files to be found. One sec. |
whoa! one moment - you say that so casually, as if it were something small! this is major change with lots of ripples. i need to make sure that all my projects (not only ToolChain) build and run and i usually also update the code for the PluginHost and Projucer project with the new code from the juce repo when i update my juce version (and build me a new Projucer).
download a new vst3sdk? i can't remember having ever downloaded an old vst3sdk. this seemed not to be necessarry with the old version of juce - it used to be self-contained. is this due to a policy change by Steinberg with regard to the vst2sdk as explained here: |
just update your JUCE, look at my pull request for some specifics on what you need to do to get your library to build, and use the legacy thing to re-link VST3 SDK. here's the legacy VST3 SDK I'm using: http://www.elanhickler.com/Soundemote/VST3%20SDK%20(3.6.5).zip |
as said - updating the juce library is a major step that has to be taken carefully, otherwise many things may break (build-systems, mostly). this is not something like a minor bug-fix. sure, sooner or later it has to be done anyway to not fall behind too much but things like that have to be done thoroughly, not casually. you don't address my specific questions and concerns at all btw. i'm not saying, i won't do it, i'm just saying, that i won't do it casually and may need some time for that. i may try it, then set everything straight again and commit only when everything works again.... |
damn - yes - it looks like steinberg now really means it to kill off vst2 - that's really sad: namespace Vst2
{
// If the following files cannot be found then you are probably trying to build
// a VST2 plug-in or a VST2-compatible VST3 plug-in. To do this you must have a
// VST2 SDK in your header search paths or use the "VST (Legacy) SDK Folder"
// field in the Projucer. The VST2 SDK can be obtained from the
// vstsdk3610_11_06_2018_build_37 (or older) VST3 SDK or JUCE version 5.3.2. You
// also need a VST2 license from Steinberg to distribute VST2 plug-ins.
#include "pluginterfaces/vst2.x/aeffect.h"
#include "pluginterfaces/vst2.x/aeffectx.h"
} |
Need to customize painting for combobox pop up items. Where do you do it in code? I'll figure out how to edit it.
The text was updated successfully, but these errors were encountered: