PopUpList.st
changeset 1070 df1b79d1abab
parent 1069 d773b6e9dc28
child 1071 4bfcb90dd70c
equal deleted inserted replaced
1069:d773b6e9dc28 1070:df1b79d1abab
    58 
    58 
    59     If a listHolder is set, this one is always asked for the list instead of the
    59     If a listHolder is set, this one is always asked for the list instead of the
    60     model, via the #value message. 
    60     model, via the #value message. 
    61     This allows the popUpListView to aquire the list and value from different places.
    61     This allows the popUpListView to aquire the list and value from different places.
    62 
    62 
       
    63 
       
    64     Notice: PopUpList and ComboListView provide a similar protocol and functionality.
    63 
    65 
    64 
    66 
    65     [Instance variables:]
    67     [Instance variables:]
    66 
    68 
    67         menu                            helpers for the popup menu
    69         menu                            helpers for the popup menu
    84         listHolder           <Object>   if non-nil, this object is assumed to return the
    86         listHolder           <Object>   if non-nil, this object is assumed to return the
    85                                         list via the listMsg (instead of the model).
    87                                         list via the listMsg (instead of the model).
    86                                         Default is nil.
    88                                         Default is nil.
    87 
    89 
    88     [see also:]
    90     [see also:]
       
    91         SelectionInList ValueHolder
    89         SelectionInListView
    92         SelectionInListView
    90         SelectionInList
    93         ComboListView
    91 
    94 
    92     [author:]
    95     [author:]
    93         Claus Gittinger
    96         Claus Gittinger
    94 "
    97 "
    95 !
    98 !
   873 ! !
   876 ! !
   874 
   877 
   875 !PopUpList class methodsFor:'documentation'!
   878 !PopUpList class methodsFor:'documentation'!
   876 
   879 
   877 version
   880 version
   878     ^ '$Header: /cvs/stx/stx/libwidg/PopUpList.st,v 1.38 1997-02-27 14:04:40 cg Exp $'
   881     ^ '$Header: /cvs/stx/stx/libwidg/PopUpList.st,v 1.39 1997-02-27 14:34:59 cg Exp $'
   879 ! !
   882 ! !