home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 5 / amigaformatcd05.iso / mui / developer / modula / readme < prev    next >
Text File  |  1996-08-13  |  8KB  |  212 lines

  1.                        Modula-Interface for MUI 3.3
  2.  
  3.                      MUI (C) 1993-95 by Stefan Stuntz
  4.  
  5.                                    * * *
  6.  
  7.                          Modula Interfaces done by
  8.  
  9.                         Christian "Kochtopf" Scholz
  10.                              (up to MUI v2.2)
  11.  
  12.                              Olaf "Olf" Peters
  13.                            (MUI v3.1 and above)
  14.  
  15.                                    * * *
  16.  
  17.         Send reports to Olaf Peters <olf@informatik.uni-bremen.de>
  18.  
  19.                                    * * *
  20.  
  21.                     The Modula Interfaces are Freeware.
  22.  
  23.  
  24.  
  25. =============
  26. Release Notes
  27. =============
  28.  
  29. v3.3 (21.2.96, olf)
  30.  
  31. - updated the interfaces for MUI 3.3
  32.  
  33. - ATTENTION: new parameter 'flags' for moObtainPen()!
  34.  
  35. v3.2.2 (7.2.96, olf)
  36.  
  37. - introduced MuiClassSupport: some functions to make life easier when
  38.     creating own customclasses. See docs/MuiClassSupport.doc for
  39.     documentation, Class2.mod and Class3.mod for example usage.
  40.  
  41. - when using MUIOBSOLETE=TRUE in MuiMacros, the TagBuffer was too small.
  42.     Fixed. (Marc Ewert)
  43.  
  44. - Demosources now also use MuiClassSupport and do compile again. They
  45.     didn't in v3.2.1 due to the changes from Stefan Schulz (APTR moved to
  46.     MuiD).
  47.  
  48. v3.2.1 (3.2.96, olf)
  49.  
  50. - updated the interfaces for MUI 3.2
  51.  
  52. - included Stuntzi's automatic headers (these have not been updated in the
  53.     MUI 3.2 distribution)
  54.  
  55. - included some changes from Stefan 'eau' Schulz and Christian 'Kochtopf'
  56.     Scholz (Thanks!)
  57.  
  58. - fixed MOLabelFlags (flags were misaligned, thanks to Marc Ewert for
  59.     reporting!)
  60.  
  61. v3.1.1 (27.11.95, olf)
  62.  
  63. - MuiD.def now really has the MUIOBSOLETE compiler option. This was missing
  64.   in the MUI 3.1 release.
  65.  
  66. - due to Stuntzi's automatic headerfile generation, MUI2COMPAT will not be
  67.   supported any longer.
  68.  
  69. - Demos now compile with MUIOBSOLETE set to FALSE, which also means they
  70.   will only run with MUI 3 (and above). Be careful, they do *not* check
  71.   which MUI version you're using!
  72.  
  73. ----- BEGIN Olf's Notes for v3.1 ------------------------------------------
  74.  
  75. While updating the Modula interfaces to MUI-3 I have made some minor
  76. changes to MUIClasses (to make them more "Modula-like"), so don't wonder,
  77. if your programs do not compiled out of the box with the new interface.
  78. However my changes should not affect too many programs, so I hope you can
  79. live with them.
  80.  
  81. Also there are some compiler-options in the modules which may need some
  82. explanation, they are:
  83.  
  84.   MUIOBSOLETE
  85.  
  86. set this to TRUE to enable all the tags that have been declared obsolete
  87. during MUI-development. *Please* try to update your programs so they
  88. compile with MUIOBSOLETE set to FALSE.
  89.  
  90.   MUI2COMPAT
  91.  
  92. In MUI-3 some tags have been declared obsolete which have been heavily used
  93. in MUI-2 apps (i.e. maWindowCycleChain). If you want your programs to be
  94. MUI-2 compatible, but have eliminated all your MUIOBSOLETE tags, you should
  95. set this option to TRUE.
  96.  
  97.   MUI3
  98.  
  99. In MuiMacros some MUI-3 specific Macrocalls have been added. If you set
  100. this attribute to FALSE they will be excluded from compilation, so you may
  101. check if your application will still run under MUI-2. I have not included
  102. this option in MuiD and MuiClasses because of lazyness ;-)
  103.  
  104. The interfaces are not too heavily tested, but I'm currently developing a
  105. bigger application with them (which also uses custom-classes). At least I
  106. didn't discover any bugs until now (Nov 18, 1995) :-)
  107.  
  108. Anyway, if you discover any bugs or missing tags, please contact Christian
  109. or me, to ensure they are included in the next release of the Interfaces.
  110.  
  111. My address is:
  112.  
  113. Olaf Peters
  114. Kulmer Str. 7
  115. 28237 Bremen
  116.  
  117. eMail preferred: olf@informatik.uni-bremen.de
  118.  
  119. Have fun!
  120.  
  121.   Olf
  122.  
  123. ----- END Olf's Notes -----------------------------------------------------
  124.  
  125.  
  126. Here are the files you need to write MUI-Programs with M2Amiga.
  127. Present are in this version the macros defined in mui.h. They are
  128. implemented in MuiMacros and in MuiClasses (the ones related to
  129. custom-class-programming)
  130.  
  131.  
  132. Description of the files :
  133.  
  134.     MuiD.def        : Definitions of MethodIDs, AttributeIDs, etc.
  135.     MuiD.mod        : Some additional PROCEDUREs for some #define's in mui.h
  136.     MuiL.def        : The interface for muimaster.library
  137.     MuiSupport.def  : Additional PROCEDUREs like DoMethod or fail.
  138.     MuiSupport.mod  : The implementation of these PROCEDUREs.
  139.     MuiMacros.def   : Some Macros converted from mui.h
  140.     MuiMacros.mod   : The implementation of these.
  141.     MuiClasses.def  : some things you need to write own classes
  142.     MuiClasses.mod  : implementation of the macros defined in mui.h for classes
  143.     MuiTest.mod     : A sample Module showing how to use the interface.
  144.     ListDemo.mod    : A sample Listview programm showing an DisplayHook!
  145.     Class1.mod      : A sample Module showing how to write own classes in M2.
  146.  
  147.     In this version you have to compile the interface yourself.
  148.     For this can you use the CompilerScript. It will compile the
  149.     interface and copy the files to m2:modules/sym|obj.
  150.  
  151.  
  152. The History :
  153.  
  154. 22.10.1993 MuiSupport : changed fail-PROCEDURE, that it makes no use of
  155.                         Terminal, but now uses Arts.Requester.
  156.            MuiMacros  : Added macros AddMember, DelMember, MakeHook,
  157.                         MakeID, PopUp
  158. 26.10.1993 supplied CompilerScript
  159. 9.2.1994   MuiD       : Updates to 1.5 (Popasl, Popstring, PopObject... )
  160.                         added mPaletteEntry, mScrmodelist.
  161.            MuiL       : Updates to 1.5 (Custom Class Functions)
  162.                         changed return-value of mAslRequest to BOOLEAN 
  163.                                                 (thanx to Thilo Stoeferle)
  164.                         provided muiMasterVersion, etc. like System-Defs.
  165.            MuiSupport : fail will set app to NIL, now VAR-parameter 
  166.                         (so you can use it in a CLOSE-Routine)
  167.                                                 (thanx to Martin Koyro)
  168.            MuiMacros  : now it supports StrPtr instead of ARRAY OF CHAR.
  169.                         set the symbol Locale to TRUE to get it. (defaults to FALSE)
  170.                         added some macros by Martin Koyro (KeyRadio, (Key)Cycle, (Key)Slider)
  171.            MuiClasses : new Module which implements things to write own classes.
  172.            ComboBox   : removed - use PopObject for a Popup-List.
  173.            ListDemo   : New Demo to show how to do lists.
  174. 18.2.1994  MuiMacros  : Added functions for Register and the Pop*-Classes.
  175.                         Added some new Label-Macros (LLabel,... )
  176.            MUIClasses : Added some macro-definitions and rearranged a bit the
  177.                         module. Now you can do easily custom classes with it.
  178.                         (i hope :) So look at it for more info and look also
  179.                         at Class1.mod which shows how it is used.
  180.            Class1.mod : new demo which shows how to do custom classes.
  181. 25.6.1994  MuiD,      
  182.            MuiMacros,
  183.            MuiL       : upgraded to version 2.1
  184.                         added a new symbol MUIObsolete to MuiMacros. Set it to true,
  185.                         if you want the obsolete Macros, now you should use mMakeObj
  186.                         for them.
  187.                         Problems with MakeObject-Definition - does not work.
  188.                         I don't know why - you ? ;-) Please tell me!
  189.                         (so you should set MuiObsolete to TRUE ;-)
  190.  
  191.            MuiClasses : changed name from MUIClasses to MuiClasses - please note!!
  192. 11.7.1994  MuiL.def   : changed MakeObject to use the right registers. Now works!!
  193.  
  194.  
  195. Note :
  196.  
  197. This time I just wanted to say that this stuff is _completely_ untested because of lack
  198. of time. I am just happy that it compiles ;-)
  199. I think that I have the next days some free hours to play with the new MUI (perhaps
  200. writing a class :-)
  201. Perhaps I will then release a new version on aminet...
  202.  
  203. For bug-reports or suggestion please send me a note. Thanks.
  204.  
  205. My email-address :
  206.  
  207.     ruebe@pool.informatik.rwth-aachen.de
  208.  
  209.  
  210. Greets,
  211.      Kochtopf
  212.