1
vote
Removing a slot on a child button click
Shoes' blocks are sometimes tricky. The key here is to ask yourself, what is the parent method being called upon? self …
1
vote
Click event in Shoes
It's kinda hackish, but you can move the actual logic into a separate function like this:
def doStuff()
sleep(4) # Simulate slow process
visit '/result'
end
A …
1
vote
While loop in Ruby Shoes GUI ToolKit
I don't know how you're using a while loop. Most likely you're trying to recreate the stack each iteration through the while loop, which is a bad idea. The two solutions …
1
vote
Integrate Shoes into Aptana Studio RadRails
If you have the file in a Ruby project, you can do the following:
Go to Run -> External Tools -> External Tools...
Create a new tool, name it something (like, say, "Shoes") …
3
votes
How can I subclass in Shoes?
Let me guess, you're trying to do something like this:
class MyClass < Shoes
stack :width => 200 do
subtitle 'People who like ponies'
para 'TheTXI'
para 'Pesto' …
1
vote
Threading In Shoooes
It's pretty easy to manipulate text across threads. Try this code, for example:
Shoes.app do
@text = para 'Do you like ponies?'
Thread.new do
sleep(4)
@text.text += " …
1
vote
Shoes problems: clipboard and scroll bar
First of all, the easy one: change the line in the Copy button to app.clipboard = @sql.text.
Second, as far as the scrollbar goes, this is a …
0
votes
Hover and menus and buttons
Here is an example that should show you the logic you need in order to accomplish this. It would obviously get out of hand if you had a bunch of these menus:
Shoes.app :title => …
3
votes
How can I get vertical alignment in flow slot in Shoes?
To my knowledge, there's no style for vertical alignment. There is horizontal alignment which is useful in stacks:
Shoes.app (:title => "Horizontal Alignment", :width => 300, …
4
votes
How can I use the progress bar in Shoes?
First of all, sharing data between two windows in Shoes is a royal pain. I don't recommend it. Instead, hide the contents of the first window and bring up the progress bar in its place.
S …
2
votes
Where to put ruby .gem files so that Shoes.setup can find them?
The code looks fine. For example, this is just peachy:
Shoes.setup do
gem 'RedCloth'
end
require 'RedCloth'
Shoes.app do
para RedCloth.new('*awesome*').to_html
end
…
3
votes
How can I make a simple text editing application in Shoes?
Shoes.app :width => 300, :height => 450 do
@text = edit_box :width => 1.0, :height => 400
btn = button 'Indent!'
btn.click do
ugly_txt = @text.text
lines = ugly_tx …
1
vote
How to get a stopwatch program running?
Based upon the additional code rkneufeld posted, this class requires a timer that is specific to Tk. To do it on the console, you could just create a loop that calls tick over and over. Of course …
0
votes
Shoes and heavy operation in separate thread
Without seeing your code, I can't give you any specific guidance. But this code, for example, works just fine for me. Note that if the tedious calculations complete while the dialog is up, you wo …
1
vote
ruby - shoes - edit_line function call
If you just want to see the data when an edit_line changes, you can make use of the change method and the text method:
Shoes.app do
data = [1,2,3,4] # c …
