home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 18 / amigaformatcd18.iso / mui / mui_developer / autodocs / mui_register.doc < prev    next >
Text File  |  1997-03-10  |  1KB  |  46 lines

  1. TABLE OF CONTENTS
  2.  
  3. Register.mui/Register.mui
  4. Register.mui/MUIA_Register_Frame
  5. Register.mui/MUIA_Register_Titles
  6. Register.mui/Register.mui
  7.  
  8.     Register class is a special class for handling multi page
  9.     groups. Using this class, you only have to supply an array
  10.     of strings, describing the children's titles. How these
  11.     titles are visualized, either with a cycle gadget of with
  12.     a register-like group, is the choice of the user.
  13.  
  14. Register.mui/MUIA_Register_Frame
  15.  
  16.     NAME
  17.     MUIA_Register_Frame -- (V7 ) [I.G], BOOL
  18.  
  19.     FUNCTION
  20.     Specify TRUE if your want your group to be framed. If the
  21.     user specified cycle gadget looking, you will get a group
  22.     frame, otherwise you won't get any frame at all since
  23.     register groups are framed anyway.
  24.  
  25.     SEE ALSO
  26.     MUIA_Register_Titles
  27. Register.mui/MUIA_Register_Titles
  28.  
  29.     NAME
  30.     MUIA_Register_Titles -- (V7 ) [I.G], STRPTR *
  31.  
  32.     FUNCTION
  33.     NULL terminated array of strings describing the titles of
  34.     your groups children. This array must contain exactly as
  35.     many as entries as your group has children.
  36.  
  37.     EXAMPLE
  38.     static const char *titles[] = { "Eyes", "Ears", "Noses", "Feet", NULL };
  39.  
  40.     obj = RegisterGroup(title),
  41.        Child, ...,
  42.        Child, ...,
  43.        Child, ...,
  44.        Child, ...,
  45.        End;
  46.