Re: FOSDEM talk: "From Oracle to Apache: News from NetBeans Community"

2020-02-03 Thread Patrik Karlström
It was really nice to meet in person with parts of what makes NetBeans NetBeans. Thank you. /Patrik Den mån 3 feb. 2020 kl 14:54 skrev Geertjan Wielenga : > Hi all, > > Several of us on the mailing list were at FOSDEM in Brussel yesterday > (Neil, Jan Lahoda, Martin Entlicher, Patrik

Re: NB 11.3-beta: Gradle Configurations and Dependencies don't show

2020-02-03 Thread Scott Palmer
I’ve filed https://issues.apache.org/jira/browse/NETBEANS-3789 > On Feb 2, 2020, at 10:11 PM, Scott Palmer wrote: > > > >> On Feb 2, 2020, at 3:57 PM, Laszlo Kishalmi > > wrote: >> >> Can you share at

Re: Memory usage text rendering issue

2020-02-03 Thread Laszlo Kishalmi
+1 for make it more simple! On 2/3/20 1:07 PM, Peter Hull wrote: On Mon, 3 Feb 2020 at 15:43, Eirik Bakke wrote: You could make it work, but it will be easier to just redo the drawing code directly. And it can really be something much simpler than what is there now--no gradients etc, axis

Re: Memory usage text rendering issue

2020-02-03 Thread Peter Hull
On Mon, 3 Feb 2020 at 15:43, Eirik Bakke wrote: > You could make it work, but it will be easier to just redo the drawing > code directly. And it can really be something much simpler than what is > there now--no gradients etc, axis marker lines or anything. Just a single > polygon of a solid

Re: RCP JavaFX

2020-02-03 Thread Neil C Smith
On Mon, 3 Feb 2020, 20:06 Ernie Rael, wrote: > It may be that I'm not understanding the jfx plugin. Can it be used "as > is" for plain old java or RCP? > Could be interesting if you can get it to work in an RCP as it downloads JavaFX on demand, rather than just wrapping it. Could be good for

Re: RCP JavaFX

2020-02-03 Thread Ernie Rael
I have an abandoned NB-80 RCP application which uses JavaFX. My goal is to revive the RCP app under NB-11+ and a modern jfx. Using NB-11.3 and jfx-13 lets me exercise 11.3. I'm still using ant. I saw a javafx v13 plugin on 11.2. I thought that plugin would provide a module that my RCP app

Debugger exception when debugging JavaFX code

2020-02-03 Thread Ernie Rael
I was just looking at the bug https://issues.apache.org/jira/browse/NETBEANS-2559 and the NetBeans code which is related.A comment in the code indicates that /exceptions are expected/. The problem is that NetBeans shows a dialog, due to an "Exceptions.printStackTrace(ex);" in a catch. I added

Re: FOSDEM talk: "From Oracle to Apache: News from NetBeans Community"

2020-02-03 Thread Brad Walker
Nice! -brad w. > On Mon, Feb 3, 2020 at 10:54 PM Geertjan Wielenga > wrote: > > > > Hi all, > > > > Several of us on the mailing list were at FOSDEM in Brussel yesterday > > (Neil, Jan Lahoda, Martin Entlicher, Patrik Karlstrom) and it was a > pretty > > good event -- I think we should treat

Re: FOSDEM talk: "From Oracle to Apache: News from NetBeans Community"

2020-02-03 Thread David Green
Very good presentation! Thanks, Dave On Mon, Feb 3, 2020 at 7:54 AM Geertjan Wielenga wrote: > Hi all, > > Several of us on the mailing list were at FOSDEM in Brussel yesterday > (Neil, Jan Lahoda, Martin Entlicher, Patrik Karlstrom) and it was a pretty > good event -- I think we should treat

RE: Memory usage text rendering issue

2020-02-03 Thread Eirik Bakke
> Sorry if it wasn't clear - this is all about Scott Palmer's issue with the > HeapView widget Yes! > and the current code *does* go through a BufferedImage. That's what I figured... I'd recommend redoing it without. > I've made some mods which do improve things IMO, but these are drawing >

Re: Memory usage text rendering issue

2020-02-03 Thread Peter Hull
On Mon, 3 Feb 2020 at 15:12, Eirik Bakke wrote: > Do you have HiDPI scaling activated? (Check "Scale and Layout" in the > windows Display control panel.) > > To make things like this work well on HiDPI screens, it's best not to go > through a BufferedImage, but rather draw directly on the

RE: Memory usage text rendering issue

2020-02-03 Thread Eirik Bakke
Do you have HiDPI scaling activated? (Check "Scale and Layout" in the windows Display control panel.) To make things like this work well on HiDPI screens, it's best not to go through a BufferedImage, but rather draw directly on the supplied Graphics2D. If you want to use a BufferedImage, you

Re: Memory usage text rendering issue

2020-02-03 Thread Peter Hull
I made a simple example, https://gist.github.com/pedro-w/b089e23db7aca037266b41cfc9c2ec2f On windows, I see this: [image: Annotation 2020-02-03 142402.jpg] I think the unpleasant rendering in the 'Rendered via Image' sample accounts for what you can see in the Memory usage widget (it's worse for

Re: FOSDEM talk: "From Oracle to Apache: News from NetBeans Community"

2020-02-03 Thread Junichi Yamamoto
Cool! Thanks, Junichi On Mon, Feb 3, 2020 at 10:54 PM Geertjan Wielenga wrote: > > Hi all, > > Several of us on the mailing list were at FOSDEM in Brussel yesterday > (Neil, Jan Lahoda, Martin Entlicher, Patrik Karlstrom) and it was a pretty > good event -- I think we should treat FOSDEM as a

Re: Memory usage text rendering issue

2020-02-03 Thread Peter Hull
On Mon, 3 Feb 2020 at 12:38, Scott Palmer wrote: > How is the BufferedImage created? What is the pixel format? > It is BufferedImage.TYPE_INT_ARGB Reference:

FOSDEM talk: "From Oracle to Apache: News from NetBeans Community"

2020-02-03 Thread Geertjan Wielenga
Hi all, Several of us on the mailing list were at FOSDEM in Brussel yesterday (Neil, Jan Lahoda, Martin Entlicher, Patrik Karlstrom) and it was a pretty good event -- I think we should treat FOSDEM as a place where we can get together every year and share new insights etc around NetBeans. One of

Re: Memory usage text rendering issue

2020-02-03 Thread Scott Palmer
How is the BufferedImage created? What is the pixel format? Scott > On Feb 3, 2020, at 7:29 AM, Peter Hull wrote: > >  >> On Sun, 2 Feb 2020 at 18:28, Scott Palmer wrote: >> Does anyone else see really ugly text in the memory usage widget on the >> toolbar? > I had a quick look at this.

Re: Memory usage text rendering issue

2020-02-03 Thread Peter Hull
On Sun, 2 Feb 2020 at 18:28, Scott Palmer wrote: > Does anyone else see really ugly text in the memory usage widget on the > toolbar? > I had a quick look at this. It's very odd, rendering text into a Graphics2D derived from a BufferedImage (which is what the current dropshadow does) comes out

Re: RCP JavaFX

2020-02-03 Thread Luff,Chris
You do not need any plugins. If you want to turn on integration with SceneBuilder that is in Preferences->Java->JavaFx. To create a JavaFX project you need to include at least org.openjfx.javafx-base as a dependency for you project. You can then include the org.openjfx javafx plugin for Gradle

AW: HTML5/JS file refusing to import files to specified directory

2020-02-03 Thread Christian Lenz
Hey Trezo, copying over a file to another Folder while saving it, is just supported in a PHP Project, not in an HTML5 project. If you think that this could be good inside of an HTML5 project too, please create a ticket for that here: https://issues.apache.org/jira/browse/NETBEANS-1802 Cheers