DSVColumnView.st
changeset 1946 0738b9f8c19f
parent 1941 ed782edda825
child 1947 1e11b36633b2
equal deleted inserted replaced
1945:694ea5d18b60 1946:0738b9f8c19f
    27 		buttonHalfLightColor buttonHalfShadowColor checkToggleExtent
    27 		buttonHalfLightColor buttonHalfShadowColor checkToggleExtent
    28 		checkToggleForm checkToggleActiveImage checkTogglePassiveImage
    28 		checkToggleForm checkToggleActiveImage checkTogglePassiveImage
    29 		checkToggleLevel comboButtonExtent comboButtonForm
    29 		checkToggleLevel comboButtonExtent comboButtonForm
    30 		comboButtonLevel clickPosition dragAccessPoint dragIsActive
    30 		comboButtonLevel clickPosition dragAccessPoint dragIsActive
    31 		dropTarget dropSource columnAdaptor tabAtEndAction
    31 		dropTarget dropSource columnAdaptor tabAtEndAction
    32 		tabAtStartAction modifiedChannel autoScroll autoScrollBlock'
    32 		tabAtStartAction modifiedChannel autoScroll autoScrollBlock
       
    33 		scrollWhenUpdating'
    33 	classVariableNames:'DefaultForegroundColor DefaultBackgroundColor
    34 	classVariableNames:'DefaultForegroundColor DefaultBackgroundColor
    34 		DefaultHilightForegroundColor DefaultHilightBackgroundColor
    35 		DefaultHilightForegroundColor DefaultHilightBackgroundColor
    35 		ButtonLightColor ButtonShadowColor CheckToggleActiveImage
    36 		ButtonLightColor ButtonShadowColor CheckToggleActiveImage
    36 		CheckTogglePassiveImage ButtonHalfLightColor
    37 		CheckTogglePassiveImage ButtonHalfLightColor
    37 		ButtonHalfShadowColor ButtonEdgeStyle CheckToggleForm
    38 		ButtonHalfShadowColor ButtonEdgeStyle CheckToggleForm
   477     ^ labelView opaqueColumnResize
   478     ^ labelView opaqueColumnResize
   478 !
   479 !
   479 
   480 
   480 opaqueColumnResize:aBoolean
   481 opaqueColumnResize:aBoolean
   481     labelView opaqueColumnResize:aBoolean
   482     labelView opaqueColumnResize:aBoolean
       
   483 !
       
   484 
       
   485 scrollWhenUpdating
       
   486     "return the scroll behavior, when I get a new text 
       
   487      (via the model or the #contents/#list)
       
   488      Possible returnValues are:
       
   489         #keep / nil     -> no change
       
   490         #endOfText      -> scroll to the end
       
   491         #beginOfText    -> scroll to the top
       
   492      The default is #beginOfText.
       
   493      This may be useful for fields which get new values assigned from
       
   494      the program (i.e. not from the user)"
       
   495 
       
   496     ^ scrollWhenUpdating
       
   497 !
       
   498 
       
   499 scrollWhenUpdating:aSymbolOrNil
       
   500     "define how to scroll, when I get a new text 
       
   501      (via the model or the #contents/#list)
       
   502      Allowed arguments are:
       
   503         #keep / nil     -> no change
       
   504         #endOfText      -> scroll to the end
       
   505         #beginOfText    -> scroll to the top
       
   506      The default is #beginOfText.
       
   507      This may be useful for fields which get new values assigned from
       
   508      the program (i.e. not from the user)"
       
   509 
       
   510     scrollWhenUpdating := aSymbolOrNil
   482 !
   511 !
   483 
   512 
   484 selectRowOnDefault
   513 selectRowOnDefault
   485     "in case of selecting a none selectable cell, the row is selected
   514     "in case of selecting a none selectable cell, the row is selected
   486     "
   515     "
  3417 ! !
  3446 ! !
  3418 
  3447 
  3419 !DSVColumnView class methodsFor:'documentation'!
  3448 !DSVColumnView class methodsFor:'documentation'!
  3420 
  3449 
  3421 version
  3450 version
  3422     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.118 2001-02-23 09:25:37 ca Exp $'
  3451     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.119 2001-03-08 13:51:25 cg Exp $'
  3423 ! !
  3452 ! !