Look and Feel - Toggle Buttons and the MIDI Sources panel...
-
damn it - it turns out its way worse than I thought...
So its all over the buttons in all the modulators too...
-
@Lindon probably more lines 50 to 54...
-
@ustk so in your edit that would mean lines 279-284
Now to find where the modulators are using the laf....
-
Well nothing obvious is jumping out at me...@Christoph-Hart ??
-
Any chance of getting this looked at? - otherwise the look and feel is actually broken - in that it might work on your project but it screws the HISE interface completely - making it very very hard to work with.
-
@Lindon This is why I never use it. It should have no effect on the IDE interface in my opinion.
-
It's not only this, the popups too and their buttons, and a lot of things...
It's because the buttons/sliders used are the same in front/backend and the laf aren't separated. it should be doable but it might require a lot of redundant modifications... -
You can reset the look and feel so that it looks right until the next time you compile, which should solve most workflow issues.
The problem is that the look and feel is global so it would be a massive rewrite in order to fix it.
-
@Christoph-Hart - then its not really worth having is it - I might as well just use customer painted panels..
-
Why? If you want to change anything in the module tree, reset the look and feel, until you work on the UI again, then recompile the script.
-
@Christoph-Hart said in Look and Feel - Toggle Buttons and the MIDI Sources panel...:
Why? If you want to change anything in the module tree, reset the look and feel, until you work on the UI again, then recompile the script.
yes - sure but nothing I do (including commenting out the LaF where @ustk and I identified) does not solve this problem:
set your combo box to some LaF and it breaks the Custom Settings Tile:
So LaF is not usable right now.
-
@Lindon Can you post a code snippet (not a HISE snippet) of what you’re doing to the LaF combobox customizations? I customized my comboboxes without any issues to the settings. You might be able to throw an exception for certain comboboxes too.
-
@Lunacy-Audio sure here:
laf.registerFunction("drawPopupMenuBackground", function(g, obj) { g.fillAll(0xFF222222); g.setColour(0x9F5AC4EC); g.drawRect([0, 0, obj.width, obj.height], 1); }); laf.registerFunction("drawPopupMenuItem", function(g, obj) { var a = obj.area; var h = a[3]; if(obj.isSeparator) { g.setColour(Colours.white); g.drawLine(a[0]+10, a[0] + a[2]-10, a[1] + a[3]/2, a[1] + a[3]/2, 1.0); return; } if(obj.isTicked) { g.setColour(0x9F5AC4EC); g.fillEllipse([a[0] + h/3, a[1] + h/3, h/3, h/3]); } g.setFont("Verdana", 16.0); if(obj.isHighlighted) { g.setColour(0x9F5AC4EC); g.fillRect(obj.area); g.setColour(Colours.white); g.drawAlignedText(obj.text, [a[0] + h, a[1], a[2] - h, a[3]], "left"); }else{ g.setColour(Colours.white); g.drawAlignedText(obj.text, [a[0] + h, a[1], a[2] - h, a[3]], "left"); } });
-
@Lindon Ok this is an easy fix. You just need to add a customization for the combobox as well. Just tested this on most recent scriptnode and it's working. This is what I have it set to:
laf.registerFunction("drawComboBox", function(g, obj) { var a = obj.area; g.setColour(0x00FFFFFF); // make transparent g.fillRoundedRectangle(a, 1.0); g.setColour(Colours.withAlpha(0xFFACACAC, (obj.enabled && obj.active) ? 1.0 : 0.2)); g.drawAlignedText(obj.text, [a[0] + 10, a[1], a[2] - 30, a[3]], "left"); var h = a[3]; g.fillTriangle([a[0] + a[2] - h/3 - 10, a[1] + h/3, h/3, h/3], Math.PI); });
-
@Lunacy-Audio thanks Casey - however....
Whilst I'm sure this works I have discovered a huge tranch of my current problems with HISE (failing to save, locking up etc.) all go away when I stop using LaF, so I've decided that LaF is "broken for me" - and I will use discreet panels to get the visual layout I want.
-
@Lunacy-Audio - and of course this fails to solve the problem if you want your combo box text to be black;
laf.registerFunction("drawComboBox", function(g, obj) { var a = obj.area; g.setColour(obj.bgColour); // g.fillRoundedRectangle(a, 1.0); g.setColour(Colours.black); g.drawAlignedText(obj.text, [a[0] + 10, a[1], a[2] - 30, a[3]], "left"); var h = a[3]; g.fillTriangle([a[0] + a[2] - h/3 - 10, a[1] + h/3, h/3, h/3], Math.PI); });
As the Audio Settings panel ignores this:
g.setColour(obj.bgColour);
and sets the combo box colours to black, tho it does recognise the transparency. So really the Audio Settings widget ISNT obeying LaF guidelines.
-
Whilst I'm sure this works I have discovered a huge tranch of my current problems with HISE (failing to save, locking up etc.) all go away when I stop using LaF, so I've decided that LaF is "broken for me" - and I will use discreet panels to get the visual layout I want.
Yikes! Very strange indeed. I've used just about all the possible LaF's on my project and haven't experienced this. I wonder if it's an OS version thing?
-
One thing to keep in mind (I think I've mentioned this in the docs) is that the methods that you give the LAF object must never access script variables outside their scope. These functions are executed directly in the UI rendering and everything else in HISE is being executed on a dedicated thread and is more robust in the sense that there aren't too many weird concurrency issues.
-
@Christoph-Hart - yeah that aint it.. here's my entire LaF code:
laf.registerFunction("drawPopupMenuBackground", function(g, obj) { g.fillAll(0xFF222222); g.setColour(0x9F5AC4EC); g.drawRect([0, 0, obj.width, obj.height], 1); }); laf.registerFunction("drawPopupMenuItem", function(g, obj) { var a = obj.area; var h = a[3]; if(obj.isSeparator) { g.setColour(Colours.white); g.drawLine(a[0]+10, a[0] + a[2]-10, a[1] + a[3]/2, a[1] + a[3]/2, 1.0); return; } if(obj.isTicked) { g.setColour(0x9F5AC4EC); g.fillEllipse([a[0] + h/3, a[1] + h/3, h/3, h/3]); } g.setFont("Verdana", 16.0); if(obj.isHighlighted) { g.setColour(0x9F5AC4EC); g.fillRect(obj.area); g.setColour(Colours.white); g.drawAlignedText(obj.text, [a[0] + h, a[1], a[2] - h, a[3]], "left"); }else{ g.setColour(Colours.white); g.drawAlignedText(obj.text, [a[0] + h, a[1], a[2] - h, a[3]], "left"); } }); laf.registerFunction("drawToggleButton", function(g, obj) { var a = obj.area; if (a[2] == a[3]) { g.setColour(Colours.darkgrey); g.drawEllipse([1,1,a[2]-3,a[3]-3], 2); if(obj.value) { g.setColour(obj.bgColour); g.fillEllipse([4,4,a[2]-9,a[3]-9]); } }else{ if (obj.value) { g.setColour(Colours.grey); g.setFont("Verdana Bold", 14.0); g.drawAlignedText(obj.text, obj.area, "centred"); g.setColour(obj.bgColour); g.drawLine(0, 76, obj.area[3]-5,obj.area[3]-5, 4); }else{ g.setColour(Colours.grey); g.setFont("Verdana Bold", 14.0); g.drawAlignedText(obj.text, obj.area, "centred"); } } });
-
@Christoph-Hart said in Look and Feel - Toggle Buttons and the MIDI Sources panel...:
You can reset the look and feel
How?