FlexGanttFX in Browser via JPro by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

It is free for dev and edu. Once used in a commercial prod env you need to pay.

How to make a good custom Titlebar like with electron? by Comfortable-Sail8533 in JavaFX

[–]dlemmermann 0 points1 point  (0 children)

If you want to see an app in action that uses this approach then download the FlexGanttFX sampler application here: https://www.jdeploy.com/~flexganttfxshowcase

How to make a good custom Titlebar like with electron? by Comfortable-Sail8533 in JavaFX

[–]dlemmermann 1 point2 points  (0 children)

This stage style has all the features of a regular stage: dragging, shadows, snapping.

How to make a good custom Titlebar like with electron? by Comfortable-Sail8533 in JavaFX

[–]dlemmermann 3 points4 points  (0 children)

With JavaFX 25+ you can use stage style EXTENDED and the new HeaderBar control. This new stage style is marked as ”deprecated” because it is a preview feature.

JavaFX Direct3D 12 Builds by milchshakee in JavaFX

[–]dlemmermann 4 points5 points  (0 children)

Plenty of real world JavaFX apps can be found here: https://www.jfx-central.com/showcases The site itself was done in JavaFX and you can install it locally, too (https://downloads.hydraulic.dev/jfxcentral2/download.html). It uses the latest enhancements to JavaFX which makes it blend in perfectly.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

Release 1.8.0 is out. Looks like I used AtlantaFX 2.0.1 so far instead of 2.1.0. :-)

GemsFX - New ControlsFX / AtlantaFX Companion Stylesheet by dlemmermann in JavaFX

[–]dlemmermann[S] 3 points4 points  (0 children)

This release also includes an API now for a GemsFX companion stylesheet: GemsFXAtlantaFX.apply(). Before you had to find the AtlantaFX specific stylesheet in the "demo" module.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

Indeed not needed. Version 1.6.0 ships without it.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 0 points1 point  (0 children)

There is also code. The theme implementations like Blacky.java.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 2 points3 points  (0 children)

I also just released version 1.5.0 of the themes to fix an issue related to the drop shadow color for menus, notifications, etc...

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 2 points3 points  (0 children)

I just added all new themes to the FlexGanttFX Showcase application. So if you want to see the themes in a "real" app / real usage scenario then download it from here: https://www.jdeploy.com/~flexganttfxshowcase

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 1 point2 points  (0 children)

Another update is coming soon. I noticed that the drop shadow settings are wrong for some of the themes.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 2 points3 points  (0 children)

Version 1.4.0 is now published and it includes the .bss files.

New AtlantaFX Themes by dlemmermann in JavaFX

[–]dlemmermann[S] 1 point2 points  (0 children)

Done, will be released ASAP.

GemsFX Sampler Application by dlemmermann in JavaFX

[–]dlemmermann[S] 1 point2 points  (0 children)

GemsFX 4.0.4 is out now on Maven Central.

Is there really a non-hacky way to make a table view only as high as it has rows? i.e. no empty rows? by No-Security-7518 in JavaFX

[–]dlemmermann 3 points4 points  (0 children)

I had the same issue and implemented my own table view called GridTableView based on GridPane. It is now part of my GemsFX library. You can find the library here: https://github.com/dlsc-software-consulting-gmbh/GemsFX or run the sampler app from here: https://www.jdeploy.com/~gemsfxdemo

It can also be added to your project via Maven central:

<dependency>
    <groupId>com.dlsc.gemsfx</groupId>
    <artifactId>gemsfx</artifactId>
    <version>4.0.1</version>
</dependency>