How do you make forms?

How do you make forms for your program in Ruby? Do you need some
particular software?

On 1/29/07, Rae [email protected] wrote:

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

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.

unknown wrote:

Alin P. 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?

Sorry, I really don’t know.

Alin.

Alin P. 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?

On Jan 29, 4:33 pm, Alin P. [email protected] wrote:

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/.

Thanks. Looks great. Will try it!

Rae [mailto:[email protected]] :

On Jan 29, 4:33 pm, Alin P. [email protected] 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