Is Ruby any good for GUI development? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T10:30:23Z http://stackoverflow.com/feeds/question/115501 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/115501/is-ruby-any-good-for-gui-development 9 Is Ruby any good for GUI development? David Arno 2008-09-22T15:26:11Z 2009-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#115521 5 Answer by William Keller for Is Ruby any good for GUI development? William Keller 2008-09-22T15:28:28Z 2008-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#115524 0 Answer by Dustin for Is Ruby any good for GUI development? Dustin 2008-09-22T15:28:57Z 2008-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#115601 3 Answer by Bryan Oakley for Is Ruby any good for GUI development? Bryan Oakley 2008-09-22T15:39:26Z 2008-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#115603 4 Answer by paulgreg for Is Ruby any good for GUI development? paulgreg 2008-09-22T15:39:38Z 2008-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#115638 15 Answer by Stewart Johnson for Is Ruby any good for GUI development? Stewart Johnson 2008-09-22T15:43:17Z 2008-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#115652 1 Answer by Jason Tennier for Is Ruby any good for GUI development? Jason Tennier 2008-09-22T15:44:52Z 2008-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#117195 1 Answer by Farrel for Is Ruby any good for GUI development? Farrel 2008-09-22T20:00:19Z 2008-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#118376 0 Answer by Dan Harper - Leopard CRM for Is Ruby any good for GUI development? Dan Harper - Leopard CRM 2008-09-23T00:18:24Z 2008-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#215301 0 Answer by Craig for Is Ruby any good for GUI development? Craig 2008-10-18T17:24:40Z 2008-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#215344 2 Answer by sir_lichtkind for Is Ruby any good for GUI development? sir_lichtkind 2008-10-18T17:59:33Z 2008-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#401408 0 Answer by sammich for Is Ruby any good for GUI development? sammich 2008-12-30T20:29:23Z 2008-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#1671946 0 Answer by pierr for Is Ruby any good for GUI development? pierr 2009-11-04T06:08:35Z 2009-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#1795915 0 Answer by prasadvk for Is Ruby any good for GUI development? prasadvk 2009-11-25T10:09:56Z 2009-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>