Re: JavaFX on Windows ARM

2024-06-09 Thread Christopher Schnick
. - Johan On Sat, Jun 8, 2024 at 10:01 PM Christopher Schnick wrote: Hello there, with the latest releases of ARM hardware with Windows I just wanted to ask whether there are any plans on officially supporting JavaFX for Windows on ARM. There are also now GitHub

Re: Toolkit Window Decorations

2024-06-08 Thread Christopher Schnick
I totally agree with the need for better decoration support. I think many JavaFX application developers would agree that one big area where JavaFX is lacking are window decorations, or the lack thereof. Nowadays there are many reasons for having better support/integration for window

JavaFX on Windows ARM

2024-06-08 Thread Christopher Schnick
Hello there, with the latest releases of ARM hardware with Windows I just wanted to ask whether there are any plans on officially supporting JavaFX for Windows on ARM. There are also now GitHub runners for Windows and Linux that run on ARM (see

Re: RFR: 8329821: [Linux] When using i3 WM, menus are incorrectly sized

2024-05-06 Thread Christopher Schnick
On Sat, 6 Apr 2024 17:34:06 GMT, Thiago Milczarek Sayao wrote: > Simple fix to only request `_NET_FRAME_EXTENTS` if window has decoration. > > It seems i3 replies with decorated sizes, even if window is not decorated. > > Won't hurt other WMs. I can confirm on my system that this PR fixes

Re: RFR: 8329821: [Linux] When using i3 WM, menus are incorrectly sized

2024-05-04 Thread Christopher Schnick
On Sat, 6 Apr 2024 17:34:06 GMT, Thiago Milczarek Sayao wrote: > Simple fix to only request `_NET_FRAME_EXTENTS` if window has decoration. > > It seems i3 replies with decorated sizes, even if window is not decorated. > > Won't hurt other WMs. So I can reproduce this on my system now and

Re: RFR: 8329821: [Linux] When using i3 WM, menus are incorrectly sized

2024-04-06 Thread Christopher Schnick
On Sat, 6 Apr 2024 17:34:06 GMT, Thiago Milczarek Sayao wrote: > Simple fix to only request `_NET_FRAME_EXTENTS` if window has decoration. > > It seems i3 replies with decorated sizes, even if window is not decorated. > > Won't hurt other WMs. I recently got a report from a user running the

ImageView has artifacts when uiScale is set on Linux

2024-02-23 Thread Christopher Schnick
scene = new Scene(s, 100, 100);     primaryStage.setScene(scene);     primaryStage.setTitle("Test");     primaryStage.show();     } }| Is this a bug or a limitation in the renderer? Best Christopher Schnick

Re: Proposal: RichTextArea Control (Incubator)

2024-02-22 Thread Christopher Schnick
areas as well. The proposed actual rich text area can then still be included as a concrete implementation of this absraction. Best Christopher Schnick On 21/02/2024 19:07, Andy Goryachev wrote: Dear JavaFX developers: We would like to propose a new feature - rich text control, RichTextArea

Re: UI scaling issues when physical and logical screen resolutions differ on Linux

2024-02-20 Thread Christopher Schnick
, Christopher Schnick wrote: Hello, several users of our JavaFX applications have reported that the UI scale is too small when the physical and logical screen resolutions differ on Linux. For example in this case there is an implicit scaling factor of 150% included as the monitor is a 4k

Re: [External] : Re: Platform preferences theme detection

2024-02-15 Thread Christopher Schnick
Just wanted to let you know that after setting apple.awt.application.appearance=system everything works as expected now. Thanks for all the work on this great feature. I plan to release the next version of our application with platform preferences integration soon to production. On

Attachment size limits for the mailing list

2024-02-14 Thread Christopher Schnick
at least a 1920x1080 screenshot would be a good start. That would also make the life of the moderators easier. Best Christopher Schnick

Re: [External] : Re: Platform preferences theme detection

2024-02-12 Thread Christopher Schnick
0.2. In the mean time, I'll do some testing of this as well now that I know it is related to initializing the AWT toolkit. -- Kevin On 2/12/2024 8:36 AM, Christopher Schnick wrote: I am using JDK 21+35 and JavaFX 22-ea+28 to run the project on macOS. I guess I can try upgrading to JDK 21.

Re: Platform preferences theme detection

2024-02-12 Thread Christopher Schnick
with this functionality. I presume you are using a very recent ea build of JavaFX 22. What version of JDK are you using? -- Kevin On 2/10/2024 9:05 PM, Christopher Schnick wrote: Well, that is going to be a fun one to debug ... In my application I check for a headless environment

Re: Platform preferences theme detection

2024-02-10 Thread Christopher Schnick
/tests/manual/events/PlatformPreferencesChangedTest.java That might rule out that the differences we're seeing have anything to do with the way we're using the API. On Sat, Feb 10, 2024 at 6:23 PM Christopher Schnick wrote: I checked again, restarted everything, but still the same problem

