Possibility of changing Look and Feel of Custom Settings?
-
Hi everyone,
Is there a way to change the Look and Feel of the Floating Tile Custom Settings?
Thanks!
-
Only through C++ at the mo. But you can change the look of it quite a lot already. What do you want to change?
-
Incase you still need to do this, you can do this with the StandalonePopupComponents.cpp file, just create your own custom look and feel class(s) in HI_LookAndFeels.h (I don't recommend editing the current popuplookandfeelmethod), add the lookandfeel object to the StandalonePopupComponents header file and reroute the existing look and feel pointers (applicable lines 147->182).
For the combo boxes, you need to specify both the PopupMenu:: settings and the ComboxBox:: settings, as the colours/fonts etc are handled separately for both in JUCE.
-
Thanks for the help! Will look into it.