home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / amiga / programm / 12273 < prev    next >
Encoding:
Internet Message Format  |  1992-08-13  |  1.1 KB

  1. Path: sparky!uunet!elroy.jpl.nasa.gov!sdd.hp.com!mips!apple!portal!cup.portal.com!Tony-Preston
  2. From: Tony-Preston@cup.portal.com (ANTHONY FRANCIS PRESTON)
  3. Newsgroups: comp.sys.amiga.programmer
  4. Subject: Re: ToolMaker from CATS
  5. Message-ID: <63972@cup.portal.com>
  6. Date: Thu, 13 Aug 92 08:47:52 PDT
  7. Organization: The Portal System (TM)
  8. References: <1B776606WK@tron.gun.de> <63842@cup.portal.com>
  9.   <34200@cbmvax.commodore.com>
  10. Lines: 15
  11.  
  12. Well, I would like to be able to do the complete user interface code
  13. and NOT have to touch it!  What I mean is this.  Example:
  14.  
  15.   1) create a user interface with 3 gadgets.  Gadget A, B, and C.
  16.   2) Gadget A is opens a window, Link the Gadget A to a new window.
  17.      Code generation for gadget a opens a window, calls the handling
  18.      function, closes the window.  The handling function does all the
  19.      event processing for the new window(which is also defined in
  20.      Toolmaker).
  21.   3) Add a strig gadget to each gadget definition which is the routine
  22.      name to call.  Then generate code for a gadget case which is:
  23.  
  24.      case GADGET_A:  Function_A();break;
  25.   
  26.      or in the object oriented case just invoke Funtion_A() like now.
  27.