Is Ruby any good for GUI development? - Stack Overflow most recent 30 from stackoverflow.com2009-11-25T10:30:23Zhttp://stackoverflow.com/feeds/question/115501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development9Is Ruby any good for GUI development?David Arno2008-09-22T15:26:11Z2009-11-25T10:09:56Z
<p>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.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115521#1155215Answer by William Keller for Is Ruby any good for GUI development?William Keller2008-09-22T15:28:28Z2008-09-22T15:28:28Z<p>Ruby has <a href="http://shoooes.net/" rel="nofollow">Shoes</a>, but that might be a little lightweight.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115524#1155240Answer by Dustin for Is Ruby any good for GUI development?Dustin2008-09-22T15:28:57Z2008-09-22T15:28:57Z<p>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.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115601#1156013Answer by Bryan Oakley for Is Ruby any good for GUI development?Bryan Oakley2008-09-22T15:39:26Z2008-09-22T15:39:26Z<p>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. </p>
<p>A language-neutral website devoted to Tk is <a href="http://www.tkdocs.com/" rel="nofollow">http://www.tkdocs.com/</a> which includes examples coded in both Ruby and Tcl. </p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115603#1156034Answer by paulgreg for Is Ruby any good for GUI development?paulgreg2008-09-22T15:39:38Z2008-09-22T16:23:26Z<p>You'll have <a href="http://ruby-gnome2.sourceforge.jp/" rel="nofollow">Ruby/GTK</a>, 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).</p>
<p>A <a href="http://www.unixgarden.com/index.php/programmation/ruby-gtk-le-developpement-d%E2%80%99applications-de-bureau-a-votre-portee" rel="nofollow">french magazine post a good beginner article</a> about Ruby/GTK.</p>
<p>Edit : According to main page on <a href="http://sourceforge.net/projects/ruby-gnome2/" rel="nofollow">the SourceForge project</a>, Ruby-Gnome2 (aka Ruby/GTK) is cross-platform (Windows, Linux, Mac Os).</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115638#11563815Answer by Stewart Johnson for Is Ruby any good for GUI development?Stewart Johnson2008-09-22T15:43:17Z2008-09-22T15:43:17Z<p><strong>The short answer:</strong> no (because you said <em>cross-platform</em>).</p>
<p><strong>The long answer:</strong> 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 <strong>and</strong> 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 <em>feel</em> native on each platform.</p>
<p>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.</p>
<p>ruby is not a bad choice for your common backend.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/115652#1156521Answer by Jason Tennier for Is Ruby any good for GUI development?Jason Tennier2008-09-22T15:44:52Z2008-09-22T15:44:52Z<p>There's also <a href="http://www.fxruby.org/" rel="nofollow">FXRuby</a> which has the benefit of a Pragmatic Programmer book, as well as <a href="http://wxruby.org" rel="nofollow">wxRuby</a> which is based on the wxWidgets C++ GUI framework.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/117195#1171951Answer by Farrel for Is Ruby any good for GUI development?Farrel2008-09-22T20:00:19Z2008-09-22T20:00:19Z<p>Ruby/GNOME2 works pretty well. You can use Glade to drag and drop window elemtns and load it the UI from your Ruby app.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/118376#1183760Answer by Dan Harper - Leopard CRM for Is Ruby any good for GUI development?Dan Harper - Leopard CRM2008-09-23T00:18:24Z2008-09-23T00:18:24Z<p>Have you looked at SWT on Java? It uses native widgets and is much easier to get a nice interface with it than Swing.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/215301#2153010Answer by Craig for Is Ruby any good for GUI development?Craig2008-10-18T17:24:40Z2008-10-18T17:24:40Z<p>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.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/215344#2153442Answer by sir_lichtkind for Is Ruby any good for GUI development?sir_lichtkind2008-10-18T17:59:33Z2008-10-18T17:59:33Z<p>being a wxperl programmer, i know that wxruby is there as well. Wx is pretty fast and has true crossplatform look and feel.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/401408#4014080Answer by sammich for Is Ruby any good for GUI development?sammich2008-12-30T20:29:23Z2008-12-30T20:29:23Z<p>If you ever venture over to the mac, check out <a href="http://rubycocoa.sourceforge.net/HomePage" rel="nofollow">RubyCocoa</a>. 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.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/1671946#16719460Answer by pierr for Is Ruby any good for GUI development?pierr2009-11-04T06:08:35Z2009-11-04T06:08:35Z<p>Take a look at <a href="http://www.pressure.to/ruby%5Fgui%5Fsurvey/" rel="nofollow">Ruby GUI 2008 Survey Results</a> and the discussion <a href="http://old.nabble.com/Desktop-GUI-apps-in-Ruby-td26088853.html#a26088853" rel="nofollow">here</a>. You will love to know.</p>
http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development/1795915#17959150Answer by prasadvk for Is Ruby any good for GUI development?prasadvk2009-11-25T10:09:56Z2009-11-25T10:09:56Z<p>I strongly back Qt for cross platform GUI development. Its awesome and APIs are very intuitive. GUI look and feel almost native with Qt because it uses GUI controls provided by underlying OS. </p>
<p>Though the basic interface with C++ other language bindings are available. For Ruby RubyQt is available. Unfortunately its very immature. </p>
<p>Thanks<br>
-- PK<br>
<a href="http://roorky.com" rel="nofollow">http://roorky.com</a><br>
Interactive Programming Books</p>