I need to show a "continuous" color palette for color selection inside a ContextMenu. Similar to CustomColorDialog that pops up on ColorPicker.
Is there a different class for this purpose or is it possible to work around by extending ColorPicker and showing directly CustomColorDialog instead of first showing ColorPicker.
TIA
For starters,
com.sun.javafx.scene.control.skin.CustomColorDialog
is private API, and it's not advisable to use it, as it may change in the future without notice.Besides, it is a
Dialog
, what means you can't embed it into aContextMenu
, it has its own window and it's modal.This is a short example of using this (very big, not customizable) dialog in your application, without using a
ColorPicker
.You'll get the dialog, but you won't get any possibility to send a custom color or retrieve the selected color, since properties like
customColorProperty()
are only accesible within thecom.sun.javafx.scene.control.skin
package.So we need another way to implement our custom color selector. If you have a look at the source code of
CustomColorDialog
you'll see that it's relatively a simple control, and most important, almost based on public API: panes, regions and color.Trying to put all in a
ContextMenu
could be overkilling, so I've come up with this basic example, where I'll just use the left part of the dialog, displaying the central bar on top. Most of the code is from the class. The CSS styling was also taken frommodena.css
(undercustom-color-dialog
CSS selector), but was customized as some of the nodes were rotated 90º.This is a short version of
CustomColorDialog
class:This is the
color.css
file:The image can be found here.
And finally, our application class.
Note the use of
CustomMenuItem
to allow clicking on the color selectors without closing the context menu. To close it just click anywhere outside the popup window.This is how it looks like:
Based on this custom dialog, you can improve it and add the functionality you may need.