0
votes
2answers
70 views
Best way to create GOOD LOOKING, multi-platform, desktop Ruby apps?
Hi everyone,
I've got an idea for an idiotically simple application, one that converts HAML and SASS into HTML & CSS files for the user by watching directory changes (like Comp …
1
vote
1answer
24 views
Automatic height of edit box
My shoes application has three items stacked on top of each other (with a stack, of course), in order:
A banner
An edit box
Two buttons in a flow
What I want to do is have the …
0
votes
1answer
17 views
Centring a flow in Shoes
Can I center the contents of a flow in Shoes?
I know that a paragraph can be centred like:
para 'Centred paragrpah', :align=>'center'
However, this does not work with flows: …
0
votes
2answers
121 views
Run Shoes clone in IronRuby
I found cool article on Creating cross platform GUI's with IronRuby where someone re-created the Shoes DSL by _why the lucky stiff in IronRuby.
Awesome right!
So, I downloaded …
0
votes
2answers
76 views
How do I use Ruby1.9 with Shoes?
Shoes wraps it's own Ruby install, right?
I can't use Fiber which is a Ruby1.9 feature. And, I want to use a Fiber for creating a generator.
Here's my code (so you can make sure …
0
votes
2answers
184 views
Problem in Ruby Shoes packaging?
The (Ruby Shoes) packaging solution from Hacketyhack.net doesnt work.
Can anyone point me to an alternative?
0
votes
1answer
38 views
How can I create a hidden button in Shoes?
In Shoes, I'd like to create a button that is initially hidden. I've tried passing :hidden => true as part of the button style, as well as calling @button.hide() after creating it, …
0
votes
3answers
498 views
Can’t install gems that depend on hoe
I can't seem to install the twitter gem in my shoes app.
When I try...
Shoes.setup do
gem 'twitter'
end
require 'twitter'
I get
hoe requires RubyGems version >= 1.3.1
…
0
votes
2answers
265 views
dropdown select box with “filter as you type” in shoes
Question: Does anyone have an example of a "filter as you type" dropdown control using Shoes?
Examples: If you are looking for examples of what i am talking about, see these.
ht …
1
vote
1answer
41 views
Why do I lose my instance variables when I invoke Shoes#’visit’ ?
I'm sure this has to do with the intricacies mentionned in Shoes > Manual > Rules but I just don't get it. If someone would care to explain why @var == nil in the following code .. …
1
vote
1answer
39 views
Shoes: Element.width return 0
I don't understand why the width function is implemented on all elements if it returns 0 for non-zero width elements. The following returns 0 for me.
Shoes.app do
p = para "My w …
0
votes
1answer
27 views
How to make an element take up all-the-width-that-is-left?
Shoes.app do
flow do
file = "something with variable length"
para "Loading #{file}: "
progress :width => -300
end
end
As you can see from the code I am trying …
1
vote
2answers
57 views
private method ‘split’ called for (Shoes::EditLine):Shoes::EditLine
Hi. I am trying to write a simple program that takes a rgb value and changes the background to that color using Shoes (Raisins revision 1134). Here is my code:
Shoes.app :title =& …
2
votes
2answers
179 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 a …
1
vote
1answer
139 views
Run Shoes gui app in IDE
Is there any way to write Shoes application using IDE (NetBeans for example)?
I hadn't found this solution and I don't like running Shoes app, selecting files, run.
I'm sure code …
