Is it possible to de-activate several functions of the toolbar in Shef editor?

0 votes
asked by
edited by

1 Answer

0 votes
No avatar answered by (193k points)
edited by

This editor features JMenubar integration. The only way to edit functions is to edit its source code using something predefined as:

JMenuBar menuBar = new JMenuBar();
menuBar.add(editor.getEditMenu());
menuBar.add(editor.getFormatMenu());
menuBar.add(editor.getInsertMenu());
frame.setJMenuBar(menuBar);

You will need to use additional functions and libraries as this is just a simple HTML editor.

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register
...