Salome HOME
Merge branch 'HEAD' of newgeom:newgeom.git
[modules/shaper.git] / src / Config / Config_WidgetAPI.h
index c98888f12339d66b223378151118d86268d4e099..4030ff257a204b12e70af6d7c14cdbd6f4677f10 100644 (file)
@@ -32,10 +32,13 @@ public:
   Config_WidgetAPI(std::string theRawXml);
   virtual ~Config_WidgetAPI();
 
-  void reset();
-  bool nextWidget();
+  bool toNextWidget();
+  bool toChildWidget();
+  bool toParentWidget();
 
   std::string widgetType();
+  bool isContainerWidget();
+  bool isPagedWidget();
 
   std::string widgetId();
   std::string widgetIcon();
@@ -44,9 +47,6 @@ public:
 
   std::string getProperty(const char* thePropName);
 
-protected:
-  bool isNode(xmlNodePtr theNode, const char* name, ...);
-
 private:
   xmlDocPtr myDoc;
   xmlNodePtr myCurrentNode;