ComboBoxView.st
changeset 275 da88b7732dff
parent 230 0c32e90e689b
child 279 3d96c6f3e588
equal deleted inserted replaced
274:92b51554b1d7 275:da88b7732dff
     3 	classVariableNames:''
     3 	classVariableNames:''
     4 	poolDictionaries:''
     4 	poolDictionaries:''
     5 	category:'Views-Interactors'
     5 	category:'Views-Interactors'
     6 !
     6 !
     7 
     7 
     8 !ComboBoxView  class methodsFor:'documentation'!
     8 !ComboBoxView class methodsFor:'documentation'!
     9 
     9 
    10 documentation
    10 documentation
    11 "
    11 "
    12     A ComboBoxView combines an inputField with a drop down list of default inputs;
    12     A ComboBoxView combines an inputField with a drop down list of default inputs;
    13     choosing any from the pulled list presets the string in the field.
    13     choosing any from the pulled list presets the string in the field.
    14 
    14 
    15     In contrast to a PopUpList or ComboListView, the string can still be edited -
    15     In contrast to a PopUpList or ComboListView, the string can still be edited -
    16     the list is actually only a set of values for the convenience of the user.
    16     the list is actually only a set of values for the convenience of the user.
    17 
    17 
    18     Not yet finished.
    18     Not yet finished - it may need more protocol.
       
    19 
       
    20     [author:]
       
    21         Claus Gittinger
    19 
    22 
    20     [see also:]
    23     [see also:]
       
    24         ComboView
       
    25         PopUpList SelectionInListView
    21         ComboListView
    26         ComboListView
       
    27         PullDownMenu Label EntryField
    22 "
    28 "
    23 !
    29 !
    24 
    30 
    25 examples
    31 examples
    26 "
    32 "
   165 
   171 
   166     "Created: 9.2.1996 / 01:06:01 / cg"
   172     "Created: 9.2.1996 / 01:06:01 / cg"
   167     "Modified: 26.7.1996 / 17:13:41 / cg"
   173     "Modified: 26.7.1996 / 17:13:41 / cg"
   168 ! !
   174 ! !
   169 
   175 
   170 !ComboBoxView  class methodsFor:'documentation'!
   176 !ComboBoxView class methodsFor:'documentation'!
   171 
   177 
   172 version
   178 version
   173     ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxView.st,v 1.9 1996-07-26 16:03:25 cg Exp $'
   179     ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxView.st,v 1.10 1997-01-09 11:57:44 cg Exp $'
   174 ! !
   180 ! !