Re: Installing JRE for Netbeans development

2023-07-10 Thread Eric Bresie
Can pull down recent version of Netbeans here: https://netbeans.apache.org/download/nb18/index.html The community installers have a jre version packaged with it. Within Netbeans in the Tools…Java Platform area, it’s possible to download any of recent JDK/JRE releases which can be installed as pa

Installing JRE for Netbeans development

2023-07-10 Thread dms489
Can somebody please point me to the procedure for installing the JRE used for developing Netbeans projects? -- David Smith david.sm...@dms489.com

RFR: 8311806: Class ButtonAccessibility is implemented twice

2023-07-10 Thread Alexander Zuev
To avoid confusion on the os x dynamic linker side i renamed native classes from ButtonAccessibility to JFXButtonAccessibility. I will use JFX prefix down the line to avoid any confusion when running with the latest JDK that also migrated to the new a11y API. - Commit messages: -

Re: RFR: 8309935: Mac - SystemMenuBar, IndexOutOfBoundsException on change [v2]

2023-07-10 Thread Kevin Rushforth
On Fri, 16 Jun 2023 07:26:39 GMT, Florian Kirmaier wrote: >> Florian Kirmaier has updated the pull request incrementally with one >> additional commit since the last revision: >> >> small changes based on code review > > I've tested it on Mac. > > On Windows, many people will test it soon,

Re: RFR: 8089373: Translation from character to key code is not sufficient [v3]

2023-07-10 Thread Andy Goryachev
On Tue, 9 May 2023 17:34:23 GMT, Martin Fox wrote: >> modules/javafx.graphics/src/main/java/javafx/scene/input/KeyEvent.java line >> 388: >> >>> 386: * The hardware key code which is private to the implementation. >>> 387: */ >>> 388: private int hardwareCode; >> >> Does it need

Re: RFR: 8231865: JFXPanel sends resize event with size 0x0 on HiDPI devices [v2]

2023-07-10 Thread Kevin Rushforth
On Mon, 10 Jul 2023 07:26:10 GMT, Prasanta Sadhukhan wrote: >> If the scaleFactors used for the current device are not 1.0, a JXFPanel will >> send a resize event with 0x0 dimensions to the JavaFX scene which can have >> undesirable effects, which is because the resize pixel buffer is created

Re: RFR: 8311216: DataURI can lose information in some charset environments [v2]

2023-07-10 Thread Kevin Rushforth
On Sat, 8 Jul 2023 23:38:05 GMT, Michael Strauß wrote: >> DataURI uses the following implementation to decode the percent-encoded >> payload of a "data" URI: >> >> >> ... >> String data = uri.substring(dataSeparator + 1); >> Charset charset = Charset.defaultCharset(); >> ... >> URLDecoder.deco

Integrated: 8231865: JFXPanel sends resize event with size 0x0 on HiDPI devices

2023-07-10 Thread Prasanta Sadhukhan
On Mon, 3 Jul 2023 16:11:16 GMT, Prasanta Sadhukhan wrote: > If the scaleFactors used for the current device are not 1.0, a JXFPanel will > send a resize event with 0x0 dimensions to the JavaFX scene which can have > undesirable effects, which is because the resize pixel buffer is created even

Re: RFR: 8311216: DataURI can lose information in some charset environments [v2]

2023-07-10 Thread Andy Goryachev
On Sat, 8 Jul 2023 23:38:05 GMT, Michael Strauß wrote: >> DataURI uses the following implementation to decode the percent-encoded >> payload of a "data" URI: >> >> >> ... >> String data = uri.substring(dataSeparator + 1); >> Charset charset = Charset.defaultCharset(); >> ... >> URLDecoder.deco

Re: RFR: 8274932: Render scales in EmbeddedWindow are not properly updated [v5]

2023-07-10 Thread Andy Goryachev
On Mon, 10 Jul 2023 06:54:49 GMT, Prasanta Sadhukhan wrote: >> When the JavaFX scene is set before it is really shown, then the scale >> factors are not properly propagated to the EmbeddedWindow, resulting in >> showing wrong scales. >> Fix is made to update scales to EmbeddedWindow > > Prasan

Re: RFR: 8231865: JFXPanel sends resize event with size 0x0 on HiDPI devices [v2]

2023-07-10 Thread Andy Goryachev
On Mon, 10 Jul 2023 07:26:10 GMT, Prasanta Sadhukhan wrote: >> If the scaleFactors used for the current device are not 1.0, a JXFPanel will >> send a resize event with 0x0 dimensions to the JavaFX scene which can have >> undesirable effects, which is because the resize pixel buffer is created

Re: RFR: 8251240: Menus inaccessible on Linux with i3 wm

2023-07-10 Thread Thiago Milczarek Sayao
On Mon, 10 Jul 2023 08:06:34 GMT, Johan Vos wrote: >> The bug happens because `gdk_window_get_frame_extents` is not returning the >> correct position when o i3-wm, probably by some bug on the wm itself. >> >> Te fix replaces the usage of the function for already known extents value >> calculat

Re: RFR: JDK-8304439: Subscription based listeners [v7]

2023-07-10 Thread John Hendrikx
On Mon, 10 Jul 2023 08:01:46 GMT, Jose Pereda wrote: >> I think it would be better to see value listeners as the listener >> alternative to what `bind` offers, except not limited to properties. The >> main purpose of these subscriptions is to keep things in sync, not so much >> to know when so

Re: RFR: 8251240: Menus inaccessible on Linux with i3 wm

2023-07-10 Thread Johan Vos
On Sun, 9 Jul 2023 17:43:05 GMT, Thiago Milczarek Sayao wrote: > The bug happens because `gdk_window_get_frame_extents` is not returning the > correct position when o i3-wm, probably by some bug on the wm itself. > > Te fix replaces the usage of the function for already known extents value >

Re: RFR: JDK-8304439: Subscription based listeners [v7]

2023-07-10 Thread Jose Pereda
On Mon, 10 Jul 2023 00:17:44 GMT, John Hendrikx wrote: >> Okay, that makes sense for the InvalidationListener. >> >> However, for the ChangeListener, as I see it, this PR gives two options, >> over the same listener: you can care only about the newValue, or you can >> care about both oldValue

Re: RFR: 8231865: JFXPanel sends resize event with size 0x0 on HiDPI devices [v2]

2023-07-10 Thread Prasanta Sadhukhan
On Fri, 7 Jul 2023 19:04:42 GMT, Andy Goryachev wrote: >> Prasanta Sadhukhan has updated the pull request incrementally with one >> additional commit since the last revision: >> >> Make pWidth/pHeight 0 after border insets if it's negative > > modules/javafx.swing/src/main/java/javafx/embed/s

Re: RFR: 8231865: JFXPanel sends resize event with size 0x0 on HiDPI devices [v2]

2023-07-10 Thread Prasanta Sadhukhan
> If the scaleFactors used for the current device are not 1.0, a JXFPanel will > send a resize event with 0x0 dimensions to the JavaFX scene which can have > undesirable effects, which is because the resize pixel buffer is created even > for initial size of 9x0 width,height. > Fix is to make sur