DSVColumnView.st
changeset 4644 a1734dfe9bfe
parent 4613 73e2facef522
child 4653 e760275fb093
equal deleted inserted replaced
4643:a658eca5de88 4644:a1734dfe9bfe
    39 		CheckToggleActiveImage CheckTogglePassiveImage
    39 		CheckToggleActiveImage CheckTogglePassiveImage
    40 		ButtonHalfLightColor ButtonHalfShadowColor ButtonEdgeStyle
    40 		ButtonHalfLightColor ButtonHalfShadowColor ButtonEdgeStyle
    41 		CheckToggleForm CheckToggleLevel CheckToggleExtent
    41 		CheckToggleForm CheckToggleLevel CheckToggleExtent
    42 		ComboButtonForm ComboButtonLevel ComboButtonExtent
    42 		ComboButtonForm ComboButtonLevel ComboButtonExtent
    43 		StopRedrawSignal RadioButtonActiveImage RadioButtonPassiveImage
    43 		StopRedrawSignal RadioButtonActiveImage RadioButtonPassiveImage
    44 		PreselectAllWhenOpeningEditor'
    44 		PreselectAllWhenOpeningEditor
       
    45 		DefaultHilightForegroundColorNoFocus
       
    46 		DefaultHilightBackgroundColorNoFocus'
    45 	poolDictionaries:''
    47 	poolDictionaries:''
    46 	category:'Views-DataSet'
    48 	category:'Views-DataSet'
    47 !
    49 !
    48 
    50 
    49 !DSVColumnView class methodsFor:'documentation'!
    51 !DSVColumnView class methodsFor:'documentation'!
   206     "/ DefaultBackgroundColor        := StyleSheet colorAt:#'scrollableView.backgroundColor' default:DefaultViewBackgroundColor.
   208     "/ DefaultBackgroundColor        := StyleSheet colorAt:#'scrollableView.backgroundColor' default:DefaultViewBackgroundColor.
   207     DefaultBackgroundColor        := StyleSheet colorAt:#'selection.backgroundColor' default:DefaultViewBackgroundColor.
   209     DefaultBackgroundColor        := StyleSheet colorAt:#'selection.backgroundColor' default:DefaultViewBackgroundColor.
   208 
   210 
   209     DefaultHilightForegroundColor := StyleSheet colorAt:#'selection.hilightForegroundColor' default:DefaultBackgroundColor.
   211     DefaultHilightForegroundColor := StyleSheet colorAt:#'selection.hilightForegroundColor' default:DefaultBackgroundColor.
   210     DefaultHilightBackgroundColor := StyleSheet colorAt:#'selection.hilightBackgroundColor' default:DefaultForegroundColor.
   212     DefaultHilightBackgroundColor := StyleSheet colorAt:#'selection.hilightBackgroundColor' default:DefaultForegroundColor.
       
   213     DefaultHilightForegroundColorNoFocus := StyleSheet colorAt:#'selection.hilightForegroundColorNoFocus'.
       
   214     DefaultHilightBackgroundColorNoFocus := StyleSheet colorAt:#'selection.hilightBackgroundColorNoFocus'.
   211     DefaultHilightFrameColor      := StyleSheet colorAt:#'selection.hilightFrameColor'. "/ no default; nil means: no frame
   215     DefaultHilightFrameColor      := StyleSheet colorAt:#'selection.hilightFrameColor'. "/ no default; nil means: no frame
   212 
   216 
   213     DefaultHilightForegroundColor = DefaultHilightBackgroundColor ifTrue:[
   217     DefaultHilightForegroundColor = DefaultHilightBackgroundColor ifTrue:[
   214         DefaultHilightBackgroundColor := Color black
   218         DefaultHilightBackgroundColor := Color black
   215     ].
   219     ].
  3137     buttonHalfShadowColor isNil ifTrue:[
  3141     buttonHalfShadowColor isNil ifTrue:[
  3138         buttonHalfShadowColor := Color gray
  3142         buttonHalfShadowColor := Color gray
  3139     ].
  3143     ].
  3140 
  3144 
  3141     selectionForegroundColorNoFocus isNil ifTrue:[
  3145     selectionForegroundColorNoFocus isNil ifTrue:[
  3142         selectionForegroundColorNoFocus := selectionForegroundColor.
  3146         selectionForegroundColorNoFocus := DefaultHilightForegroundColorNoFocus ? selectionForegroundColor.
  3143     ].
  3147     ].
  3144     selectionBackgroundColorNoFocus isNil ifTrue:[
  3148     selectionBackgroundColorNoFocus isNil ifTrue:[
  3145         selectionBackgroundColor notNil ifTrue:[
  3149         selectionBackgroundColorNoFocus := DefaultHilightBackgroundColorNoFocus.
  3146             selectionBackgroundColorNoFocus := selectionBackgroundColor lightened.
  3150         selectionBackgroundColorNoFocus isNil ifTrue:[
  3147             "/ selectionBackgroundColorNoFocus := Color brightness:(selectionBackgroundColor "lightened" brightness).   "/ asGray.
  3151             selectionBackgroundColor notNil ifTrue:[
       
  3152                 selectionBackgroundColorNoFocus := selectionBackgroundColor lightened.
       
  3153                 "/ selectionBackgroundColorNoFocus := Color brightness:(selectionBackgroundColor "lightened" brightness).   "/ asGray.
       
  3154             ].
  3148         ].
  3155         ].
  3149     ].
  3156     ].
  3150     selectionFrameColorNoFocus isNil ifTrue:[
  3157     selectionFrameColorNoFocus isNil ifTrue:[
  3151         selectionFrameColor notNil ifTrue:[
  3158         selectionFrameColor notNil ifTrue:[
  3152             selectionFrameColorNoFocus := selectionFrameColor lightened.  
  3159             selectionFrameColorNoFocus := selectionFrameColor lightened.  
  4802 ! !
  4809 ! !
  4803 
  4810 
  4804 !DSVColumnView class methodsFor:'documentation'!
  4811 !DSVColumnView class methodsFor:'documentation'!
  4805 
  4812 
  4806 version
  4813 version
  4807     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.298 2014-06-08 21:48:33 cg Exp $'
  4814     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.299 2014-07-08 20:47:52 cg Exp $'
  4808 !
  4815 !
  4809 
  4816 
  4810 version_CVS
  4817 version_CVS
  4811     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.298 2014-06-08 21:48:33 cg Exp $'
  4818     ^ '$Header: /cvs/stx/stx/libwidg2/DSVColumnView.st,v 1.299 2014-07-08 20:47:52 cg Exp $'
  4812 ! !
  4819 ! !
  4813 
  4820