Interest in overhauling the IDE user interface?

I'm digging into the Arduino IDE codebase now. It's not too complicated but it really seems like a mess. Basic compilation is done in a fairly convoluted way. There are a whole lot of references to compiling Java code. Is there a reason for this? I'm guessing there is a lot of history in this codebase, so I'm weighing fixing it vs replacing it. So far I have built a straightforward class that can successfully compile a sketch to a hex file. Adding support for alternate cores, multiple libs, and the other stuff should be fairly easy.

On the GUI, I've done some more prototyping. I'm trying to decide between using Swing or JavaFX. JavaFX is the future of desktop Java and a lot prettier. Unfortunately it doesn't have a robust text editor, so doing things like Syntax Highlighting won't be possible for a while. If I go with Swing then I can put something together very fast that will look decent, but it won't have access to the new JavaFX features. In particular, it won't have access to the nice WebView. I was really hoping to use the WebView for inline help / docs. Thoughts? Does anyone care what it's written in?

  • J