Salome HOME
d7c12e957e09f7bbcc587f0945971e498aacaa1e
[modules/shaper.git] / src / Config / Config_WidgetAPI.h
1 /*
2  * Config_WidgetAPI.h
3  *
4  *  Created on: Apr 1, 2014
5  *      Author: sbh
6  */
7
8 #ifndef CONFIG_WIDGETAPI_H_
9 #define CONFIG_WIDGETAPI_H_
10
11 #include <Config_def.h>
12
13 #include <cstdarg>
14 #include <string>
15
16 //>> Forward declaration of xmlNodePtr.
17 typedef struct _xmlNode xmlNode;
18 typedef xmlNode *xmlNodePtr;
19 struct _xmlNode;
20 //<<
21
22 //>> Forward declaration of xmlDocPtr.
23 typedef struct _xmlDoc xmlDoc;
24 typedef xmlDoc *xmlDocPtr;
25 struct _xmlDoc;
26 //<<
27
28 class CONFIG_EXPORT Config_WidgetAPI
29 {
30  public:
31   Config_WidgetAPI(std::string theRawXml);
32   virtual ~Config_WidgetAPI();
33
34   bool toNextWidget();
35   bool toChildWidget();
36   bool toParentWidget();
37
38   std::string widgetType() const;
39   bool isContainerWidget() const;
40   bool isPagedWidget() const;
41
42   std::string widgetId() const;
43   std::string widgetIcon() const;
44   std::string widgetLabel() const;
45   std::string widgetTooltip() const;
46
47   std::string getProperty(const char* thePropName) const;
48
49  private:
50   xmlDocPtr myDoc;
51   xmlNodePtr myCurrentNode;
52
53 };
54
55 #endif /* CONFIG_WIDGETAPI_H_ */