[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

best gui toolkit

Roman Rapido

11/29/2008 4:07:00 PM

What is the best GUI toolkit for Ruby?
--
Posted via http://www.ruby-....

28 Answers

Alex Fenton

11/29/2008 4:18:00 PM

0

Warren Dulnuan wrote:
> What is the best GUI toolkit for Ruby?

The one that does all the things you need it to do.

a

Tim Hunter

11/29/2008 4:38:00 PM

0

Warren Dulnuan wrote:
> What is the best GUI toolkit for Ruby?

This is pretty much a perma-thread. Try searching for "ruby best gui
toolkit library" in Google.

--
RMagick: http://rmagick.ruby...

Roman Rapido

11/29/2008 4:51:00 PM

0

Tim Hunter wrote:
> Warren Dulnuan wrote:
>> What is the best GUI toolkit for Ruby?
>
> This is pretty much a perma-thread. Try searching for "ruby best gui
> toolkit library" in Google.

Perma thread in Google? i found ten needle thread in yahoo.
--
Posted via http://www.ruby-....

Vladimir Fekete

11/29/2008 5:26:00 PM

0


easy to learn, easy to implement : gtk

less easy to learn and implement : qt

V.


On Sun, Nov 30, 2008 at 01:07:12AM +0900, Warren Dulnuan wrote:
> What is the best GUI toolkit for Ruby?
> --
> Posted via http://www.ruby-....
>
>

Phlip

11/29/2008 6:12:00 PM

0

Warren Dulnuan wrote:

> What is the best GUI toolkit for Ruby?

The most widespread and popular GUI system is the web and HTML, so the leading
GUI for Ruby is Ruby on Rails. It makes many systems, such as Ajax, so easy that
a Rails project is competitive with desktop GUIs, such as Java or Visual Basic,
in many spaces.

--
Phlip

Robert Dober

11/29/2008 8:25:00 PM

0

On Sat, Nov 29, 2008 at 7:09 PM, Phlip <phlip2005@gmail.com> wrote:
> Warren Dulnuan wrote:
>
>> What is the best GUI toolkit for Ruby?
>
> The most widespread and popular GUI system is the web and HTML, so the
> leading GUI for Ruby is Ruby on Rails.
I guess that for somebody asking for a GUI and getting confronted with
Rails might be err frightening at least.
But the Webinterface idea is not a bad one per se. But you could look
at many tools, starting from a very basic WEBrick to Merv, Mongrel and
I am surely forgetting some...

HTH
Robert
--=20
Ne baisse jamais la t=EAte, tu ne verrais plus les =E9toiles.

Robert Dober ;)

Marc Heiler

11/29/2008 9:00:00 PM

0

> I guess that for somebody asking for a GUI and getting confronted
> with Rails might be err frightening at least.

I somewhat agree but

> But the Webinterface idea is not a bad one per se.

I completely agree on this. I think the functionality of the www + js +
css
is very similar to the "traditional" GUI world.

To find the "best" traditional GUI toolkit without any further criterias
is just
asking for disagreement.

For me I would answer that I am still looking for it ;) but I am very
happy with ruby-gtk, especially because of the wiki. (For some reason, I
am really lost without documentation, and ruby-qt does not really have a
wiki AFAIK.)

FXRuby has Lyle which is a super + but I think it also has no wiki.

Tk is a bit old IMO now, and wxruby sounds nice in theory but it used to
have a little problems in the past so i gave up quite on it (since
ruby-gtk and ruby-qt work for me already)

What I personally miss most is CSS in the GUI worlds. Especially the
ease of modifying looks in CSS. This sucks in GTK. I really hate that
part ... :(
CSS with all its minor flaws it may have, really made customizing
trivial (never mind that you can make it complex, but the basic
principle is super easy and works super nice).
--
Posted via http://www.ruby-....

James Britt

11/29/2008 9:32:00 PM

0

Phlip wrote:
> Warren Dulnuan wrote:
>
>> What is the best GUI toolkit for Ruby?
>
> The most widespread and popular GUI system is the web and HTML, so the
> leading GUI


But the question was about "the best", not widespread or leading. (If
someone asked for the best programming language, would you suggest Java
or C++?)


I lay out a set of criteria for selecting a GUI toolkit for Ruby here:

http://www.ibm.com/developerworks/library/j-monkeybars/...

Feel free to ignore the second half of the article which is based on my
unassailable argument for using JRuby + Swing. :) Part if the article
discusses the pros and cons of that choice. (Despite my devotion to
Monkeybars, I'm using Ruby's bindings for KDialog for a few of my
desktop helper apps until I see a need for something more than a quick
dialog box.)

I did not include HTML, though. That's a whole other thread, given the
wealth of robust Ruby Web tools. (And most widespread != best, for all
the same reasons why picking the best desktop GUI tool is so subject to
particular needs.)

Asking for the best of anything is a problem because no one agrees on
what "best" means, so specific requirements (platform, licensing, cost
of tools, available widgets, packaging and deployment options, WYSIWYG
editors, etc.) are critical.

While this is something of a permathread, the available options are
constantly changing, so relying on past discussions is sure to leave out
the latest and greatest. It's useful to revisit it from time to time
(unless someone is faithfully maintaining an up-to-date and objective
resource on Ruby GUI choices).



--
James Britt

www.happycamperstudios.com - Wicked Cool Coding
www.jamesbritt.com - Playing with Better Toys
www.ruby-doc.org - Ruby Help & Documentation
www.rubystuff.com - The Ruby Store for Ruby Stuff

rd

11/30/2008 1:52:00 AM

0

Warren Dulnuan wrote:
> What is the best GUI toolkit for Ruby?


If you were so inclined, you could use JRuby and Swing.


Stefano Crocco

11/30/2008 1:15:00 PM

0

Alle Saturday 29 November 2008, Marc Heiler ha scritto:
> For me I would answer that I am still looking for it ;) but I am very
> happy with ruby-gtk, especially because of the wiki. (For some reason, I
> am really lost without documentation, and ruby-qt does not really have a
> wiki AFAIK.)

qtruby doesn't have a wiki, but there's a lot of documentation you can use.
It's true that most of it it's written for programming with Qt in C++ and not
in ruby, but I think it should be easy to understand all the same. I may be
wrong here, however: I know C++ and, indeed, I started programming Qt in C++
before switching to ruby, so the documentation wasn't a problem for me.

Here's a list of the documentation availlable for qt(ruby) that I know of:
* http://doc.trolltech.com/4.4/...: the official Qt documentation, for
C++. It also contains one tutorial and several examples, many of which are
explained almost line by line. qtruby includes the sources for both the
tutorial and the examples in ruby.
* http://techbase.kde.org/Development/Lang...: it documents the main
differences between programming with Qt in C++ and in ruby.

Stefano