Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/gui.git] / src / SalomeApp / SalomeApp_Module.cxx
index f62a3eca47a2b2344841e67bbb493071626ce5f9..b22992cf4daadf35ef64e9f05c12719cf3875d05 100644 (file)
 // Copyright (C) CEA 2004
 
 #include "SalomeApp_Module.h"
-
-#include "SalomeApp_Study.h"
 #include "SalomeApp_DataModel.h"
 #include "SalomeApp_Application.h"
-#include "SalomeApp_Preferences.h"
-#include "SalomeApp_UpdateFlags.h"
-#include "SalomeApp_Operation.h"
-#include "SalomeApp_SwitchOp.h"
+#include "SalomeApp_Study.h"
 
-#include <OB_Browser.h>
+#include "LightApp_Selection.h"
+#include "LightApp_Operation.h"
+#include "LightApp_Preferences.h"
+//#include "LightApp_Displayer.h"
 
-#include <CAM_Study.h>
+#include "CAM_DataModel.h"
 
-#include <SUIT_MessageBox.h>
-#include <SUIT_ResourceMgr.h>
+#include "OB_Browser.h"
 
-#include <QtxPopupMgr.h>
+#include <SALOME_ListIO.hxx>
+#include <SALOME_ListIteratorOfListIO.hxx>
+#include <SALOME_InteractiveObject.hxx>
+//#include <SALOME_Actor.h>
+
+//#include "SALOMEDS_IParameters.hxx"
+
+#include <SUIT_Session.h>
+#include <SUIT_ViewModel.h>
 
 #include <SVTK_ViewWindow.h>
-#include <OCCViewer_ViewWindow.h>
-#include <OCCViewer_ViewPort3d.h>
-#include <GLViewer_ViewFrame.h>
-#include <GLViewer_ViewPort.h>
-#include <Plot2d_ViewWindow.h>
+//#include <SVTK_ViewModel.h>
+//#include <SVTK_MainWindow.h>
+//#include <SVTK_RenderWindowInteractor.h>
+
+#include <qstring.h>
+#include <qmap.h>
+
+//#include <vtkActorCollection.h>
+//#include <vtkRenderer.h>
 
 /*!Constructor.*/
 SalomeApp_Module::SalomeApp_Module( const QString& name )
-: CAM_Module( name ),
-myPopupMgr( 0 ),
-mySwitchOp( 0 )
+: LightApp_Module( name )
 {
 }
 
 /*!Destructor.*/
 SalomeApp_Module::~SalomeApp_Module()
-{
-  if ( mySwitchOp )
-    delete mySwitchOp;
-}
-
-/*!Initialize module.*/
-void SalomeApp_Module::initialize( CAM_Application* app )
-{
-  CAM_Module::initialize( app );
-
-  SUIT_ResourceMgr* resMgr = app ? app->resourceMgr() : 0;
-  if ( resMgr )
-    resMgr->raiseTranslators( name() );
-}
-
-/*!Activate module.*/
-bool SalomeApp_Module::activateModule( SUIT_Study* study )
-{
-  bool res = CAM_Module::activateModule( study );
-
-  if ( res && application() && application()->resourceMgr() )
-    application()->resourceMgr()->raiseTranslators( name() );
-
-  if ( mySwitchOp == 0 )
-    mySwitchOp = new SalomeApp_SwitchOp( this );
-    
-  return res;
-}
-
-/*!Deactivate module.*/
-bool SalomeApp_Module::deactivateModule( SUIT_Study* )
-{
-  delete mySwitchOp;
-  mySwitchOp = 0;
-  
-  return true;
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::selectionChanged()
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::MenuItem()
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::windows( QMap<int, int>& ) const
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::viewManagers( QStringList& ) const
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::createPreferences()
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::preferencesChanged( const QString&, const QString& )
 {
 }
 
@@ -113,235 +55,79 @@ SalomeApp_Application* SalomeApp_Module::getApp() const
   return (SalomeApp_Application*)application();
 }
 
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::onModelOpened()
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::onModelSaved()
-{
-}
-
-/*!NOT IMPLEMENTED*/
-void SalomeApp_Module::onModelClosed()
-{
-}
-
-/*!Gets popup manager.(create if not exist)*/
-QtxPopupMgr* SalomeApp_Module::popupMgr()
-{
-  if ( !myPopupMgr )
-    myPopupMgr = new QtxPopupMgr( 0, this );
-  return myPopupMgr;
-}
-
-/*!Gets preferences.*/
-SalomeApp_Preferences* SalomeApp_Module::preferences() const
-{
-  SalomeApp_Preferences* pref = 0;
-  if ( getApp() )
-    pref = getApp()->preferences();
-  return pref;
-}
-
 /*!Create new instance of data model and return it.*/
 CAM_DataModel* SalomeApp_Module::createDataModel()
 {
   return new SalomeApp_DataModel(this);
 }
 
