#UI_ENHANCEMENT by mawalch
authormawalch
Wed, 28 Sep 2016 13:20:15 +0200
changeset 3750 73f907f202bc
parent 3747 6cf2e1cecba3
child 3751 bd9889e90a86
child 3752 42375c1cc0e9
#UI_ENHANCEMENT by mawalch class: ApplicationModel added: #hideWindows #showWindows #unhideWindows
ApplicationModel.st
--- a/ApplicationModel.st	Mon Sep 19 16:29:19 2016 +0200
+++ b/ApplicationModel.st	Wed Sep 28 13:20:15 2016 +0200
@@ -2817,6 +2817,10 @@
 
 !ApplicationModel methodsFor:'opening'!
 
+hideWindows
+    self windowGroup hideTopViews
+!
+
 open
     "open a standard interface.
      Sorry, but for visualworks compatibility, the builder is returned"
@@ -3177,6 +3181,14 @@
 
     self addTopViewsToCurrentProject.
     self postOpenWith:builder
+!
+
+showWindows
+    self window map;activate.
+!
+
+unhideWindows
+    self windowGroup unhideTopViews
 ! !
 
 !ApplicationModel methodsFor:'opening-dialogs'!