Salome HOME
Issue #143 Focus on "selector" widget allows to select another feature to apply the...
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.h
index 45c5789a5ae75ffc83d67d28f63c1a03bf99b9b7..968f5960ce72bb7fc891563b8839712009d4dc83 100644 (file)
@@ -2,8 +2,8 @@
 // Created:     25 Apr 2014
 // Author:      Natalia ERMOLAEVA
 
-#ifndef ModuleBase_ModelWidget_H
-#define ModuleBase_ModelWidget_H
+#ifndef MODULEBASE_MODELWIDGET_H
+#define MODULEBASE_MODELWIDGET_H
 
 #include <ModuleBase.h>
 
@@ -14,7 +14,6 @@
 #include <boost/shared_ptr.hpp>
 
 class Config_WidgetAPI;
-class ModelAPI_Feature;
 class ModuleBase_WidgetValue;
 class QKeyEvent;
 
@@ -28,30 +27,41 @@ class QKeyEvent;
  */
 class MODULEBASE_EXPORT ModuleBase_ModelWidget : public QObject
 {
-  Q_OBJECT
-public:
+Q_OBJECT
+ public:
   /// Constructor
   /// \theParent the parent object
   /// \theData the widget configuation. The attribute of the model widget is obtained from
-  ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData, const std::string& theParentId);
+  ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData,
+                         const std::string& theParentId);
   /// Destructor
-  virtual ~ModuleBase_ModelWidget() {};
+  virtual ~ModuleBase_ModelWidget()
+  {
+  }
 
   /// Set the given wrapped value to the current widget
   /// This value should be processed in the widget according to the needs
   /// \param theValue the wrapped widget value
-  virtual bool setValue(ModuleBase_WidgetValue* theValue) { return false; };
+  virtual bool setValue(ModuleBase_WidgetValue* theValue)
+  {
+    return false;
+  }
 
   /// Returns the state whether the attribute of the feature is initialized
   /// \param theObject a model feature to be checked
   /// \return the boolean result
   bool isInitialized(ObjectPtr theObject) const;
 
+  bool isComputedDefault()
+  {
+    return myIsComputedDefault;
+  }
+
   /// Saves the internal parameters to the given feature
   /// \param theObject a model feature to be changed
-  virtual bool storeValue(ObjectPtr theObject) const = 0;
+  virtual bool storeValue() const = 0;
 
-  virtual bool restoreValue(ObjectPtr theObject) = 0;
+  virtual bool restoreValue() = 0;
 
   /// 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.
@@ -62,17 +72,34 @@ public:
   /// \return a control list
   virtual QList<QWidget*> getControls() const = 0;
 
-  /// Returns whether the control has a default value
-  /// \return a boolean value
-  bool hasDefaultValue() const { return myHasDefaultValue; }
+  /// FocusIn events processing
+  virtual bool eventFilter(QObject* theObject, QEvent *theEvent);
 
   /// Returns the attribute name
   /// \returns the string value
-  std::string attributeID() const { return myAttributeID; }
+  std::string attributeID() const
+  {
+    return myAttributeID;
+  }
 
   /// Returns the parent of the attribute
   /// \returns the string value
-  std::string parentID() const { return myParentId; }
+  std::string parentID() const
+  {
+    return myParentId;
+  }
+
+  FeaturePtr feature() const
+  {
+    return myFeature;
+  }
+  void setFeature(const FeaturePtr& theFeature)
+  {
+    myFeature = theFeature;
+  }
+
+  /// Defines if it is supposed that the widget should interact with the viewer.
+  virtual bool isViewerSelector() { return false; }
 
 signals:
   /// The signal about widget values changed
@@ -80,21 +107,36 @@ signals:
   /// The signal about key release on the control, that corresponds to the attribute
   /// \param theAttributeName a name of the attribute
   /// \param theEvent key release event
-  void keyReleased(const std::string& theAttributeName, QKeyEvent* theEvent);
+  void keyReleased(QKeyEvent* theEvent);
+  /// The signal about the widget is get focus
+  /// \param theWidget the model base widget
+  void focusInWidget(ModuleBase_ModelWidget* theWidget);
   /// The signal about the widget is lost focus
   /// \param theWidget the model base widget
   void focusOutWidget(ModuleBase_ModelWidget* theWidget);
 
-protected:
+ protected:
   /// Returns the attribute name
   /// \returns the string value
-  void setAttributeID(const std::string& theAttribute) { myAttributeID = theAttribute; }
+  void setAttributeID(const std::string& theAttribute)
+  {
+    myAttributeID = theAttribute;
+  }
+
+  void updateObject(ObjectPtr theObj) const;
 
-  bool myHasDefaultValue; /// the boolean state whether the control has a default value
+  /// Let the widget process FocusIn events
+  void processFocus(QWidget* theWidget);
 
-private:
-  std::string myAttributeID; /// the attribute name of the model feature
+  std::string myAttributeID;  /// the attribute name of the model feature
   std::string myParentId;    /// name of parent
+  FeaturePtr myFeature;
+
+  bool myIsComputedDefault;
+
+ private:
+   /// Contains a list of widgets that may accept focus
+   QList<QWidget*> myFocusInWidgets;
 };
 
 #endif