-/*!Update object browser.*/
-void SalomeApp_Module::updateObjBrowser( bool updateDataModel, SUIT_DataObject* root )
-{
-  if( updateDataModel )
-    if( CAM_DataModel* aDataModel = dataModel() )
-      if( SalomeApp_DataModel* aModel = dynamic_cast<SalomeApp_DataModel*>( aDataModel ) )
-        aModel->update( 0, dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
-  getApp()->objectBrowser()->updateTree( root );
-}
-
-/*!Context menu popup.*/
-void SalomeApp_Module::contextMenuPopup( const QString& client, QPopupMenu* menu, QString& /*title*/ )
-{
-  SalomeApp_Selection* sel = createSelection();
-  sel->init( client, getApp()->selectionMgr() );
-  popupMgr()->updatePopup( menu, sel );
-  delete sel;
-}
-
-/*!Create and return instance of SalomeApp_Selection.*/
-SalomeApp_Selection* SalomeApp_Module::createSelection() const
-{
-  return new SalomeApp_Selection();
-}
-
-/*!Add preference to preferences.*/
-int SalomeApp_Module::addPreference( const QString& label )
-{
-  SalomeApp_Preferences* pref = preferences();
-  if ( !pref )
-    return -1;
-
-  int catId = pref->addPreference( moduleName(), -1 );
-  if ( catId == -1 )
-    return -1;
-                             
-  return pref->addPreference( label, catId );
-}
-
-/*!Add preference to preferences.*/
-int SalomeApp_Module::addPreference( const QString& label, const int pId, const int type,
-                                    const QString& section, const QString& param )
-{
-  SalomeApp_Preferences* pref = preferences();
-  if ( !pref )
-    return -1;
-
-  return pref->addPreference( moduleName(), label, pId, type, section, param );
-}
-
-/*!Gets property of preferences.*/
-QVariant SalomeApp_Module::preferenceProperty( const int id, const QString& prop ) const
+/*!Create and return instance of LightApp_Selection.*/
+LightApp_Selection* SalomeApp_Module::createSelection() const
 {
-  QVariant var;
-  SalomeApp_Preferences* pref = preferences();
-  if ( pref )
-    var = pref->itemProperty( id, prop );
-  return var;
+  return LightApp_Module::createSelection();
 }
 
-
-/*!Set property of preferences.*/
-void SalomeApp_Module::setPreferenceProperty( const int id, const QString& prop, const QVariant& var )
-{
-  SalomeApp_Preferences* pref = preferences();
-  if ( pref )
-    pref->setItemProperty( id, prop, var );
-}
-
-/*!
- * \brief Update something in accordance with update flags
-  * \param theFlags - update flags
-*
-* Update viewer or/and object browser etc. in accordance with update flags ( see
-* SalomeApp_UpdateFlags enumeration ). Derived modules can redefine this method for their
-* own purposes
-*/
-void SalomeApp_Module::update( const int theFlags )
+void SalomeApp_Module::extractContainers( const SALOME_ListIO& source, SALOME_ListIO& dest ) const
 {
-  if ( theFlags & UF_Model )
-  {
-    if( CAM_DataModel* aDataModel = dataModel() )
-      if( SalomeApp_DataModel* aModel = dynamic_cast<SalomeApp_DataModel*>( aDataModel ) )
-        aModel->update( 0, dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
-  }
-  if ( theFlags & UF_ObjBrowser )
-    getApp()->objectBrowser()->updateTree( 0 );
-  if ( theFlags & UF_Controls )
-    updateControls();
-  if ( theFlags & UF_Viewer )
+  SalomeApp_Study* study = dynamic_cast<SalomeApp_Study*>( SUIT_Session::session()->activeApplication()->activeStudy() );
+  if( !study )
   {
-    if ( SUIT_ViewManager* viewMgr = getApp()->activeViewManager() )
-      if ( SUIT_ViewWindow* viewWnd = viewMgr->getActiveView() )
-      {
-        if ( viewWnd->inherits( "SVTK_ViewWindow" ) )
-          ( (SVTK_ViewWindow*)viewWnd )->Repaint();
-        else if ( viewWnd->inherits( "OCCViewer_ViewWindow" ) )
-          ( (OCCViewer_ViewWindow*)viewWnd )->getViewPort()->onUpdate();
-        else if ( viewWnd->inherits( "Plot2d_ViewWindow" ) )
-          ( (Plot2d_ViewWindow*)viewWnd )->getViewFrame()->Repaint();
-        else if ( viewWnd->inherits( "GLViewer_ViewFrame" ) )
-          ( (GLViewer_ViewFrame*)viewWnd )->getViewPort()->onUpdate();
-      }
+    dest = source;
+    return;
   }
-}
 
-/*!
- * \brief Updates controls
-*
-* Updates (i.e. disable/enable) controls states (menus, tool bars etc.). This method is
-* called from update( UF_Controls ). You may redefine it in concrete module.
-*/
-void SalomeApp_Module::updateControls()
-{
-}
-
-/*!
- * \brief Starts operation with given identifier
-  * \param id - identifier of operation to be started
-*
-* Module stores operations in map. This method starts operation by id.
-* If operation isn't in map, then it will be created by createOperation method
-* and will be inserted to map
-*/
-void SalomeApp_Module::startOperation( const int id )
-{
-  SalomeApp_Operation* op = 0;
-  if( myOperations.contains( id ) )
-    op = myOperations[ id ];
-  else
+  SALOME_ListIteratorOfListIO anIt( source );
+  for( ; anIt.More(); anIt.Next() )
   {
-    op = createOperation( id );
-    if( op )
+    Handle( SALOME_InteractiveObject ) obj = anIt.Value();
+    if( obj->hasEntry() )
     {
-      myOperations.insert( id, op );
-      op->setModule( this );
-      connect( op, SIGNAL( stopped( SUIT_Operation* ) ), this, SLOT( onOperationStopped( SUIT_Operation* ) ) );
-      connect( op, SIGNAL( destroyed() ), this, SLOT( onOperationDestroyed() ) );
+      _PTR(SObject) SO = study->studyDS()->FindObjectID( obj->getEntry() );
+      if( SO && QString( SO->GetID().c_str() ) == SO->GetFatherComponent()->GetID().c_str() )
+      { //component is selected
+       _PTR(SComponent) SC( SO->GetFatherComponent() );
+       _PTR(ChildIterator) anIter ( study->studyDS()->NewChildIterator( SC ) );
+       anIter->InitEx( true );
+       while( anIter->More() )
+       {
+         _PTR(SObject) valSO ( anIter->Value() );
+         _PTR(SObject) refSO;
+         if( !valSO->ReferencedObject( refSO ) )
+         {
+           QString id = valSO->GetID().c_str(),
+                   comp = SC->ComponentDataType().c_str(),
+                   val = valSO->GetName().c_str();
+
+           Handle( SALOME_InteractiveObject ) new_obj =
+             new SALOME_InteractiveObject( id.latin1(), comp.latin1(), val.latin1() );
+           dest.Append( new_obj );
+         }
+         anIter->Next();
+       }
+       continue;
+      }
     }
+    dest.Append( obj );
   }
-
-  if( op )
-    op->start();
 }
 
 /*!
- * \brief Creates operation with given identifier
-  * \param id - identifier of operation to be started
-  * \return Pointer on created operation or NULL if operation is not created
-*
-* Creates operation with given id. You should not call this method, it will be called
-* automatically from startOperation. You may redefine this method in concrete module to
-* create operations. 
-*/
-SalomeApp_Operation* SalomeApp_Module::createOperation( const int /*id*/ ) const
+ * \brief Virtual public
+ *
+ * This method is called just before the study document is saved, so the module has a possibility
+ * to store visual parameters in AttributeParameter attribue(s)
+ */
+void SalomeApp_Module::storeVisualParameters(int savePoint)
 {
-  return 0;
 }
 
 /*!
- * \brief Virtual protected slot called when operation stopped
-  * \param theOp - stopped operation
-*
-* Virtual protected slot called when operation stopped. Redefine this slot if you want to
-* perform actions after stopping operation
-*/
-void SalomeApp_Module::onOperationStopped( SUIT_Operation* /*theOp*/ )
+ * \brief Virtual public
+ *
+ * This method is called after the study document is opened, so the module has a possibility to restore
+ * visual parameters
+ */
+void SalomeApp_Module::restoreVisualParameters(int savePoint)
 {
 }
 
-/*!
- * \brief Virtual protected slot called when operation destroyed
-  * \param theOp - destroyed operation
-*
-* Virtual protected slot called when operation destroyed. Redefine this slot if you want to
-* perform actions after destroying operation. Base implementation removes pointer on
-* destroyed operation from the map of operations
-*/
-void SalomeApp_Module::onOperationDestroyed()
-{
-  const QObject* s = sender();
-  if( s && s->inherits( "SalomeApp_Operation" ) )
-  {
-    const SalomeApp_Operation* op = ( SalomeApp_Operation* )s;
-    MapOfOperation::const_iterator anIt = myOperations.begin(),
-                                   aLast = myOperations.end();
-    for( ; anIt!=aLast; anIt++ )
-      if( anIt.data()==op )
-      {
-        myOperations.remove( anIt.key() );
-        break;
-      }
-  }
-}