ComboBoxView.st
changeset 5815 1c36d4e19708
parent 4637 2d3667c6acc0
child 5922 25b4077842e2
equal deleted inserted replaced
5813:bbfae6ced887 5815:1c36d4e19708
       
     1 "{ Encoding: utf8 }"
       
     2 
     1 "
     3 "
     2  COPYRIGHT (c) 1996 by eXept Software AG / Claus Gittinger
     4  COPYRIGHT (c) 1996 by eXept Software AG / Claus Gittinger
     3               All Rights Reserved
     5               All Rights Reserved
     4 
     6 
     5  This software is furnished under a license and may be used
     7  This software is furnished under a license and may be used
     9  other person.  No title to or ownership of the software is
    11  other person.  No title to or ownership of the software is
    10  hereby transferred.
    12  hereby transferred.
    11 "
    13 "
    12 "{ Package: 'stx:libwidg2' }"
    14 "{ Package: 'stx:libwidg2' }"
    13 
    15 
       
    16 "{ NameSpace: Smalltalk }"
       
    17 
    14 ComboView subclass:#ComboBoxView
    18 ComboView subclass:#ComboBoxView
    15 	instanceVariableNames:'menuSelectAction'
    19 	instanceVariableNames:'menuSelectAction'
    16 	classVariableNames:''
    20 	classVariableNames:''
    17 	poolDictionaries:''
    21 	poolDictionaries:''
    18 	category:'Views-Interactors'
    22 	category:'Views-Interactors'
    40     A ComboBoxView combines an inputField with a drop down list of default inputs;
    44     A ComboBoxView combines an inputField with a drop down list of default inputs;
    41     choosing any from the pulled list presets the string in the field.
    45     choosing any from the pulled list presets the string in the field.
    42 
    46 
    43     In contrast to a PopUpList or ComboListView, the string can still be edited -
    47     In contrast to a PopUpList or ComboListView, the string can still be edited -
    44     the list is actually only a set of values for the convenience of the user.
    48     the list is actually only a set of values for the convenience of the user.
    45 
       
    46     Not yet finished - it may need more protocol.
       
    47 
    49 
    48     [author:]
    50     [author:]
    49         Claus Gittinger
    51         Claus Gittinger
    50 
    52 
    51     [see also:]
    53     [see also:]
   315 ! !
   317 ! !
   316 
   318 
   317 !ComboBoxView class methodsFor:'documentation'!
   319 !ComboBoxView class methodsFor:'documentation'!
   318 
   320 
   319 version
   321 version
   320     ^ '$Header: /cvs/stx/stx/libwidg2/ComboBoxView.st,v 1.35 2014-07-03 11:46:02 cg Exp $'
   322     ^ '$Header$'
   321 ! !
   323 ! !
   322 
   324