class: DeviceWorkstation
authorClaus Gittinger <cg@exept.de>
Fri, 28 Nov 2014 17:11:45 +0100
changeset 6639 845629d59632
parent 6638 953215a3f78d
child 6640 a0abbda92054
class: DeviceWorkstation comment/format in: #configureX:y:width:height:view: #supportsWindowBorder:
DeviceWorkstation.st
--- a/DeviceWorkstation.st	Fri Nov 28 13:03:58 2014 +0100
+++ b/DeviceWorkstation.st	Fri Nov 28 17:11:45 2014 +0100
@@ -2476,7 +2476,9 @@
      Right now, some drawing stuff depends on (at least) a border of 1 pixel
      to be supported by the device.
      ST/X's views are being rewritten to draw the border manually in the
-     future, since some systems do not support arbitrary borders (i.e. Windows)."
+     future, since some systems do not support arbitrary wide borders (i.e. Windows).
+     Also, most (all?) systems only support drawing a solid border, which may or may not be
+     what we want."
 
     ^ true
 
@@ -4427,11 +4429,11 @@
 !
 
 configureX:x y:y width:w height:h view:aView
-    "forward a configure for some view"
+    "forward a configure (i.e. size or position change) event for some view"
 
     aView isNil ifTrue:[
-	"/ event arrived, after I destroyed it myself
-	^ self
+        "/ event arrived, after I destroyed it myself
+        ^ self
     ].
     aView sensor configureX:x y:y width:w height:h view:aView
 !
@@ -8423,11 +8425,11 @@
 !DeviceWorkstation class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.625 2014-11-20 14:58:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.626 2014-11-28 16:11:45 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.625 2014-11-20 14:58:44 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/DeviceWorkstation.st,v 1.626 2014-11-28 16:11:45 cg Exp $'
 ! !