NSMenuFX icon indicating copy to clipboard operation
NSMenuFX copied to clipboard

Full macOS menu bar access for JavaFX apps

Results 11 NSMenuFX issues
Sort by recently updated
recently updated
newest added

`KeyCombination.shortcut` is a way to add platform-independent keyboard shortcuts that will e.g. use "Ctrl" on Windows and "Cmd" on macOS (see the Javadoc in `javafx.scene.input.KeyCombination`). This commit just adds a...

Using the `KeyCode.SHORTCUT` constant doesn't work for adding keyboard shortcuts with the Command key. The same issue was reported in codecentric/NSMenuFX#42 . The shortcut key is a virtual key that...

When creating a menubar, it is not accessible (i.e. cannot be clicked) unless you do an ALT-TAB application switch twice. Then everything runs fine. I tested it under Mac OS...

Could fix issue #21 Beside JavaFX/Java versions, I've bumped the version number to 3.2.0.

When running my application on macOS, I noticed the Application menubar was not showing any more, and I saw the following in the console: `Warning: MenuBar ignored property useSystemMenuBar because...

Just started trying to implement this library into an app of mine, and I got it properly showing the menu at the top of the screen in MacOs, but when...

Hi, I am working from time to time on JavaFX Scene Builder. There are few issues related MacOS behavior open. Are you looking for support on this project? How about...

If you set the MenuToolkit.setForceQuitOnCmdQ(false), you can now no longer quit the application when using CMD Q or the application menu Quit command. This worked correctly in the CodeCentric NSMenuFX...

FYI, this line: `MenuToolkit.toolkit().setAppearanceMode(AppearanceMode.DARK);` ...works with Swing as well. Combining that one line with the following: https://www.formdev.com/flatlaf/ ...and (amazingly) the following line... `System.setProperty("apple.laf.useScreenMenuBar", "true");` ...is now giving me an astonishingly...

This is a suggestion for an enhancement. The api already provides several convenience methods to create some standard menu items such as the _Quit_ menu, _Hide_ menu, _Minimize_ menu, etc....

enhancement