home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume6 / wsxc2 / part03 / HelloWorldClass < prev    next >
Text File  |  1990-04-26  |  694b  |  33 lines

  1. !
  2. !  HelloWorld - global resources
  3. !
  4. *fontList:             -*-Helvetica-Medium-R-Normal--14*
  5. !  
  6. !  shell
  7. !
  8. HelloWorldClass.createChildren:    box
  9. !
  10. !  box - the main container
  11. !
  12. *box.createClass:                 XmCreateRowColumn
  13. *box.createChildren:        label,button
  14. *box.spacing:            2    
  15. *box.background:           red
  16. *box.entryAlignment:        alignment_center
  17. !
  18. !  label
  19. !
  20. *box.label.createClass:        XmCreateLabel 
  21. *box.label.background:        white
  22. *box.label.foreground:        blue
  23. *box.label.labelString:        Hello, WORLD !
  24. !
  25. !  button
  26. !
  27. *box.button.createClass:    XmCreatePushbutton
  28. *box.button.background:        lightBlue
  29. *box.button.foreground:        red
  30. *box.button.labelString:    Push ME
  31. *box.button.activateCallback:     push(Push to EXIT)
  32. !
  33.