X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_WidgetFeatureOrAttribute.h;h=9774bd20554d99f967b80b57e6c472664f08945d;hb=6538b6539abf93cf24183c7cfe8a5800a464178f;hp=54e2e08eb62a210e5e8e34660119acebe5b86c4d;hpb=66d6a0e9ffd402b9252c0c367b6e9d8dd8d9c636;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_WidgetFeatureOrAttribute.h b/src/ModuleBase/ModuleBase_WidgetFeatureOrAttribute.h index 54e2e08eb..9774bd205 100644 --- a/src/ModuleBase/ModuleBase_WidgetFeatureOrAttribute.h +++ b/src/ModuleBase/ModuleBase_WidgetFeatureOrAttribute.h @@ -19,13 +19,14 @@ class ModelAPI_Attribute; */ class MODULEBASE_EXPORT ModuleBase_WidgetFeatureOrAttribute : public ModuleBase_WidgetFeature { - Q_OBJECT -public: +Q_OBJECT + public: /// Constructor /// \theParent the parent object /// \theParent the parent object /// \theData the widget configuation. The attribute of the model widget is obtained from - ModuleBase_WidgetFeatureOrAttribute(QWidget* theParent, const Config_WidgetAPI* theData, const std::string& theParentId); + ModuleBase_WidgetFeatureOrAttribute(QWidget* theParent, const Config_WidgetAPI* theData, + const std::string& theParentId); /// Destructor virtual ~ModuleBase_WidgetFeatureOrAttribute(); @@ -36,18 +37,21 @@ public: /// Saves the internal parameters to the given feature /// \param theFeature a model feature to be changed - virtual bool storeValue(ObjectPtr theFeature) const; + virtual bool storeValue() const; - virtual bool restoreValue(ObjectPtr theFeature); + virtual bool restoreValue(); + /// Defines if it is supposed that the widget should interact with the viewer. + virtual bool isViewerSelector() { return true; } -protected: + protected: /// Set the attribute /// \param theAttribute value /// \return the boolean result of the attribute set - bool setAttribute(const boost::shared_ptr& theAttribute); + bool setAttribute(const boost::shared_ptr& theAttribute, bool theSendEvent = + true); -protected: - boost::shared_ptr myAttribute; /// < the attribute + protected: + boost::shared_ptr myAttribute; /// < the attribute }; #endif