Tagged Questions
The fxruby tag has no wiki summary.
8
votes
3answers
641 views
Ruby GUI (non-complex layouts)
I've done quite a bit of research on Ruby GUI design, and it appears to be the one area where Ruby tends to be behind the curve. I've explored the options of MonkeyBars, wxRuby, fxRuby, Shoes, etc. ...
2
votes
2answers
207 views
Installed fxruby over macports, now rubygems is broken
using OS X 10.5.6
I installed fxruby using
$sudo port install rb-fxruby
As suggested in the book.
It works, my hello world program worked correctly.
Now, though, other code that I have written ...
2
votes
4answers
815 views
Best way to create GOOD LOOKING, multi-platform, desktop Ruby apps?
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 Compass). Almost all the components ...
1
vote
1answer
93 views
how do I display a googlechart in ruby?
I was wondering how to display a chart made with gchartrb in ruby. I tried to do it by simply requiring the picture from the URL given but that gives the error "Bad URI". how do I do it? thanks
...
1
vote
0answers
73 views
How to change caret style of a fxruby text field?
I am building a small IDE with fxruby.
The default caret of FXTextField is a little bit ugly (a big tall thin 'I'), I hope I could change the caret style but can't find any help after several hours ...
0
votes
0answers
95 views
Installing the FXRuby Gem
I'm trying to install the FXRuby gem. I've installed Ruby and Fox with Homebrew on Mac OS 10.7 and I can't figure out how to make it work. Has anyone?
Heres the error print out I have received:
gem ...
0
votes
0answers
55 views
Can I call a GUI to prompt a user for input and return that input to the calling ruby script?
I have an existing script that takes a single parameter (a path to a config file) at run time. My goal is to make it a little easier to use by also allowing the user to omit the parameter and ...
0
votes
1answer
43 views
very noob question about ruby inheritance, ruby object inside FXRuby
first sorry for my poor english...I've a doubt..I'm reading the FXRuby for the pragmatic programmer..and I saw this code
require 'fox16'
include Fox
class HelloWindow < FXMainWindow
def ...
0
votes
1answer
21 views
FXRuby Application font
I want to change my application's font.
I want it to be in hebrew and english aswell.
How can I do that?
(I want all the applications content's to have this font)
0
votes
0answers
168 views
fox16.so (LoadError) trying to run FXRuby program
I followed the steps here:
https://github.com/lylejohnson/fxruby/wiki/Setting-Up-a-Linux-Build-Environment
Created a hello.rb file as described in the fxruby tutorial.
When I run hello.rb:
ruby ...
0
votes
1answer
87 views
Error in Building FXRuby from Source on Linux
I encounter an issue in building FXRuby from source. Below are the steps I did.
download the source from http://rubyforge.org/frs/?group_id=300&release_id=41247, click on FXRuby-1.6.19.tar.gz.
...
0
votes
2answers
57 views
In FXRuby when trying to specify a font I get an error “FXDCWindow::setFont: illegal or NULL font specified.”, how to fix this?
In Ruby when trying to specify a font I get an error "FXDCWindow::setFont: illegal or NULL font specified.". I tried doing it like this:
@font = FXFont.new(app, 'times')
I need to set a font in ...
0
votes
1answer
86 views
How to use drawText on FXCanvas in FXRuby?
I am trying to make text appear on a FXCanvas. when I use this code:
def score_box(event)
FXDCWindow.new(@canvas) do |dc|
dc.drawText(640, 450, @score)
end
end
but it gives me an error ...
0
votes
1answer
38 views
How to integrate FxRuby framework with Aptana Studio 3?
I want to use Aptana Studio 3 Beta for all my Ruby developments. I am planning to write a Windows appl. using FxRuby framework, but how to integrate this framework with Aptana Studio 3?
0
votes
2answers
86 views
How do I fetch images of the internet in FXRuby?
so let me preface this with the fact that I am a beginner at ruby and FXruby. I would like to know how I can fetch images by using a URL. This is the code I used when getting them off my desktop:
...
0
votes
1answer
42 views
Using the FXFont class
how do you use the FXFont class on FXRuby so that you can change the font and color of the text on your application? THANKS!
0
votes
1answer
117 views
FXRuby segfaults on require
So I'm trying to get some ruby code a friend of mine wrote running on my laptop, but it segfaults every time I fire it up. After a little debugging, it looks like FXRuby is the culprit, and the ...
0
votes
2answers
490 views
Installing FxRuby on Windows
Simple question: How to install FxRuby on windows.
I have installed ruby 1.9 using one click installer from http://rubyinstaller.org/
0
votes
1answer
83 views
FXRuby FXFileDialog box default directory
In FXRuby; how do I set the FXFileDialog to be at the home directory when it opens?