I'm currently researching various cross-platform frameworks suitable for developing an offline html5 authoring application. Beyond cross-platform operation (Windows, Linux, OS-X), my app also has these major requirements:
Embedded database
Embedded (or, secondarily, a mainstream browser) HTML5 rendering engine
High-functioning editable DND tree, splitter panel, and rich text editor widgets
Medium-duty image processing
USB stick portability
I've taken a serious look at these frameworks:
jQuery (JavaScript), HTML5, CSS3
Google Web Toolkit [GWT] (Java to JavaScript)
JavaFX 2.0 (Java)
QT (C++ (Java binding available))
Xulrunner (XML, JavaScript)
GTK+ (C)
Adobe Air
Pyjamas
I've spent a minor fortune on books for all these technologies, and I've begun coding prototypes to see how fast and how far each framework could take me.
Initially, JavaFX 2.0 took me furthest the fastest, by a big margin. The simple explanation for this is, with JavaFX, all the tools, IDEs, libraries, documentation, code examples, turnarounds, debugging, community support, manufacturer (Oracle) support, and learning curves came together with the least amount of impedance mismatching.
Probably JavaFX's biggest win was it's ease of implementing a client-side embedded database (Derby). With all the other frameworks, this task was, surprisingly, considerably more difficult and 'kludgy.'
Unfortunately, I ran into a serious JavaFX stumbling block when I discovered the WebView widget does not execute JavaScript from local file:// URLs. QtWebKit, GTKWebKit, Safari, and Opera (all WebKit based) also exhibit the same file:// JavaScript blocking behavior (however Chrome does not), so I surmise this is a default WebKit security measure.
At the time, I considered the file:// JavaScript problem a JavaFX showstopper so I moved on to developing jQuery, GWT, and Xulrunner prototypes. As a result, though, my prototyping productivity took a huge nosedive. The Frankensteining and impedance mismatching with these other frameworks was noticeably worse than with JavaFX.
So much so that after many weeks wandering around in the weeds, I returned to my JavaFX prototype highly motivated to find a work around. I eventually solved the problem by embedding Java SE 6's web server in the prototype, and connecting to local files by loading the JavaFX WebEngine with URLs in the following format: "http://localhost:58357/xxxxx.html" Unblocking the JavaFX prototype in this manner was like coming home. It was a real breath of fresh air, not to mention big, big productivity booster.
Based on these experiences, here are some insights that might prove helpful in the JavaFX vs Qt debate.
- I concur with the question of JavaFX vs Qt as those two frameworks respectively ended up being my
#1 and #2 favorite, most productive choices.
- That said, I'd add the jQuery/HTML5/CSS3 framework into the mix. This
framework is so strong and so loaded with potential for x-platform
application development that I'd go so far as to say it's
inescapable. In my wide-ranging search for widget controls, the
leading candidates for editable DND tree, splitter panel, and rich
text wysiwyg editor widgets turned out to be open source jQuery
plugins. Once you get around the local file:// issue,
jQuery/HTML5/CSS3 is nicely compatible with the JavaFX WebView
widget. The one area where jQuery/HTML5/CSS3 falls short is with
client-side database storage. This is where a combination of JavaFX
and jQuery/HTML5/CSS3 frameworks is proving to be extremely powerful.
- Even though they're written in C++, Qt modules have Java and
JavaScript language wrappers meaning developers don't need to know or use
C++ in order to use Qt.
- This brings up the point that it doesn't have to be a JavaFX vs Qt,
either-or question. In fact, a more constructive and rewarding
question could well be, "JavaFX AND Qt?"
- This brings up another important point: I'm quickly discovering my
best cross-platform application development framework is actually an
amalgam of JavaFX 2, straight-up Java SE, Swing (for a legacy custom
widget), WebKit, and jQuery/HTML5/CSS3. Down the road, GWT,
associated third-party GWT libraries, and Qt modules could
potentially join the mix. The point here is the plan to use a single,
genetically pure framework quickly went out the window.
- Currently, the one common thread that binds this entire hybrid
framework together is plain-old Java SE. And because JavaFX 2 is
built on Java SE, my vote is to start with JavaFX 2, then add Swing,
WebKit, jQuery/HTML5/CSS3, GWT, and Qt on an as-needed basis.
- Finally, this article helped convince me to jump on the JavaFX wagon.
http://fxexperience.com/2012/04/interview-with-peter-zhelezniakov/
--H