home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / amiga / gui / mui / mui14-dv.lha / MUI / Developer / Autodocs / MUI_Listview.doc < prev    next >
Encoding:
Text File  |  1993-10-28  |  2.2 KB  |  92 lines

  1. TABLE OF CONTENTS
  2.  
  3. Listview.mui/Listview.mui
  4. Listview.mui/MUIA_Listview_DoubleClick
  5. Listview.mui/MUIA_Listview_Input
  6. Listview.mui/MUIA_Listview_List
  7. Listview.mui/MUIA_Listview_MultiSelect
  8. Listview.mui/MUIA_Listview_SelectChange
  9. Listview.mui/Listview.mui
  10.  
  11. It's important to know that MUI makes a difference
  12. between a list and a listview. A list is just a
  13. collection of some entries and is part of a listview,
  14. which attaches a scrollbar and input handling to
  15. the list.
  16.  
  17. During object creation time, you have to be careful
  18. not specifying listview tags for the list object
  19. or list tags for the listview object, both versions
  20. won't work. Once the objects are setup, you can
  21. of course talk to the listview as if it was the
  22. list directly.
  23. Listview.mui/MUIA_Listview_DoubleClick
  24.  
  25.     NAME
  26.     MUIA_Listview_DoubleClick -- [I.G], BOOL
  27.  
  28.     FUNCTION
  29.     This attribute is set to TRUE whenever the user
  30.     double clicks on an entry in the list.
  31.  
  32.     SEE ALSO
  33.     MUIA_Listview_SelectChange
  34. Listview.mui/MUIA_Listview_Input
  35.  
  36.     NAME
  37.     MUIA_Listview_Input -- [I..], BOOL
  38.  
  39.     FUNCTION
  40.     Setting this to FALSE will result in a read only
  41.     list view. Defaults to TRUE.
  42.  
  43.     SEE ALSO
  44.     MUIA_Listview_MultiSelect
  45. Listview.mui/MUIA_Listview_List
  46.  
  47.     NAME
  48.     MUIA_Listview_List -- [I..], Object *
  49.  
  50.     FUNCTION
  51.     Every listview needs a list object as child.
  52.     Specify it here.
  53.  
  54.     As every other child, it will get disposes when
  55.     its parent object is disposed.
  56.  
  57.     EXAMPLE
  58.     ListviewObject,
  59.        MUIA_Listview_Input, FALSE,
  60.        MUIA_Listview_List , ListObject,
  61.           ReadListFrame,
  62.           MUIA_List_Format       , ",,",
  63.           End,
  64.        End;
  65.  
  66.     SEE ALSO
  67.     MUIA_Listview_Input
  68. Listview.mui/MUIA_Listview_MultiSelect
  69.  
  70.     NAME
  71.     MUIA_Listview_MultiSelect -- [I..], BOOL
  72.  
  73.     FUNCTION
  74.     Set this to TRUE if you want your listview to be able
  75.     to multi select.
  76.  
  77.     SEE ALSO
  78.     MUIA_List_MultiTestHook
  79. Listview.mui/MUIA_Listview_SelectChange
  80.  
  81.     NAME
  82.     MUIA_Listview_SelectChange -- [..G], BOOL
  83.  
  84.     FUNCTION
  85.     This attribute is set to TRUE whenever the selection state
  86.     of one or more items in the list is changing. You can
  87.     use this e.g. if you want to display the number of
  88.     selected items in a status line.
  89.  
  90.     SEE ALSO
  91.     MUIA_List_MultiSelect
  92.