class: VisualRegion
authorClaus Gittinger <cg@exept.de>
Tue, 05 May 2015 13:14:10 +0200
changeset 3464 85e229581fd1
parent 3462 ed161dbbaedf
child 3465 8d6d8462943c
class: VisualRegion comment/format in: #isOpaque
VisualRegion.st
--- a/VisualRegion.st	Fri Apr 24 03:43:00 2015 +0000
+++ b/VisualRegion.st	Tue May 05 13:14:10 2015 +0200
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1997 by Claus Gittinger
               All Rights Reserved
@@ -11,6 +13,8 @@
 "
 "{ Package: 'stx:libview2' }"
 
+"{ NameSpace: Smalltalk }"
+
 SimpleView subclass:#VisualRegion
 	instanceVariableNames:'isElliptical isOpaque'
 	classVariableNames:''
@@ -121,11 +125,11 @@
 !
 
 isOpaque
-    "get opaque mode concerning the inner background of the region
-    "
-  ^ isOpaque
+    "return true, if the object fully covers its frame (i.e. is rectangular
+     and has no 'holes'.
+     Here, get the opaque mode concerning the inner background of the region"
 
-
+    ^ isOpaque
 !
 
 isOpaque:aBoolean
@@ -263,6 +267,6 @@
 !VisualRegion class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/VisualRegion.st,v 1.10 2014-02-18 17:18:21 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/VisualRegion.st,v 1.11 2015-05-05 11:14:10 cg Exp $'
 ! !