]> SALOME platform Git repositories - modules/gui.git/blobdiff - src/SUIT/SUIT_ViewManager.cxx
Salome HOME
Copyrights update
[modules/gui.git] / src / SUIT / SUIT_ViewManager.cxx
index 66ebcf7c079036bb7b2dae27355ed883cfe46d1b..69288994b2cf10a6bacfdf19be8ab3714f6acb7d 100755 (executable)
@@ -1,3 +1,21 @@
+// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
+// 
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either 
+// version 2.1 of the License.
+// 
+// This library is distributed in the hope that it will be useful 
+// but WITHOUT ANY WARRANTY; without even the implied warranty of 
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public  
+// License along with this library; if not, write to the Free Software 
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/
+//
 #include "SUIT_ViewManager.h"
 
 #include "SUIT_Desktop.h"
@@ -38,8 +56,9 @@ myStudy( NULL )
 /*!Destructor.*/
 SUIT_ViewManager::~SUIT_ViewManager()
 {
-  if (myViewModel) {
-    myViewModel->setViewManager(0);
+  if ( myViewModel )
+  {
+    myViewModel->setViewManager( 0 );
     delete myViewModel;
   }
 }
@@ -169,6 +188,15 @@ void SUIT_ViewManager::removeView(SUIT_ViewWindow* theView)
     emit lastViewClosed(this);
 }
 
+/*!
+  Show or hide all views (view windows)
+*/
+void SUIT_ViewManager::setShown( const bool on )
+{
+  for ( uint i = 0; i < myViews.count(); i++ )
+    myViews.at( i )->setShown( on );
+}
+
 /*!Emit on \a theEvent mouse pressed in \a theView.*/
 void SUIT_ViewManager::onMousePressed(SUIT_ViewWindow* theView, QMouseEvent* theEvent)
 {