Salome HOME
Loading of SketchSolver plugin example.
[modules/shaper.git] / src / Config / Config_WidgetAPI.h
index 59f44f2b89642cf8b84a576c241a2495518058a8..4030ff257a204b12e70af6d7c14cdbd6f4677f10 100644 (file)
@@ -32,20 +32,21 @@ 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();
   std::string widgetLabel();
   std::string widgetTooltip();
 
   std::string getProperty(const char* thePropName);
 
-protected:
-  bool isNode(xmlNodePtr theNode, const char* name, ...);
-
 private:
   xmlDocPtr myDoc;
   xmlNodePtr myCurrentNode;