Salome HOME
Parameters manager implementation
[modules/shaper.git] / src / XGUI / XGUI_Workshop.h
index 5bb898533422e55d0fb6dac75623d416da96ce6b..086f691ab2030ddb6073c42ee9067faeea435cb9 100755 (executable)
@@ -27,6 +27,7 @@ class XGUI_ContextMenuMgr;
 class XGUI_Displayer;
 class XGUI_ErrorDialog;
 class XGUI_ErrorMgr;
+class XGUI_MenuMgr;
 class XGUI_ModuleConnector;
 class XGUI_ObjectsBrowser;
 class XGUI_OperationMgr;
@@ -46,7 +47,7 @@ class QDockWidget;
 class QMainWindow;
 
 class QAction;
-
+class Config_DataModelReader;
 
 /**\class XGUI_Workshop
  * \ingroup GUI
@@ -112,6 +113,12 @@ Q_OBJECT
     return myActionsMgr;
   }
 
+  //! ! Returns an actions manager
+  XGUI_MenuMgr* menuMgr() const
+  {
+    return myMenuMgr;
+  }
+
   //! Returns property panel widget
   XGUI_PropertyPanel* propertyPanel() const
   {
@@ -205,6 +212,13 @@ Q_OBJECT
   /// \param theMode a mode to set (see \ref XGUI_Displayer)
   void setDisplayMode(const QObjectPtrList& theList, int theMode);
 
+  /// Set selection mode in viewer. If theMode=-1 then activate default mode
+  /// \param theMode the selection mode (according to TopAbs_ShapeEnum)
+  void setViewerSelectionMode(int theMode);
+
+  /// Activates current selection mode for the given list of objects
+  void activateObjectsSelection(const QObjectPtrList& theList);
+
   /// Returns current module
   ModuleBase_IModule* module() const
   {
@@ -232,18 +246,12 @@ Q_OBJECT
    */
   bool abortAllOperations();
 
-  //! Delete features. Delete the referenced features. There can be a question with a list of referenced
-  //! objects.
+  //! Delete features. Delete the referenced features. There can be a question with a list of
+  //! referenced objects.
   //! \param theList an objects to be deleted
   //! \param theIgnoredFeatures a list of features to be ignored during delete
-  //! \param theParent a parent widget for the question message box
-  //! \param theAskAboutDeleteReferences if true, the message box with a list of references to the
-  //! objects features appear. If the user chose do not continue, the deletion is not performed
-  //! \return the success of the delete 
-  bool deleteFeatures(const QObjectPtrList& theList,
-                      const std::set<FeaturePtr>& theIgnoredFeatures = std::set<FeaturePtr>(),
-                      QWidget* theParent = 0,
-                      const bool theAskAboutDeleteReferences = false);
+  bool deleteFeatures(const QObjectPtrList& theFeatures,
+                      const std::set<FeaturePtr>& theIgnoredFeatures = std::set<FeaturePtr>());
 
   /// Deactivates the object, if it is active and the module returns that the activation
   /// of selection for the object is not possible currently(the current operation uses it)
@@ -264,6 +272,26 @@ Q_OBJECT
   /// \param theUpdateViewer update viewer flag
   void synchronizeGroupInViewer(const DocumentPtr& theDoc, const std::string& theGroup, bool theUpdateViewer);
 
+  /// Update the property panel content by the XML description of the operation and set the panel
+  /// into the operation
+  /// \param theOperation an operation
+  void setPropertyPanel(ModuleBase_Operation* theOperation);
+
+  /// Connects or disconnects to the value changed signal of the property panel widgets
+  /// \param isToConnect a boolean value whether connect or disconnect
+  void connectToPropertyPanel(const bool isToConnect);
+
+  /// Returns defailt selection mode in 3d viewer
+  int viewerSelectionMode() const { return myViewerSelMode; }
+
+  /// Highlights result objects in Object Browser according to
+  /// features found in the given list
+  void highlightResults(const QObjectPtrList& theObjects);
+
+  /// Returns Data Model XML reader which contains information about 
+  /// Data structure configuration
+  const Config_DataModelReader* dataModelXMLReader() const { return myDataModelXMLReader; }
+
   /// A constant string used for "Move to end" command definition
   /// It is used for specific processing of Undo/Redo for this command.
   static QString MOVE_TO_END_COMMAND;
@@ -313,6 +341,13 @@ signals:
   /// \param thePreviousState the previous state of the widget
   void onWidgetStateChanged(int thePreviousState);
 
+  /// Calls activate of the current widget again. It is possible that selection filters are
+  /// differs in the new state of paged container
+  void onValuesChanged();
+
+  /// Listens the corresponded signal of model widget and updates Apply button state by feature
+  void onWidgetObjectUpdated();
+
   /// Show property panel
   void showPropertyPanel();
 
