]> SALOME platform Git repositories - modules/shaper.git/blob - src/Config/Config_WidgetAPI.h
Salome HOME
Implementation of "Import" BREP and STEP functionality
[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   //TODO(sbh): Make these fields protected, accessible only for WidgetFactory
35   bool toNextWidget();
36   bool toChildWidget();
37   bool toParentWidget();
38
39   std::string widgetType() const;
40   bool isContainerWidget() const;
41   bool isPagedWidget() const;
42
43   std::string widgetId() const;
44   std::string widgetIcon() const;
45   std::string widgetLabel() const;
46   std::string widgetTooltip() const;
47
48   std::string getProperty(const char* thePropName) const;
49
50  private:
51   xmlDocPtr myDoc;
52   xmlNodePtr myCurrentNode;
53
54 };
55
56 #endif /* CONFIG_WIDGETAPI_H_ */