Salome HOME
Provide hasPreview method for operations with preview
[modules/shaper.git] / src / ModuleBase / ModuleBase_Operation.h
index a526655a2ab787d574a4706caedd7f5f06bdd188..17be4cba4286a6e6e63ea45c6ed6e3ec622c681a 100644 (file)
@@ -5,14 +5,13 @@
  *      Author: sbh
  */
 
-
 #ifndef ModuleBase_Operation_H
 #define ModuleBase_Operation_H
 
 #include <ModuleBase.h>
 #include <ModuleBase_IOperation.h>
 
-#include "ModelAPI_Feature.h"
+#include <ModelAPI_Feature.h>
 
 #include <QObject>
 #include <QString>
@@ -20,6 +19,7 @@
 #include <boost/shared_ptr.hpp>
 
 class ModelAPI_Document;
+class ModuleBase_ModelWidget;
 
 class QKeyEvent;
 
@@ -39,11 +39,11 @@ class QKeyEvent;
  *  - virtual void      commitOperation();
  */
 
-class MODULEBASE_EXPORT ModuleBase_Operation: public ModuleBase_IOperation
+class MODULEBASE_EXPORT ModuleBase_Operation : public ModuleBase_IOperation
 {
 Q_OBJECT
 
-public:
+ public:
   /// Constructor
   /// \param theId the operation identifier
   /// \param theParent the QObject parent
@@ -57,26 +57,43 @@ public:
   /// \return the feature
   FeaturePtr feature() const;
 
+  /// Returns true is feature of operation is valid.
+  virtual bool isValid() const;
+
   /// Returns whether the nested operations are enabled.
   /// The state can depend on the operation current state.
   /// \return enabled state
   virtual bool isNestedOperationsEnabled() const;
 
   // Data model methods.
-  /// Stores a real value in model.
-  /// \param theValue - to store
-  void storeReal(double theValue);
   /// Stores a custom value in model.
   void storeCustomValue();
 
-  virtual void keyReleased(std::string theName, QKeyEvent* theEvent) {};
-
   /// Sets the operation feature
   void setEditingFeature(FeaturePtr theFeature);
 
-  bool isEditOperation() const { return myIsEditing; }
+  /// Returns True if the current operation works with the given object (feature or result)
+  virtual bool hasObject(ObjectPtr theObj) const;
+
+  virtual void keyReleased(const int theKey) {};
+
+  virtual void activateNextToCurrentWidget() {};
+
+  /// If operation needs to redisplay its result during operation
+  /// then this method has to return True
+  virtual bool hasPreview() const { return false; }
+
+ public slots:
+  /// Slots which listen the mode widget activation
+  /// \param theWidget the model widget
+  virtual void onWidgetActivated(ModuleBase_ModelWidget* theWidget);
+
+signals:
+  /// Signals about the activating of the next widget
+  /// \param theWidget the previous active widget
+  void activateNextWidget(ModuleBase_ModelWidget* theWidget);
 
-protected:
+ protected:
   /// Virtual method called when operation started (see start() method for more description)
   /// Default impl calls corresponding slot and commits immediately.
   virtual void startOperation();
@@ -99,13 +116,16 @@ protected:
   /// \returns the created feature
   virtual FeaturePtr createFeature(const bool theFlushMessage = true);
 
+ protected:
   /// Sets the operation feature
   void setFeature(FeaturePtr theFeature);
 
-private:
-  FeaturePtr myFeature; /// the operation feature to be handled
+  /// Verifies whether this operator can be commited.
+  /// \return Returns TRUE if current operation can be committed, e.g. all parameters are filled
+  virtual bool canBeCommitted() const;
 
-  bool myIsEditing;
+ protected:
+  FeaturePtr myFeature;  /// the operation feature to be handled
 };
 
 #endif