vote up 3 vote down star

For "best" I intend that the code shouldn't need, or need very few, platform specific tweaks.

flag
Wow this is a question that would require so much more context to give an intelligent answer. Downvoted. – Onorio Catenacci Dec 23 '08 at 14:58
Close to argumentative... – Tom Hawtin - tackline Dec 23 '08 at 15:00
1  
Downvoting is a little harsh. Just not upvoting it would have been sufficient, methinks. – Andrew Rollings Dec 23 '08 at 15:02
@Tom Hawtin - tackline--I agree; another good reason to downvote the question. – Onorio Catenacci Dec 23 '08 at 15:02
1  
Gotta agree with Andrew: downvoting this question is a bit harsh imho. – cletus Dec 23 '08 at 15:04
show 2 more comments

7 Answers

vote up 0 vote down

I would think that it depends on what kind of platforms you plan on targeting. Java will have the most platforms with a VM. However, if you just want to use Windows and Linux, you can use C# (using mono on linux).

link|flag
First confirm that you can get, and continue to get, Mono for any platform you customers might wish. Many major distros don't supply anything past Mono 1.2 or 1.9, with Ubuntu 9.10 and SUSE as exceptions. – NVRAM Nov 2 at 19:13
vote up 2 vote down

Java is certainly nice, but I've been doing just fine with Python and Qt via PyQt4 lately. I find that I get things done faster than I did in Swing or SWT, too.

So far, no platform-specific tweaks have been necessary, and Qt4 widgets look nice on different platforms. The Qt GUI builder is very nice, and using Python has enabled easy integration with some other cross-platform frameworks (notably VTK, scipy-cluster, and some SWIG-wrapped objects for interfacing with files output from a performance tool).

Note that Qt is not free unless you use it on open source projects.

link|flag
vote up -1 vote down

Based on your definition, no. Even wit the newest graphical libraries you can expect to do a bunch of testing on different platforms.

Flash would probably be the best. Wide spread and better at looking the same across different platforms.

link|flag
I’m not sure about today’s Flash’s performance but some years ago scrolling a list that was several thousand pixels high was anything but fun. :) – Bombe Dec 23 '08 at 15:05
vote up 8 vote down

I strongly recommend Java for cross-platform GUI development. In particular, I recommend the GUI builder that comes with the Netbeans IDE. It's very simple and very powerful. You can point and click and drag and drop to create a GUI, and easily customize the actions which various buttons and other components take.

I much prefer Python as a language, but none of the free tools for GUI development come anywhere close to this, and the same thing seems to be true for the other languages I've used. (I should point out that QT has wonderful GUI developers for various languages such as C and Python, but it's only free when used on open source projects.)

EDIT: QT has recently been relicensed as LGPL, so you're free to use it in commercial applications. The Python bindings for this (PyQT) have not been re-licensed.

link|flag
1  
I also recommend Netbeans. Its GUI Designer is so great I can compared it with Visual Studio. – m3rLinEz Dec 23 '08 at 15:12
1  
How good is it compared with Intellij Idea? I've heard very good things about NB, but I haven't found a direct comparison with IDEA – Oscar Reyes Dec 23 '08 at 20:07
I've never tried out IntelliJ because of it's non-free nature, so I'm not sure, although I've also heard excellent things about it. – Eli Courtwright Dec 26 '08 at 22:34
vote up 1 vote down

These days there are many languages that allow you to create cross-platform GUI applications efficiently. Java, Python, Tcl/tk, C#...

I think you need to define the requirements of your application a bit more, for instance:

  • Will the UI be Web-based, or desktop-based?
  • Is the application going to be a large or a small?
  • Will it feature some sort of "extension" feature (e.g. plug-ins)?
  • Will it function over a network, and is it likely to be distributed/load balanced?

The list can go on forever, work out the defining points about your application, and start researching the language based on the whole.

link|flag
vote up 0 vote down

Yes: use Eclipse RCP. You can write not only cross-platform, but e.g. multilingual applications with it. SWT provides the native look-and-feel for multiple platforms and windowing systems.

link|flag
vote up 1 vote down

As long as someone defines "platform independence" correctly, Java is the best.

Some people argue that C# is the best, but those people seem to misunderstand the term "platform independence" ;)

Note: I refer to the fact that C# is ported to Linux/Unixes only as long as Microsoft and Novel keep up their treaty. The community itself would never be able to maintain such huge platform as .NET

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.