How do you make forms for your program in Ruby? Do you need some
particular software?
This question is very vague.  Please provide a more detail about what
you mean by "forms" in a Ruby program.
Blessings,
TwP
···
On 1/29/07, Rae <Raeka8@yahoo.com> wrote:
How do you make forms for your program in Ruby? Do you need some
particular software?
Rae wrote:
How do you make forms for your program in Ruby? Do you need some
particular software?
Hello Rae,
My advice is to use Glade as a visual designer of the forms and, of
course, GTK2 as GUI libraries. Using glade is very easy and after that,
just require 'libglade2' and read the whole form by using GladeXML
class.
For more details, check http://ruby-gnome2.sourceforge.jp/
Here is a video demo of how to use ruby with glade2:
http://redhanded.hobix.com/cult/rubyGnome2andglade2demo.html
Best regards,
Alin.
···
--
Posted via http://www.ruby-forum.com/\.
Alin Popa wrote:
Here is a video demo of how to use ruby with glade2: http://redhanded.hobix.com/cult/rubyGnome2andglade2demo.html
Is there a non-flash version of this video?
Thanks. Looks great. Will try it!
···
On Jan 29, 4:33 pm, Alin Popa <alinut...@yahoo.com> wrote:
Raewrote:
> How do you make forms for your program in Ruby? Do you need some
> particular software?HelloRae,
My advice is to use Glade as a visual designer of the forms and, of
course, GTK2 as GUI libraries. Using glade is very easy and after that,
just require 'libglade2' and read the whole form by using GladeXML
class.For more details, checkhttp://ruby-gnome2.sourceforge.jp/
Here is a video demo of how to use ruby with glade2:http://redhanded.hobix.com/cult/rubyGnome2andglade2demo.html
Best regards,
Alin.--
Posted viahttp://www.ruby-forum.com/.
unknown wrote:
Alin Popa wrote:
Here is a video demo of how to use ruby with glade2:
http://redhanded.hobix.com/cult/rubyGnome2andglade2demo.htmlIs there a non-flash version of this video?
Sorry, I really don't know.
Alin.
···
--
Posted via http://www.ruby-forum.com/\.
Rae [mailto:Raeka8@yahoo.com] :
···
# On Jan 29, 4:33 pm, Alin Popa <alinut...@yahoo.com> wrote:
# > My advice is to use Glade as a visual designer of the forms and, of
# > course, GTK2 as GUI libraries. Using glade is very easy and
# after that,
# > just require 'libglade2' and read the whole form by using GladeXML
# > class.
# >
# > For more details, checkhttp://ruby-gnome2.sourceforge.jp/
# >
# > Here is a video demo of how to use ruby with
# glade2:http://redhanded.hobix.com/cult/rubyGnome2andglade2demo.html
you may also want to try http://www.mikeparr.info/rubyguib/foxguibguide.htm
it's promising and provides clear separation bw your code and gui form, this makes your overall resulting code very short and clean. (don't ask me yet, i'm still testing it too)
kind regards -botp