@@ -345,20 +380,45 @@ signals:
   /// Activates/deactivates the trihedron in the viewer AIS context
   void onTrihedronVisibilityChanged(bool theState);
 
+
  protected:
   /// Sets the granted operations for the parameter operation. Firstly, it finds the nested features
   /// and set them into the operation. Secondly, it asks the module about ids of granted operations.
   /// \param theOperation an operation
    void setGrantedFeatures(ModuleBase_Operation* theOperation);
 
-  /// Update the property panel content by the XML description of the operation and set the panel
-  /// into the operation
-  /// \param theOperation an operation
-  void setPropertyPanel(ModuleBase_Operation* theOperation);
+  //! Find all referenced features. Return direct and indirect lists of referenced object
+  //! \param theList an objects to be checked
+  //! \param aDirectRefFeatures a list of direct reference features
+  //! \param aIndirectRefFeatures a list of features which depend on the feature through others
+  void findReferences(const QObjectPtrList& theList,
+                      std::set<FeaturePtr>& aDirectRefFeatures,
+                      std::set<FeaturePtr>& aIndirectRefFeatures);
+
+  //! Shows a dialog box about references. Ask whether they should be also removed.
+  //! \param theList an objects to be checked
+  //! \param aDirectRefFeatures a list of direct reference features
+  //! \param aIndirectRefFeatures a list of features which depend on the feature through others
+  //! \param theParent a parent widget for the question message box
+  //! \param doDeleteReferences if there are parameters between features, ask if they should be
+  //! replaced to their meaning without corresponded features remove
+  //! \return true if in message box answer is Yes
+  bool isDeleteFeatureWithReferences(const QObjectPtrList& theList,
+                                     const std::set<FeaturePtr>& aDirectRefFeatures,
+                                     const std::set<FeaturePtr>& aIndirectRefFeatures,
+                                     QWidget* theParent,
+                                     bool& doDeleteReferences);
 
-  /// Connects or disconnects to the value changed signal of the property panel widgets
-  /// \param isToConnect a boolean value whether connect or disconnect
-  void connectToPropertyPanel(const bool isToConnect);
+  //! \param theIgnoredFeatures a list of features to be ignored during delete
+  //! \param theList an objects to be checked
+  //! \param aDirectRefFeatures a list of direct reference features
+  //! \param aIndirectRefFeatures a list of features which depend on the feature through others
+  //! \param doDeleteReferences flag if referenced features should be removed also
+  bool deleteFeaturesInternal(const QObjectPtrList& theList,
+                              const std::set<FeaturePtr>& aDirectRefFeatures,
+                              const std::set<FeaturePtr>& aIndirectRefFeatures,
+                              const std::set<FeaturePtr>& theIgnoredFeatures,
+                              const bool doDeleteReferences = true);
 
 private:
   /// Display all results
@@ -407,6 +467,10 @@ private:
   /// the operation can be committed and do it if it returns true.
   void onAcceptActionClicked();
 
+  /// Called by Preview button clicked in the property panel. Sends signal to model to
+  /// compute preview.
+  void onPreviewActionClicked();
+
  private:
    /// Init menu
   void initMenu();
@@ -444,9 +508,11 @@ private:
   //! \param theList an objects to be deleted
   //! \param theIgnoredFeatures a list of features to be ignored during delete
   //! \param theActionId an action command key to find context menu object types enabled for remove
+  //! \param theFlushRedisplay a boolean value if the redisplay signal should be flushed
   bool removeFeatures(const QObjectPtrList& theList,
                       const std::set<FeaturePtr>& theIgnoredFeatures,
-                      const QString& theActionId);
+                      const QString& theActionId,
+                      const bool theFlushRedisplay);
 
   //! Creates list of actions (commands) by given history list from session
   QList<ActionInfo> processHistoryList(const std::list<std::string>&) const;
@@ -464,6 +530,7 @@ private:
   XGUI_Displayer* myDisplayer;
   XGUI_OperationMgr* myOperationMgr;  ///< manager to manipulate through the operations
   XGUI_ActionsMgr* myActionsMgr;
+  XGUI_MenuMgr* myMenuMgr; ///< manager to build menu/tool bar using order defined in XML
   XGUI_SalomeConnector* mySalomeConnector;
   XGUI_ErrorDialog* myErrorDlg;
   XGUI_ViewerProxy* myViewerProxy;
@@ -472,6 +539,10 @@ private:
   XGUI_WorkshopListener* myEventsListener;
 
   QString myCurrentDir;
+
+  int myViewerSelMode;
+
+  Config_DataModelReader* myDataModelXMLReader;
 };
 
 #endif