X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_Common.h;h=52fc1e1726fa0adbfedd95f72a7f3a930995c362;hb=51889d235a27d0ee4b3c3237d21d1ea621063580;hp=c53586eb50cef0e721ad49aceabe5a703cd6f936;hpb=b69a4c4ae0f7eb0e9c17d3db0229b04b1fe77ecf;p=modules%2Fshaper.git diff --git a/src/Config/Config_Common.h b/src/Config/Config_Common.h index c53586eb5..52fc1e172 100644 --- a/src/Config/Config_Common.h +++ b/src/Config/Config_Common.h @@ -44,10 +44,21 @@ CONFIG_EXPORT bool isElementNode(xmlNodePtr theNode); CONFIG_EXPORT bool isNode(xmlNodePtr theNode, const char* theNodeName, ...); /*! - * Checks is the given node is attribute (widget) node. + * Checks if the given node is attribute node. + * Attribute node represents a widget, that is able to store/restore + * values from the model. Actually it's every widget, displayed + * in the XGUI_PropertyPanel, except paged containers (toolbox, switch/case). + */ +CONFIG_EXPORT bool isAttributeNode(xmlNodePtr theNode); + +/*! + * Checks if the given node is widget node. + * Widget nodes are attribute node + paged containers nodes. */ CONFIG_EXPORT bool isWidgetNode(xmlNodePtr theNode); +CONFIG_EXPORT bool isCaseNode(xmlNodePtr theNode); + /*! * Every xml node has child. Even if there is no explicit * child nodes libxml gives the "Text node" as child. @@ -57,6 +68,17 @@ CONFIG_EXPORT bool isWidgetNode(xmlNodePtr theNode); */ CONFIG_EXPORT bool hasChild(xmlNodePtr theNode); + +/*! + * Checks if the given node has a valid parent. + */ +CONFIG_EXPORT bool hasParent(xmlNodePtr theNode); + +/*! + * Checks if the given node has a valid parent with any of the given node names. + */ +CONFIG_EXPORT bool hasParent(xmlNodePtr theNode, const char* theNodeName, ...); + /*! * Returns named property for an id node as std::string and the parameters of the node. */