Detecting successful file drops on macOS

2024-02-09 Thread Christopher Schnick
w();     } }| | | I looked through the documentation of DragEvent but I'm still not really sure whether this is a bug. The documentation of DragEvent is a little bit light when it comes to behavior of drag events that go to the system itself. Best Christopher Schnick

Re: Preview features for JavaFX

2024-02-06 Thread Christopher Schnick
I would add that during the 6 month release cycle, there is usually some time to get new features out in an ea release and receive early feedback that way. Maybe even in time that it can be incorporated into the next release if it is reasonable. In this concrete case there was no ea build

Re: Platform preferences theme detection

2024-02-05 Thread Christopher Schnick
to JBS, feel free to open a bug ticket to track this issue. On Mon, Feb 5, 2024 at 10:56 PM Christopher Schnick wrote: I finally found some time to test the latest ea build and can confirm that it works now on Windows as expected. Next, I moved to Linux, more specifically Ubuntu

Re: Platform preferences theme detection

2024-01-30 Thread Christopher Schnick
per final version (aligned with OpenJDK). - Nir On Tue, Jan 30, 2024 at 2:18 PM Christopher Schnick wrote: Alright I will try out the new ea release once the fix is integrated. Other than that, everything works fine for me so far with observing colors using the platform-specific

Re: Platform preferences theme detection

2024-01-30 Thread Christopher Schnick
this issue. On Mon, Jan 29, 2024 at 10:45 PM Christopher Schnick wrote: Hello Michael, I took a look at the implementation and tried to find the issue. From what I can see, the mappings returned are correct: but it seems like they are somehow not applied the Preferences

Re: Platform preferences theme detection

2024-01-29 Thread Christopher Schnick
rm.getPreferences()? The color scheme value is derived from these colors. If the mappings are not present, something unexpected is happening. On Mon, Jan 29, 2024 at 9:23 PM Christopher Schnick wrote: Hello, I just tried out the new 22-ea+27 build to see whether we can utilize some of the new featu

Platform preferences theme detection

2024-01-29 Thread Christopher Schnick
Hello, I just tried out the new 22-ea+27 build to see whether we can utilize some of the new features, particularly the platform preferences API, to replace the library https://github.com/Dansoftowner/jSystemThemeDetector that we are currently using for theme detection. I'm running this on

Re: Performance Regression in 21 - CSS

2023-12-31 Thread Christopher Schnick
Hello, I just tested this with our JavaFX application and can confirm that there are massive differences. It takes around 1-2 seconds to completely apply all application stylesheets in JavaFX 20 but takes around 6-7 seconds in JavaFX 21. On 12/31/2023 3:00 PM, Florian Kirmaier wrote: Hi

Re: ToolBar rendering bug

2023-11-15 Thread Christopher Schnick
to do anything.  I can help in creating a bug, but a minimal reproducible example is absolute must. -andy *From: *openjfx-dev on behalf of Christopher Schnick *Date: *Monday, November 13, 2023 at 17:46 *To: *openjfx-dev@openjdk.org *Subject: *ToolBar rendering bug Hello, I recently stumbled

ToolBar rendering bug

2023-11-13 Thread Christopher Schnick
Hello, I recently stumbled upon a weird rendering issue and managed to reproduce it, at least inside my own application: https://www.youtube.com/watch?v=BcMVIOkk-84 . Sadly I don't have the time to create a minimal reproducible example right now. I suspect the problem occurs when a ToolBar

Re: Several GTK issues on latest Ubuntu release

2023-10-25 Thread Christopher Schnick
ix (except for the state after focus). Thiago Em seg., 23 de out. de 2023 11:48, Christopher Schnick escreveu: That is good to know that this issue is already being worked on. From the description of https://bugs.openjdk.org/browse/JDK-8316423, this issue is only

Re: Several GTK issues on latest Ubuntu release

2023-10-23 Thread Christopher Schnick
likely not even load GTK. But for a mixed FX + Swing app then of course it will still be loaded by FX. -phil. On 10/23/23 7:48 AM, Christopher Schnick wrote: That is good to know that this issue is already being worked on. From the description of https://bugs.openjdk.org/browse/JDK-8316423

Re: Several GTK issues on latest Ubuntu release

2023-10-23 Thread Christopher Schnick
Em seg., 23 de out. de 2023 10:05, Christopher Schnick escreveu: Hello, a user of our application xpipe <https://github.com/xpipe-io/xpipe> reported several issues after upgrading their Ubuntu version and I investigated them myself. I want to not

Several GTK issues on latest Ubuntu release

2023-10-23 Thread Christopher Schnick
Hello, a user of our application xpipe reported several issues after upgrading their Ubuntu version and I investigated them myself. I want to note here that these issues are exclusive to new Ubuntu versions. I did not observe any of them on slightly older