Salome HOME
Additional fix of INTPAL 52639: Creation of ParaView viewer makes Paraview toolbars...
[modules/paravis.git] / src / PVGUI / PVGUI_Module_widgets.cxx
index 965b30b7751dfd11760d3f4e8ba3f3a10f0b48b8..a20a3af46b19fca2fc7a9c807e78068f775bdbd3 100644 (file)
@@ -1,6 +1,6 @@
 // PARAVIS : ParaView wrapper SALOME module
 //
-// Copyright (C) 2010-2014  CEA/DEN, EDF R&D
+// Copyright (C) 2010-2015  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
 //
 
 #include "PVGUI_Module.h"
+#include "PVViewer_ViewManager.h"
+#include "PVViewer_GUIElements.h"
 
 #include <QtxActionToolMgr.h>
 #include <LightApp_Application.h>
-#include <SalomeApp_Application.h>
+#include <SalomeApp_Application.h>   // // should ultimately be a LightApp only
 #include <SUIT_Desktop.h>
 
 #include <QApplication>
@@ -54,7 +56,6 @@
 #include <pqMultiBlockInspectorPanel.h>
 #include <pqProgressWidget.h>
 #include <pqProgressManager.h>
-//#include <pqDisplayProxyEditorWidget.h>
 #include <pqPropertiesPanel.h>
 
 #include <pqApplicationCore.h>
 #include <pqCollaborationPanel.h>
 #include <pqMemoryInspectorPanel.h>
 #include <pqColorMapEditor.h>
