vote up 2 vote down star
2

I was taking a look at Shoes which seems like a very nice tool for quick GUI applications. The common elements/controls, however, don't seem to include the equivalent of a list/report view (e.g., ListView in Windows, NSTableView in OS X).

Did I just miss this, or does it not (yet) exist?

flag
Added ruby tag for clarity – Keltia Jan 16 at 14:42
Thanks - I didn't want to do that initially as I didn't want to create noise for Ruby-only people. – Jim Jan 16 at 15:33
Do you need ListView or a Virtual ListView? – Sam Saffron Jan 19 at 0:43

3 Answers

vote up 1 vote down

There doesn't seem to be. Shoes Classes doesn't seem to mention anything similar.

I guess it shouldn't be too difficult to manually create something similar. The good-vjot.rb sample script is probably the closest I can think of, although it's hardly identical..

Martin DeMello's Gooey Challenge (Using Shoes widgets to build custom Shoes controls) may be of some help

link|flag
vote up 0 vote down
Shoes.app do
  stack do
    @l = list_box :items => ["YES", "NO"] do
      alert @l.text
    end
  end
end
link|flag
vote up 0 vote down

If you mean output a large quantity of textual data such as a report or table then there's a nice simple app in the shoebox called the Simple Table Class which works very nicely. Before I found it i was ready to give shoes up - but this class solved my problem in minutes.

Looking for it i stumbled across laces which includes a class called The Tablie. I haven't tried it but I am suddenly intrigued....

link|flag

Your Answer

Get an OpenID
or

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