make certain inputView is on top when restarting from a snapshot
authorClaus Gittinger <cg@exept.de>
Mon, 20 Jul 1998 18:15:07 +0200
changeset 897 43f9bdc12ae4
parent 896 0e732b716759
child 898 d2ae6ce33fec
make certain inputView is on top when restarting from a snapshot
UIGalleryView.st
UIObjectView.st
--- a/UIGalleryView.st	Mon Jul 20 13:18:24 1998 +0200
+++ b/UIGalleryView.st	Mon Jul 20 18:15:07 1998 +0200
@@ -508,6 +508,16 @@
     ].
 
 
+!
+
+mapped
+    "make certain that the input view is on top.
+    "
+    super mapped.
+    inputView raise.
+
+    "Modified: / 20.7.1998 / 18:10:48 / cg"
+    "Created: / 20.7.1998 / 18:12:35 / cg"
 ! !
 
 !UIGalleryView::Canvas methodsFor:'initialization'!
@@ -521,7 +531,7 @@
     inputView enableButtonMotionEvents.
     inputView enableMotionEvents.
 
-
+    "Modified: / 20.7.1998 / 18:12:38 / cg"
 ! !
 
 !UIGalleryView::Canvas methodsFor:'searching'!
--- a/UIObjectView.st	Mon Jul 20 13:18:24 1998 +0200
+++ b/UIObjectView.st	Mon Jul 20 18:15:07 1998 +0200
@@ -567,6 +567,7 @@
         super showGrid
     ].
 
+    "Modified: / 20.7.1998 / 18:14:51 / cg"
 !
 
 map
@@ -577,10 +578,30 @@
     self showSelection.
 !
 
+mapped
+    "make certain that the input view is on top.
+    "
+    super mapped.
+    inputView raise.
+
+    "Created: / 20.7.1998 / 18:10:20 / cg"
+    "Modified: / 20.7.1998 / 18:11:32 / cg"
+!
+
 realize
     super realize.
     self windowGroup postEventHook:self
 
+!
+
+remap
+    "make the view visible on the screen and in case of a none empty
+     selection the selection will be shown.
+    "
+    super remap.
+    self halt.
+
+    "Created: / 20.7.1998 / 18:08:48 / cg"
 ! !
 
 !UIObjectView methodsFor:'misc'!