Salome HOME
Merge branch 'Dev_0.6.1' of newgeom:newgeom.git into Dev_0.6.1
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetBoolValue.h
index 6f32ef3ef87183b2961ead0fb7389d444a4a77c9..cf41b6b89cb01d46e6947f83d4ed4bed12c86658 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 // File:        ModuleBase_WidgetBoolValue.h
 // Created:     04 June 2014
 // Author:      Vitaly Smetannikov
@@ -12,22 +14,23 @@ class Config_WidgetAPI;
 class QWidget;
 class QCheckBox;
 
-class MODULEBASE_EXPORT ModuleBase_WidgetBoolValue: public ModuleBase_ModelWidget
+class MODULEBASE_EXPORT ModuleBase_WidgetBoolValue : public ModuleBase_ModelWidget
 {
-  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_WidgetBoolValue(QWidget* theParent, const Config_WidgetAPI* theData);
+  ModuleBase_WidgetBoolValue(QWidget* theParent, const Config_WidgetAPI* theData,
+                             const std::string& theParentId);
 
   virtual ~ModuleBase_WidgetBoolValue();
 
   /// Saves the internal parameters to the given feature
-  /// \param theFeature a model feature to be changed
-  virtual bool storeValue(FeaturePtr theFeature) const;
+  /// \param theObject a model feature to be changed
+  virtual bool storeValue() const;
 
-  virtual bool restoreValue(FeaturePtr theFeature);
+  virtual bool restoreValue();
 
   /// Returns list of widget controls
   /// \return a control list
@@ -37,8 +40,8 @@ public:
   /// \returns the widget
   QWidget* getControl() const;
 
-private:
+ private:
   QCheckBox* myCheckBox;
 };
 
-#endif
\ No newline at end of file
+#endif