5
votes
5answers
685 views
What is best way to debug Shoes applications?
Shoes has some built in dump commands (Shoes.debug), but are there other tools that can debug the code without injecting debug messages throughout? Something like gdb would be great.
4
votes
2answers
247 views
Tab movement in shoes
Hello,
I have a problem I have a:
stack {
flow {
para "Enter text:"
edit_line
}
edit_box
}
(simplified version). When user is on edit_line and presses
tab, I want it to move to …
3
votes
2answers
246 views
Shoes and Gems
Code:
Shoes.setup do
gem 'mechanize'
end
require 'rubygems'
require 'mechanize'
Running Shoes on it says:
no such file to load -- mechanize
Thank you.
3
votes
5answers
572 views
Where can I find documentation on functions available in the Ruby Shoe GUI Toolkit?
Is there any documentation that discribes all the available functions and objects in shoe?
update: 2008.01.21
I am looking for a list of all the methods that can be called against an animate object.
…
3
votes
5answers
968 views
Programming a simple IRC (Internet-Relay-Chat) Client.
I started using IRC at a young age, and I have always been fascinated with it. As a language exercise, I was thinking about programming a simple IRC client in Ruby with Shoes as a graphical …
2
votes
1answer
267 views
Where to put ruby .gem files so that Shoes.setup can find them?
A lot of questions have been asked about gem support in Shoes, but none have answered where to put them. I've got Shoes Raisins 1134 on Windows XP, and I've downloaded dbi-0.4.1.gem and am trying to …
2
votes
1answer
140 views
Shoes problems: clipboard and scroll bar
The code below has (at least) two problems: the Copy button doesn't update the clipboard, and the edit_box doesn't show a vertical scroll bar when it should.
Shoes.app (:title => "Test", :width …
2
votes
2answers
205 views
Shoes Layout
I'm trying to produce a shoes layout like the following:
the text is giving me a problem. I tried:
stack {
flow {
check
stack {
para 'text 1'
para 'text 2'
…
2
votes
2answers
180 views
Method for building lightweight, cross-platform, text editor
I'm planning to build a simple, lightweight text editor that combines a great look with keyboard focused input.
I want to have a lot of control over things like antialiasing and all the graphics in …
2
votes
2answers
171 views
Click event in Shoes
On clicking a slot , I change the contents of the slot to provide user feed back, then call some code which takes several seconds to run. However the changes to the slot do not render until after the …
2
votes
2answers
241 views
Is Shoes’ idea of window dimensions broken on the Mac, or am I crazy?
Full disclosure: I'm very new to Ruby.
The following code seems like it should update the para's text with the app's current dimensions as you resize it.
Shoes.app do
stack do
@para …
2
votes
3answers
277 views
Does Shoes have a list view control?
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., …
2
votes
3answers
350 views
How do I change the icon of my Shoes App?
I was wondering if it was possible to change the my Shoes app's icon? I imagine its style-oriented, but I haven't been able to find anything on it.
Is this possible?
2
votes
1answer
818 views
Ruby (Shoes) - Wait for function to return value
I have a function that presents the user a combo-box.
def select_interface(interfaces)
list_box :items => interfaces do |list|
interface = list.text
end
### ideally should wait until …
2
votes
4answers
407 views
Shoes packager problem
Hi,
I used packager to make an executable file for the following code:
Shoes.app do
stack :margin => 10 do
@edit = edit_box :width => 1.0 do
@para.text = @edit.text
end
…
