vote up 9 vote down star

I am considering creating a GUI-based tool that I want to be cross-platform. I've dismissed Java, as I personally do not like Swing. I'm currently considering C# and using Mono to make it cross-platform. However I'm wondering whether new-fangled cross-platform languages like Ruby can offer me a decent GUI development environment.

flag

80% accept rate
I actually use one cross-platform app that has a toolkit I could use: Netbeans. I think it is based on Swing, but you have Netbeans as an abstraction layer. I'd love to do something in Ruby, but all of the frameworks mentioned in the answers look pathetically immature. If only Microsoft had made .Net cross-platform... – yar May 6 at 10:35

13 Answers

vote up 15 vote down check

The short answer: no (because you said cross-platform).

The long answer: cross-platform GUIs are an age-old problem. Qt, GTK, wxWindows, Java AWT, Java Swing, XUL -- they all suffer from the same problem: the resulting GUI doesn't look native on every platform. Worse still, every platform has a slightly different look and feel, so even if you were somehow able to get a toolkit that looked native on every platform, you'd have to somehow code your app to feel native on each platform.

It comes down to a decision: do you want to minimise development effort and have a GUI that doesn't look and feel quite right on each platform, or do you want to maximise the user experience? If you choose the second option, you'll need to develop a common backend and a custom UI for each platform.

ruby is not a bad choice for your common backend.

link|flag
Even though I don't /like/ you answer - as it isn't what I wanted to hear - this is the most useful (and honest! :) answer. – David Arno Sep 24 '08 at 15:48
Doesn't SWT for Java try to resolve the problem with having a native GUI in a cross platform environment? – Kibbee Oct 18 '08 at 18:05
I think the only GUI that people accept as "native" but isn't native is the web browser. That's why I like RIAs so much. – Nosredna Jul 11 at 3:44
vote up 6 vote down

Ruby has Shoes, but that might be a little lightweight.

link|flag
vote up 0 vote down

Not sure about Ruby, but you mentioned Mono/C# -- I've used Mono and GTK# quite a bit lately and am very impressed. Seems to be pretty stable and cross-platform portability is nice.

link|flag
vote up 3 vote down

With Ruby you can use Tk, which is a mature, cross platform UI toolkit. It is the defacto GUI toolkit for Python and Tcl, and is also available for use with Perl. The most recent versions of Tk make use of native widgets which addresses the primary concern that Tk looks dated.

A language-neutral website devoted to Tk is http://www.tkdocs.com/ which includes examples coded in both Ruby and Tcl.

link|flag
vote up 4 vote down

You'll have Ruby/GTK, which allows you to use the GTK toolkit under linux. I think that should be working under Windows and Mac Os (as for Gimp, Gaim and so on).

A french magazine post a good beginner article about Ruby/GTK.

Edit : According to main page on the SourceForge project, Ruby-Gnome2 (aka Ruby/GTK) is cross-platform (Windows, Linux, Mac Os).

link|flag
vote up 2 vote down

There's also FXRuby which has the benefit of a Pragmatic Programmer book, as well as wxRuby which is based on the wxWidgets C++ GUI framework.

link|flag
vote up 1 vote down

Ruby/GNOME2 works pretty well. You can use Glade to drag and drop window elemtns and load it the UI from your Ruby app.

link|flag
vote up 0 vote down

Have you looked at SWT on Java? It uses native widgets and is much easier to get a nice interface with it than Swing.

link|flag
vote up 0 vote down

Java is still an option and its a good option too. If you want a native look and feel use SWT/JFace. You can really make powerful UI applications with eclipse's RCP framework.

link|flag
vote up 2 vote down

being a wxperl programmer, i know that wxruby is there as well. Wx is pretty fast and has true crossplatform look and feel.

link|flag
vote up 0 vote down

If you ever venture over to the mac, check out RubyCocoa. It is obviously only for OSX, but I've seen a lot of folks scratch their head when looking to do GUI development on the mac and if you love ruby RubyCocoa is a lot of fun.

link|flag
vote up 0 vote down

Take a look at Ruby GUI 2008 Survey Results and the discussion here. You will love to know.

link|flag
vote up 0 vote down

I strongly back Qt for cross platform GUI development. It's awesome and APIs are very intuitive. GUI look and feel almost native with Qt because it uses GUI controls provided by underlying OS.

Though the basic interface with C++ other language bindings are available. For Ruby RubyQt is available. Unfortunately it's very immature.

link|flag

Your Answer

Get an OpenID
or

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