Salome HOME
First try to correct MEDReader problem under Windows.
[modules/paravis.git] / src / PVGUI / PVGUI_ViewManager.cxx
index ef8841970d98276d2a48976ed2fe0acfab4516f8..b697123a79c99e3da3677a1c2a971a976db0db40 100644 (file)
@@ -1,17 +1,17 @@
-// Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
-// 
+// Copyright (C) 2010-2014  CEA/DEN, EDF 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 
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// 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 
+// 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/ or email : webmaster.salome@opencascade.com
@@ -19,7 +19,8 @@
 #include <PVGUI_ViewManager.h>
 #include <PVGUI_ViewModel.h>
 #include <PVGUI_ViewWindow.h>
-
+#include <pqApplicationCore.h>
+#include <pqTabbedMultiViewWidget.h>
 
 /*!
   Constructor
@@ -40,11 +41,7 @@ PVGUI_ViewManager::~PVGUI_ViewManager()
 /*!
   \brief Returns the ParaView multi-view manager for the active view window
 */
-pqViewManager* PVGUI_ViewManager::getMultiViewManager()
+pqTabbedMultiViewWidget* PVGUI_ViewManager::getMultiViewManager()
 {
-  pqViewManager* aMVM = 0;
-  PVGUI_ViewWindow* aVW = dynamic_cast<PVGUI_ViewWindow*>( getActiveView() );
-  if ( aVW )
-    aMVM = aVW->getMultiViewManager();
-  return aMVM;
+  return qobject_cast<pqTabbedMultiViewWidget*>(pqApplicationCore::instance()->manager("MULTIVIEW_WIDGET"));
 }