Salome HOME
Issue #1383 Preview button: correction for the case: switch off auto_preview in extru...
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.h
index 9162f46755355deba90d325f7c9c62f6ad10d1f8..2075a16dee145981c8b13b56695c504b2f7b9ce7 100644 (file)
@@ -8,7 +8,6 @@
 #define MODULEBASE_MODELWIDGET_H
 
 #include <ModuleBase.h>
-#include <ModuleBase_ViewerPrs.h>
 #include <ModuleBase_OperationFeature.h>
 #include <ModelAPI_Feature.h>
 
@@ -18,6 +17,8 @@
 
 class Config_WidgetAPI;
 class ModuleBase_IWorkshop;
+class ModuleBase_ViewerPrs;
+class ModuleBase_WidgetValidator;
 class QKeyEvent;
 
 /**\class ModuleBase_ModelWidget
@@ -104,7 +105,7 @@ Q_OBJECT
   /// This value should be processed in the widget according to the needs
   /// \param theValues the wrapped selection values
   /// \param theToValidate the boolean value whether the value should be checked by filters
-  virtual bool setSelection(QList<ModuleBase_ViewerPrs>& theValues,
+  virtual bool setSelection(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues,
                             const bool theToValidate)
   {
     return false;
@@ -112,12 +113,24 @@ Q_OBJECT
 
   /// Returns values which should be highlighted when the whidget is active
   /// \param theValues a list of presentations
-  virtual void getHighlighted(QList<ModuleBase_ViewerPrs>& theValues) {};
+  virtual void getHighlighted(QList<std::shared_ptr<ModuleBase_ViewerPrs>>& theValues) {};
+
+  /// Checks if the selection presentation is valid in widget 
+  /// \param theValue a selected presentation in the view
+  /// \return a boolean value
+  virtual bool isValidSelectionCustom(const std::shared_ptr<ModuleBase_ViewerPrs>& theValue) { return true; }
+
+  /// Returns widget validator, by default it is NULL. To be created in a child if necessary
+  ModuleBase_WidgetValidator* widgetValidator() { return myWidgetValidator; }
 
   /// Restore value from attribute data to the widget's control. Emits signals before and after store
   /// \return True in success
   bool restoreValue();
 
+  /// Saves the internal parameters to the given feature. Emits signals before and after store
+  /// \return True in success
+  bool storeValue();
+
   /// Set focus to the first control of the current widget. The focus policy of the control is checked.
   /// If the widget has the NonFocus focus policy, it is skipped.
   /// \return the state whether the widget can accept the focus
@@ -170,7 +183,7 @@ Q_OBJECT
   void setFeature(const FeaturePtr& theFeature, const bool theToStoreValue = false);
 
   /// Editing mode depends on mode of current operation. This value is defined by it.
-  void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
+  virtual void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
 
   /// \return Current Editing mode
   bool isEditingMode() const { return myIsEditing; }
@@ -254,10 +267,6 @@ protected:
   /// or store the control value to the feature
   virtual void initializeValueByActivate();
 
-  /// Saves the internal parameters to the given feature. Emits signals before and after store
-  /// \return True in success
-  bool storeValue();
-
   /// Saves the internal parameters to the given feature
   /// \return True in success
   virtual bool storeValueCustom() const = 0;
@@ -280,6 +289,7 @@ protected slots:
   void onWidgetValuesModified();
 
  protected:
+   ModuleBase_WidgetValidator* myWidgetValidator; /// own validator, by default it is zero
 
   /// The attribute name of the model feature
   std::string myAttributeID;
@@ -311,8 +321,6 @@ private:
   bool myUseReset;
   /// blocked flag of modification of the value state
   bool myIsValueStateBlocked;
-
-  friend class ModuleBase_OperationFeature; // to call storeValue() by commit if value state is ModifiedInPP
 };
 
 #endif