X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2FConfig%2FConfig_WidgetAPI.h;h=361407c657bc08d0d9fd1516145935b352888214;hb=bdbfb368d71ed11cc0391354a7d86c880cd94949;hp=02131a2debd86ef7c9d8867c873676be6b6820fe;hpb=d3be0c9eaeb82488d43150f1d220a822a7fbe766;p=modules%2Fshaper.git diff --git a/src/Config/Config_WidgetAPI.h b/src/Config/Config_WidgetAPI.h index 02131a2de..361407c65 100644 --- a/src/Config/Config_WidgetAPI.h +++ b/src/Config/Config_WidgetAPI.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + /* * Config_WidgetAPI.h * @@ -25,34 +27,60 @@ typedef xmlDoc *xmlDocPtr; struct _xmlDoc; //<< -class CONFIG_EXPORT Config_WidgetAPI +/*! + * \class Config_WidgetAPI + * \ingroup Config + * \brief Provides low-level API for WidgetFactory for reading xml definitions of widgets + */ +class Config_WidgetAPI { public: - virtual ~Config_WidgetAPI(); - - std::string widgetType() const; - bool isContainerWidget() const; - bool isPagedWidget() const; + CONFIG_EXPORT virtual ~Config_WidgetAPI(); - std::string widgetId() const; - std::string widgetIcon() const; - std::string widgetLabel() const; - std::string widgetTooltip() const; + //! Returns name of widget's node (attribute) + CONFIG_EXPORT std::string widgetType() const; + //! Returns true if widget has container type, which means it able to contain other widgets + CONFIG_EXPORT bool isGroupBoxWidget() const; + //! Returns true if widget has page type; + //! Page is container widget with combo box control to switch between pages + CONFIG_EXPORT bool isPagedWidget() const; - std::string getProperty(const char* thePropName) const; + //! Returns id of current feature + CONFIG_EXPORT std::string featureId() const; + //! Returns id of current widget + CONFIG_EXPORT std::string widgetId() const; + //! Returns icon of current widget + CONFIG_EXPORT std::string widgetIcon() const; + //! Returns text for label of current widget + CONFIG_EXPORT std::string widgetLabel() const; + //! Returns text for tooltip of current widget + CONFIG_EXPORT std::string widgetTooltip() const; + //! Returns a custom property of current widget + CONFIG_EXPORT std::string getProperty(const char* thePropName) const; - bool isComputedDefault() const; + /*! Checks if the XML representation of widget has given attribute, + * if yes - returns it's bool value, if no, or if the value can not + * be converted to bool - returns theDefault. + * \param theAttributeName attribute to check + * \param theDefault default value on bad data + * \return the boolean result + */ + CONFIG_EXPORT bool getBooleanAttribute(const char* theAttributeName, bool theDefault) const; protected: /// These fields are accessible for ModuleBase_WidgetFactory only - Config_WidgetAPI(std::string theRawXml); - bool toNextWidget(); - bool toChildWidget(); - bool toParentWidget(); + CONFIG_EXPORT Config_WidgetAPI(std::string theRawXml); + //! Pass to the next (sibling) node of widget's xml definition. If impossible, returns false + CONFIG_EXPORT bool toNextWidget(); + //! Pass into the child node of widget's xml definition. If impossible, returns false + CONFIG_EXPORT bool toChildWidget(); + //! Pass into the parent node of widget's xml definition. If impossible, returns false + CONFIG_EXPORT bool toParentWidget(); private: - xmlDocPtr myDoc; - xmlNodePtr myCurrentNode; + xmlDocPtr myDoc; //!< Pointer to the root of widget's xml definition + xmlNodePtr myCurrentNode; //!< Pointer to the current node in the widget's xml definition + std::string myFeatureId; friend class ModuleBase_WidgetFactory; };