changed: #updateStyleCache
authorClaus Gittinger <cg@exept.de>
Tue, 17 Nov 2009 10:46:45 +0100
changeset 5529 1723e8c112f3
parent 5528 42447013fbc6
child 5530 7c9e988200a4
changed: #updateStyleCache
SimpleView.st
--- a/SimpleView.st	Tue Nov 17 00:09:13 2009 +0100
+++ b/SimpleView.st	Tue Nov 17 10:46:45 2009 +0100
@@ -1296,8 +1296,8 @@
      anyway."
 
     <resource: #style (#viewSpacing #font #borderWidth #borderColor
-		       #viewBackground #shadowColor #lightColor
-		       #focusColor #focusBorderWidth)>
+                       #viewBackground #shadowColor #lightColor
+                       #focusColor #focusBorderWidth)>
 
     |bgGrey currentScreen|
 
@@ -1306,68 +1306,68 @@
      and keep the values in fast class variables
     "
     StyleSheet isNil ifTrue:[
-	self setDefaultStyle.
-	self readStyleSheet.
+        self setDefaultStyle.
+        self readStyleSheet.
     ].
 
     currentScreen := Screen current.
 
     Grey := StyleSheet viewGrey.
     Grey isNil ifTrue:[
-	Grey := Color grey
+        Grey := Color grey
     ].
     Grey := Grey onDevice:currentScreen.
 
     StyleSheet fileReadFailed ifTrue:[
-	bgGrey := White
+        bgGrey := White
     ] ifFalse:[
-	currentScreen hasGrayscales ifTrue:[
-	    bgGrey := Grey
-	] ifFalse:[
-	    bgGrey := White
-	]
+        currentScreen hasGrayscales ifTrue:[
+            bgGrey := Grey
+        ] ifFalse:[
+            bgGrey := White
+        ]
     ].
     bgGrey := bgGrey onDevice:currentScreen.
 
     ViewSpacing := StyleSheet at:#viewSpacing.
     ViewSpacing isNil ifTrue:[
-	ViewSpacing := currentScreen defaultStyleValueFor:#viewSpacing.
+        ViewSpacing := currentScreen defaultStyleValueFor:#viewSpacing.
     ].
 
     DefaultBorderColor := StyleSheet colorAt:#borderColor.
     DefaultBorderColor isNil ifTrue:[
-	DefaultBorderColor := currentScreen defaultStyleValueFor:#borderColor
+        DefaultBorderColor := currentScreen defaultStyleValueFor:#borderColor
     ].
 
     StyleSheet fileReadFailed ifTrue:[
-	DefaultBorderWidth := 1.
-	DefaultShadowColor := Black.
-	DefaultLightColor :=  White.
-	DefaultFocusColor := Black.
-	DefaultFocusBorderWidth := 2.
-	DefaultViewBackgroundColor := White.
+        DefaultBorderWidth := 0.
+        DefaultShadowColor := Black.
+        DefaultLightColor :=  White.
+        DefaultFocusColor := Black.
+        DefaultFocusBorderWidth := 1.
+        DefaultViewBackgroundColor := White.
     ] ifFalse:[
-	DefaultBorderWidth := StyleSheet at:#borderWidth default:0.
-	DefaultViewBackgroundColor := StyleSheet colorAt:#viewBackground default:bgGrey.
-	DefaultShadowColor := StyleSheet colorAt:#shadowColor.
-	DefaultLightColor := StyleSheet colorAt:#lightColor.
-	DefaultFocusColor := StyleSheet colorAt:#focusColor default:Color red.
-	DefaultFocusBorderWidth := StyleSheet at:'focusBorderWidth' default:2.
+        DefaultBorderWidth := StyleSheet at:#borderWidth default:0.
+        DefaultViewBackgroundColor := StyleSheet colorAt:#viewBackground default:bgGrey.
+        DefaultShadowColor := StyleSheet colorAt:#shadowColor.
+        DefaultLightColor := StyleSheet colorAt:#lightColor.
+        DefaultFocusColor := StyleSheet colorAt:#focusColor default:Color red.
+        DefaultFocusBorderWidth := StyleSheet at:'focusBorderWidth' default:2.
     ].
 
     self == SimpleView ifTrue:[
-	DefaultFont := StyleSheet at:#font.
-	DefaultFont isNil ifTrue:[
-	    DefaultFont := Font family:'courier' face:'medium' style:'roman' size:12.
-	].
-	DefaultFont := DefaultFont onDevice:currentScreen.
+        DefaultFont := StyleSheet at:#font.
+        DefaultFont isNil ifTrue:[
+            DefaultFont := Font family:'courier' face:'medium' style:'roman' size:12.
+        ].
+        DefaultFont := DefaultFont onDevice:currentScreen.
     ] ifFalse:[
-	DefaultFont := nil
+        DefaultFont := nil
     ].
 
     DefaultViewBackgroundColor isNil ifTrue:[
-	'SimpleView [warning]: bad viewBackground in style - using white' errorPrintCR.
-	DefaultViewBackgroundColor := White
+        'SimpleView [warning]: bad viewBackground in style - using white' errorPrintCR.
+        DefaultViewBackgroundColor := White
     ].
 
     "Modified: / 29.4.1997 / 11:16:52 / dq"
@@ -10560,11 +10560,11 @@
 !SimpleView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.650 2009-11-06 16:45:25 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.651 2009-11-17 09:46:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.650 2009-11-06 16:45:25 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.651 2009-11-17 09:46:45 cg Exp $'
 ! !
 
 SimpleView initialize!