+#include <pqDeleteReaction.h>
+
+#include <vtkPVGeneralSettings.h>
 
 class ResizeHelper : public pqPVAnimationWidget
 {
-  // TEMPORARILY WORKAROUND AROUND PARAVIEW 3.14 BUG:
+  // TEMPORARY WORKAROUND AROUND PARAVIEW 3.14 BUG:
   // WHEN ANIMATION VIEW IS RESIZED, ITS CONTENTS IS NOT PREPERLY RE-ARRANGED
   // CAUSING SOME CONTROLS TO STAY NON-VISIBLE
-  // THIS BUG IS NATURALLY FIXED BY ADDING 
+  // THIS BUG IS NATURALLY FIXED BY ADDING
   //      this->updateGeometries();
   // TO THE
   //     void pqAnimationWidget::resizeEvent(QResizeEvent* e);
@@ -82,7 +86,7 @@ protected:
   void resizeEvent(QResizeEvent* e)
   {
     pqAnimationWidget* w = findChild<pqAnimationWidget*>( "pqAnimationWidget" );
-    if ( w ) { 
+    if ( w ) {
       QShowEvent e;
       QApplication::sendEvent( w, &e );
     }
@@ -98,61 +102,105 @@ protected:
 void PVGUI_Module::setupDockWidgets()
 {
   SUIT_Desktop* desk = application()->desktop();
+  PVViewer_GUIElements * guiElements = PVViewer_GUIElements::GetInstance(desk);
  
   desk->setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
   desk->setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
+  desk->setTabPosition(Qt::LeftDockWidgetArea, QTabWidget::North);
 
   // Pipeline
   QDockWidget* pipelineBrowserDock = new QDockWidget( tr( "TTL_PIPELINE_BROWSER" ), desk );
   pipelineBrowserDock->setObjectName("pipelineBrowserDock");
   pipelineBrowserDock->setAllowedAreas( Qt::LeftDockWidgetArea|Qt::NoDockWidgetArea|Qt::RightDockWidgetArea );
   desk->addDockWidget( Qt::LeftDockWidgetArea, pipelineBrowserDock );
-  pqPipelineBrowserWidget* browser = new pqPipelineBrowserWidget(pipelineBrowserDock);
-  pqParaViewMenuBuilders::buildPipelineBrowserContextMenu(*browser);
+  pqPipelineBrowserWidget* browser = guiElements->getPipelineBrowserWidget();
   pipelineBrowserDock->setWidget(browser);
   myDockWidgets[pipelineBrowserDock] = true;
+  pipelineBrowserDock->hide();
 
-  // Properties dock (previously called OBJECT_INSPECTOR)
+  // PROPERTIES, DISPLAY and VIEW:
+  // See ParaViewMainWindow.cxx - those three panels can be separated or grouped.
+  pqSettings *settings = pqApplicationCore::instance()->settings();
+
+  //    Properties dock (previously called OBJECT_INSPECTOR)
   QDockWidget* propertiesDock = new QDockWidget( tr( "TTL_OBJECT_INSPECTOR" ), desk );
   propertiesDock->setObjectName("propertiesDock");
-  propertiesDock->setAllowedAreas( Qt::LeftDockWidgetArea|Qt::NoDockWidgetArea|Qt::RightDockWidgetArea );
+  propertiesDock->setAllowedAreas( Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea );
   desk->addDockWidget( Qt::LeftDockWidgetArea, propertiesDock );
 
-  pqPropertiesPanel* propertiesPanel = new pqPropertiesPanel(propertiesDock);
-  propertiesDock->setObjectName("propertiesPanel");
+  pqPropertiesPanel* propertiesPanel = guiElements->getPropertiesPanel();
   propertiesDock->setWidget(propertiesPanel);
   connect( propertiesPanel, SIGNAL( helpRequested(const QString&, const QString&) ),  this, SLOT( showHelpForProxy(const QString&, const QString&) ) );
+  //            hook delete to pqDeleteReaction.
+  QAction* tempDeleteAction = new QAction(this);
+  pqDeleteReaction* handler = new pqDeleteReaction(tempDeleteAction);
+  handler->connect(propertiesPanel, SIGNAL(deleteRequested(pqPipelineSource*)), SLOT(deleteSource(pqPipelineSource*)));
   myDockWidgets[propertiesDock] = true;
+  propertiesDock->hide();
+
+  // Display dock
+  QDockWidget* displayPropertiesDock = new QDockWidget( tr( "TTL_DISPLAY" ), desk );
+  displayPropertiesDock->setObjectName("displayPropertiesDock");
+  displayPropertiesDock->setAllowedAreas( Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea );
+  desk->addDockWidget( Qt::LeftDockWidgetArea, displayPropertiesDock );
+
+  pqPropertiesPanel* displayPropertiesPanel = new pqPropertiesPanel();
+  displayPropertiesPanel->setObjectName("displayPropertiesPanel");
+  displayPropertiesPanel->setProperty("panelMode", QVariant(2));  // probably to have only the Display part
+  displayPropertiesDock->setWidget(displayPropertiesPanel);
+  myDockWidgets[displayPropertiesDock] = false;
+  displayPropertiesDock->hide();
+
+  // View dock
+  QDockWidget* viewPropertiesDock = new QDockWidget( tr( "TTL_VIEW_PANEL" ), desk );
+  viewPropertiesDock->setObjectName("viewPropertiesDock");
+  viewPropertiesDock->setAllowedAreas( Qt::LeftDockWidgetArea|Qt::RightDockWidgetArea );
+  desk->addDockWidget( Qt::LeftDockWidgetArea, viewPropertiesDock );
+
+  pqPropertiesPanel* viewPropertiesPanel = new pqPropertiesPanel();
+  viewPropertiesPanel->setObjectName("viewPropertiesPanel");
+  viewPropertiesPanel->setProperty("panelMode", QVariant(4)); // probably to have only the View part
+  viewPropertiesDock->setWidget(viewPropertiesPanel);
+  myDockWidgets[viewPropertiesDock] = false;
+  viewPropertiesDock->hide();
+
+  // Taken from ParaViewMainWindow.cxx:
+  int propertiesPanelMode = settings->value(
+      "GeneralSettings.PropertiesPanelMode", vtkPVGeneralSettings::ALL_IN_ONE).toInt();
+  switch (propertiesPanelMode)
+  {
+    case vtkPVGeneralSettings::SEPARATE_DISPLAY_PROPERTIES:
+      viewPropertiesDock->hide();
+      propertiesPanel->setPanelMode(
+          pqPropertiesPanel::SOURCE_PROPERTIES|pqPropertiesPanel::VIEW_PROPERTIES);
+      break;
+
+    case vtkPVGeneralSettings::SEPARATE_VIEW_PROPERTIES:
+      displayPropertiesDock->hide();
+      propertiesPanel->setPanelMode(
+          pqPropertiesPanel::SOURCE_PROPERTIES|pqPropertiesPanel::DISPLAY_PROPERTIES);
+      break;
+
+    case vtkPVGeneralSettings::ALL_SEPARATE:
+      propertiesPanel->setPanelMode(pqPropertiesPanel::SOURCE_PROPERTIES);
+      break;
+
+    case vtkPVGeneralSettings::ALL_IN_ONE:
+    default:
+      propertiesPanel->setPanelMode(
+                pqPropertiesPanel::SOURCE_PROPERTIES|pqPropertiesPanel::VIEW_PROPERTIES|pqPropertiesPanel::DISPLAY_PROPERTIES);
+      viewPropertiesDock->hide();
+      displayPropertiesDock->hide();
+      break;
+  }
 
-  //Display Dock
-//  QDockWidget* displayDock = new QDockWidget( tr( "TTL_DISPLAY" ), desk );
-//  displayDock->setObjectName("displayDock");
-//  QWidget* displayWidgetFrame = new QWidget(displayDock);
-//  displayWidgetFrame->setObjectName("displayWidgetFrame");
-//  displayDock->setWidget(displayWidgetFrame);
-//
-//  QScrollArea* displayScrollArea = new QScrollArea(displayWidgetFrame);
-//  displayScrollArea->setObjectName("displayScrollArea");
-//  displayScrollArea->setWidgetResizable(true);
-//
-//  QVBoxLayout* verticalLayout = new QVBoxLayout(displayWidgetFrame);
-//  verticalLayout->setSpacing(0);
-//  verticalLayout->setContentsMargins(0, 0, 0, 0);
-//
-//  pqDisplayProxyEditorWidget* displayWidget = new pqDisplayProxyEditorWidget(displayDock);
-//  displayWidget->setObjectName("displayWidget");
-//  displayScrollArea->setWidget(displayWidget);
-//  verticalLayout->addWidget(displayScrollArea);
-//
-//  myDockWidgets[displayDock] = true;
-
-  // information dock
+  // Information dock
   QDockWidget* informationDock = new QDockWidget(tr( "TTL_INFORMATION" ), desk);
   informationDock->setObjectName("informationDock");
 
   QWidget* informationWidgetFrame = new QWidget(informationDock);
   informationWidgetFrame->setObjectName("informationWidgetFrame");
-  
+
   QVBoxLayout* verticalLayout_2 = new QVBoxLayout(informationWidgetFrame);
   verticalLayout_2->setSpacing(0);
   verticalLayout_2->setContentsMargins(0, 0, 0, 0);
@@ -171,7 +219,8 @@ void PVGUI_Module::setupDockWidgets()
 
   myDockWidgets[informationDock] = true;
 
-  desk->setTabPosition(Qt::LeftDockWidgetArea, QTabWidget::North);
+  desk->tabifyDockWidget(propertiesDock, viewPropertiesDock);
+  desk->tabifyDockWidget(propertiesDock, displayPropertiesDock);
   desk->tabifyDockWidget(propertiesDock, informationDock);
   propertiesDock->raise();
 
@@ -189,7 +238,7 @@ void PVGUI_Module::setupDockWidgets()
   QDockWidget* animationViewDock     = new QDockWidget( tr( "TTL_ANIMATION_VIEW" ), desk );
   animationViewDock->setObjectName("animationViewDock");
   desk->addDockWidget( Qt::BottomDockWidgetArea, animationViewDock );
-  pqPVAnimationWidget* animation_panel = new ResizeHelper(animationViewDock); //pqPVAnimationWidget
+  pqPVAnimationWidget* animation_panel = new ResizeHelper(animationViewDock); // [ABN] was resizeHelper
   animationViewDock->setWidget(animation_panel);
   myDockWidgets[animationViewDock] = false; // hidden by default
 
@@ -277,9 +326,9 @@ void PVGUI_Module::setupDockWidgets()
   aProgress->setEnabled(true);
 
   // Set up the dock window corners to give the vertical docks more room.
-  desk->setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
-  desk->setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
-  
+//  desk->setCorner(Qt::BottomLeftCorner, Qt::LeftDockWidgetArea);
+//  desk->setCorner(Qt::BottomRightCorner, Qt::RightDockWidgetArea);
+
   // Setup the default dock configuration ...
   statisticsViewDock->hide();
   comparativePanelDock->hide();
@@ -294,7 +343,7 @@ void PVGUI_Module::setupDockWidgets()
 /*!
   \brief Save states of dockable ParaView widgets.
 */
-void PVGUI_Module::saveDockWidgetsState()
+void PVGUI_Module::saveDockWidgetsState(bool hideWidgets)
 {
   SUIT_Desktop* desk = application()->desktop();
 
@@ -313,8 +362,10 @@ void PVGUI_Module::saveDockWidgetsState()
     it1.next();
     QDockWidget* dw = qobject_cast<QDockWidget*>( it1.key() );
     myDockWidgets[dw] = dw->isVisible();
-    dw->setVisible( false );
-    dw->toggleViewAction()->setVisible( false );
+    if ( hideWidgets ) {
+      dw->setVisible( false );
+      dw->toggleViewAction()->setVisible( false );
+    }
   }
   // store toolbar breaks state and remove all tollbar breaks 
   QMapIterator<QWidget*, bool> it2( myToolbarBreaks );
@@ -322,7 +373,7 @@ void PVGUI_Module::saveDockWidgetsState()
     it2.next();
     QToolBar* tb = qobject_cast<QToolBar*>( it2.key() );
     myToolbarBreaks[tb] = desk->toolBarBreak( tb );
-    if ( myToolbarBreaks[tb] )
+    if ( myToolbarBreaks[tb] && hideWidgets )
       desk->removeToolBarBreak( tb );
   }
   // store toolbars visibility state and hide'em all
@@ -331,8 +382,10 @@ void PVGUI_Module::saveDockWidgetsState()
     it3.next();
     QToolBar* tb = qobject_cast<QToolBar*>( it3.key() );
     myToolbars[tb] = tb->isVisible();
-    tb->setVisible( false );
-    tb->toggleViewAction()->setVisible( false );
+    if ( hideWidgets ) {
+      tb->setVisible( false );
+      tb->toggleViewAction()->setVisible( false );
+    }
   }
 }
 
@@ -360,14 +413,16 @@ void PVGUI_Module::restoreDockWidgetsState()
     dw->setVisible( it1.value() );
     dw->toggleViewAction()->setVisible( true );
   }
