gutopia-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [rgui-dev] API Time


From: Tom Sawyer
Subject: Re: [rgui-dev] API Time
Date: 23 Aug 2002 16:41:26 -0600

here, let's also look at them without the proc event stuff:

SAMPLE v1b:

--- !ruby/object:GUtopIa::Window
caption: Fruity Fun Time
height: 300
body:
  -
    - !ruby/object:GUtopIa::RadioBox
      items:
        - None
        - Apple
        - Orange
        - Banana
      value: None
  -
    - !ruby/object:GUtopIa::Button
      text: Quit
width: 200
layout: !ruby/sym grid



SAMPLE v2b:

--- &abutton !ruby/object:GUtopIa::Button
text: Quit

--- &aradio !ruby/object:GUtopIa::RadioBox
items:
  - None
  - Apple
  - Orange
  - Banana
value: None

--- !ruby/object:GUtopIa::Window
caption: Fruity Fun Time
height: 300
body:
  -
    - *aradio
  -
    - *abutton
width: 200
layout: !ruby/sym grid







reply via email to

[Prev in Thread] Current Thread [Next in Thread]