WorkbenchFX icon indicating copy to clipboard operation
WorkbenchFX copied to clipboard

A lightweight RCP framework for JavaFX applications.

Results 10 WorkbenchFX issues
Sort by recently updated
recently updated
newest added

I have been getting these console errors or logs in red about some style warning from this library. for example, as shown below, what could be the cause of this:...

When I "insert" WorkbenchFX in my Project it does work! Is there a way to get it to work?

I've just begun styling my workbench and it looks to me like the style mapping is done by the module _display name_, if that name is localized, it requires one...

I tried to set -background-variant-color in my css in order to change the background color of pressed module toolbar items but it had now effect. For a light theme one...

Hi, I'd like to "not use" these assets: `AddModulePage`, `Add button` and `X Button` of `Tab`. Use case: I'd like to steer the user over the different `WorkbenchModule`s. The user...

good first issue

Bumps [guava](https://github.com/google/guava) from 31.0.1-jre to 32.0.0-jre. Release notes Sourced from guava's releases. 32.0.0 Maven <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.0.0-jre</version> <!-- or, for Android: --> <version>32.0.0-android</version> </dependency> Jar files 32.0.0-jre.jar 32.0.0-android.jar Guava...

dependencies

To reproduce: Create a toolbarButton that removes all the modules from the workbench. Start the app, open some modules. Activate the button. Click on the tab of the modules. `IllegalArgumentException:...

Using the following code with more than one modules opened `workbench.getOpenModules().forEach(WorkbenchModule::close);` and as the close() method removes the module from the original list, it messes up the forEach(...) The result...

I'm trying to add an exit confirmation but it just falls through, the dialog is never shown. ``` mStage.addEventFilter(WindowEvent.WINDOW_CLOSE_REQUEST, windowEvent -> { if (true) {//TODO Add condition var dialog =...

Hi, first of all, thank you very much for open-source this project, I like it very much, it is very easy to use and supports a high degree of customization....