-  // restore toolbar breaks state
-  QMapIterator<QWidget*, bool> it2( myToolbarBreaks );
-  while( it2.hasNext() ) {
-    it2.next();
-    QToolBar* tb = qobject_cast<QToolBar*>( it2.key() );
-    if ( myToolbarBreaks[tb] )
-      desk->insertToolBarBreak( tb );
-  }
+
+    // restore toolbar breaks state
+    QMapIterator<QWidget*, bool> it2( myToolbarBreaks );
+    while( it2.hasNext() ) {
+        it2.next();
+        QToolBar* tb = qobject_cast<QToolBar*>( it2.key() );
+        if ( myToolbarBreaks[tb] )
+          desk->insertToolBarBreak( tb );
+    }
+
   // restore toolbar visibility state
   QMapIterator<QWidget*, bool> it3( myToolbars );
   while( it3.hasNext() ) {
@@ -396,27 +451,30 @@ void PVGUI_Module::storeCommonWindowsState() {
   //     restoreCommonWindowsState() method, and at the moment of the ParaVis activation we call 
   //     this method.
 
+  //LightApp_Application* anApp = getApp();
   SalomeApp_Application* anApp = getApp();
   if(!anApp)
     return;
 
-  int begin = SalomeApp_Application::WT_ObjectBrowser;
-  int end = SalomeApp_Application::WT_NoteBook;
+//  int begin = SalomeApp_Application::WT_ObjectBrowser;
+//  int end = SalomeApp_Application::WT_NoteBook;
+  int begin = LightApp_Application::WT_ObjectBrowser;
+  int end = LightApp_Application::WT_User;
   for( int i = begin; i <= end; i++ ) {
     QWidget* wg = anApp->getWindow(i);
     if(wg) {
       QDockWidget* dock = 0;
       QWidget* w = wg->parentWidget();
       while ( w && !dock ) {
-       dock = ::qobject_cast<QDockWidget*>( w );
-       w = w->parentWidget();
+          dock = ::qobject_cast<QDockWidget*>( w );
+          w = w->parentWidget();
       }
       if(dock){
-       if(!myCommonMap.contains(i)){
-         myCommonMap.insert(i,dock->isVisible());
-       } else {
-         myCommonMap[i] = dock->isVisible();
-       }
+          if(!myCommonMap.contains(i)){
+              myCommonMap.insert(i,dock->isVisible());
+          } else {
+              myCommonMap[i] = dock->isVisible();
+          }
       }
     }
   }
@@ -427,6 +485,7 @@ void PVGUI_Module::storeCommonWindowsState() {
 */
 void PVGUI_Module::restoreCommonWindowsState() {
   SalomeApp_Application* anApp = getApp();
+//  LightApp_Application* anApp = getApp();
   if(!anApp)
     return;
   DockWindowMap::const_iterator it = myCommonMap.begin();
@@ -436,11 +495,11 @@ void PVGUI_Module::restoreCommonWindowsState() {
       QDockWidget* dock = 0;
       QWidget* w = wg->parentWidget();
       while ( w && !dock ) {
-       dock = ::qobject_cast<QDockWidget*>( w );
-       w = w->parentWidget();
+          dock = ::qobject_cast<QDockWidget*>( w );
+          w = w->parentWidget();
       }
       if(dock) {
-       dock->setVisible(it.value());
+          dock->setVisible(it.value());
       }
     }
   }