Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable the default context menu on a text field

By default the JavaFX TextField has a built in ContextMenu with 'undo', 'copy', 'cut' etc. options. The ComboBox also has the same ContextMenu when it is set as editable (the ComboBox is actually part of the editor which is a TextField).

I want to replace this ContextMenu with a custom one but I'm having a problem with disabling the default one.

I have tried consuming the ContextMenu and mouse click events but ComboBox and ComboBox.getEditor() both have a null ContextMenu.

Am I missing something?

like image 555
Chechulin Avatar asked Nov 26 '12 10:11

Chechulin


2 Answers

I have found a way to disable the default popup menu. Then you can add your own, without getting the double menu effect.

ComboBox<String> cb_ = new ComboBox<>();
final EventDispatcher initial = cb_.getEditor().getEventDispatcher();
cb_.getEditor().setEventDispatcher(new EventDispatcher()
{
    @Override
    public Event dispatchEvent(Event event, EventDispatchChain tail)
    {
        if (event instanceof MouseEvent)
        {
            //shot in the dark guess for OSX, might not work
            MouseEvent mouseEvent = (MouseEvent)event;
            if (mouseEvent.getButton() == MouseButton.SECONDARY || 
                    (mouseEvent.getButton() == MouseButton.PRIMARY && mouseEvent.isControlDown()))  
            {
                event.consume();
            }
        }
        return initial.dispatchEvent(event, tail);
    }
});

Note - I'm not adding my own menu via the menus on the combobox, I'm not sure if that will work (it might).

If you wrap the combobox in an Hbox, and add a menu to the hbox - I know that will work.

HBox hbox = new HBox();
ContextMenu contextMenu = new ContextMenu();
....
hbox.setOnContextMenuRequested(new EventHandler<ContextMenuEvent>()
{
    @Override
    public void handle(ContextMenuEvent event)
    {
        contextMenu.show(hbox, event.getScreenX(), event.getScreenY());
    }
});
like image 130
user2163960 Avatar answered Sep 29 '22 09:09

user2163960


As you have already stated, a call to GetContextMenu() returns null (which is the big clue the default one is an implementation detail) and if you add an additional ContextMenu it appears over the default one.

Trying to replace the context menu with the following code:

ContextMenu cm = new ContextMenu();
cm.getItems().add(new MenuItem("Test"));

textbox.setContextMenu(cm);

Produces the following result.

enter image description here

Overriding the mouse clicked event isn't going to work either because you will still need to access the default Context menu via some property which doesn't seem to be possible.

I've also checked the CSS reference to see if the ContextMenu was target-able via one of the controls sub-structures but again this returned no results.

Based on this information it looks as though the default ContextMenu is an implementation detail of the TextField control (or maybe it's parent classTextInputControl) and can't currently be changed.

Update

I contacted Jonathan Giles (the tech lead at Oracle in the JavaFX UI controls team) who told me to file a bug report.

I searched the bug database and have found some existing reports (RT-23213 & RT-24823) so it appears this is a known issue. As of today the issue is still open and is considered a medium priority but apparently it will be fixed for FX 8.0.

From the bug report comments:

The default context menu is created by the control's skin, which is currently not public API. We need to decide if and when the context menu should be accessible through the public API, but it will probably need to wait for the broader work to make skins more public.

like image 45
Benjamin Gale Avatar answered Sep 29 '22 08:09

Benjamin Gale