#OTHER
authorClaus Gittinger <cg@exept.de>
Sun, 04 Oct 2015 13:15:20 +0200
changeset 6955 fc29f17aeb4c
parent 6954 22e2a072513b
child 6956 96f7888403e5
#OTHER class: AbstractBackground added: #needsFullRedrawOnChangeOfHeight #needsFullRedrawOnChangeOfWidth
AbstractBackground.st
--- a/AbstractBackground.st	Sun Oct 04 13:15:03 2015 +0200
+++ b/AbstractBackground.st	Sun Oct 04 13:15:20 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 2009 by eXept Software AG
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libview' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#AbstractBackground
 	instanceVariableNames:''
 	classVariableNames:''
@@ -90,15 +94,23 @@
 
 isViewBackground
     ^ true
+!
+
+needsFullRedrawOnChangeOfHeight
+    ^ false
+!
+
+needsFullRedrawOnChangeOfWidth
+    ^ false
 ! !
 
 !AbstractBackground class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/AbstractBackground.st,v 1.6 2014-02-05 13:29:03 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/AbstractBackground.st,v 1.6 2014-02-05 13:29:03 cg Exp $'
+    ^ '$Header$'
 ! !