VisualComponent.st
changeset 994 1b606988c010
parent 962 e6ccfc7fb22e
child 1220 39e5e28042da
--- a/VisualComponent.st	Mon Jul 06 17:49:58 1998 +0200
+++ b/VisualComponent.st	Mon Jul 06 17:53:43 1998 +0200
@@ -158,7 +158,34 @@
     "Created: / 18.6.1998 / 16:16:07 / cg"
 ! !
 
-!VisualComponent methodsFor:'accessing - dimensions'!
+!VisualComponent methodsFor:'accessing-STX-attributes'!
+
+borderWidth
+    ^ 0
+
+    "Modified: / 6.7.1998 / 13:47:28 / cg"
+!
+
+layout:newLayout
+
+    "Modified: / 6.7.1998 / 13:46:17 / cg"
+    "Created: / 6.7.1998 / 13:48:35 / cg"
+!
+
+level
+    ^ 0
+
+    "Modified: / 6.7.1998 / 13:46:17 / cg"
+    "Created: / 6.7.1998 / 13:46:50 / cg"
+!
+
+level:newLevel
+
+    "Modified: / 6.7.1998 / 13:46:17 / cg"
+    "Created: / 6.7.1998 / 13:47:43 / cg"
+! !
+
+!VisualComponent methodsFor:'accessing-dimensions'!
 
 bottom
     "return my bottom y coordinate"
@@ -327,6 +354,21 @@
 
     "Created: 8.5.1996 / 23:46:07 / cg"
     "Modified: 9.5.1996 / 00:14:19 / cg"
+!
+
+mapped
+
+    "Created: / 6.7.1998 / 13:48:46 / cg"
+!
+
+showFocus:explicit
+
+    "Created: / 6.7.1998 / 13:49:05 / cg"
+!
+
+showNoFocus:explicit
+
+    "Created: / 6.7.1998 / 13:49:12 / cg"
 ! !
 
 !VisualComponent methodsFor:'initialization'!
@@ -338,6 +380,12 @@
 
 !VisualComponent methodsFor:'queries'!
 
+delegate
+    ^ nil
+
+    "Created: / 6.7.1998 / 13:50:10 / cg"
+!
+
 heightOn:aGC
     "return my height, if displayed on aGC;
      I assume that my height is independent of the device, and return
@@ -360,6 +408,12 @@
     "Created: 19.7.1996 / 17:50:59 / cg"
 !
 
+isRootView
+    ^ false
+
+    "Created: / 6.7.1998 / 13:50:01 / cg"
+!
+
 isWrapper
      ^ false
 
@@ -408,5 +462,5 @@
 !VisualComponent class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/VisualComponent.st,v 1.15 1998-06-18 14:56:22 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/VisualComponent.st,v 1.16 1998-07-06 15:53:43 cg Exp $'
 ! !