Salome HOME
a49d24d5afe468396afdd6cc45841b63d834dbef
[modules/shaper.git] / src / Config / Config_WidgetReader.h
1 // Copyright (C) 2014-2022  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef CONFIG_WIDGETREADER_H_
21 #define CONFIG_WIDGETREADER_H_
22
23 #include <Config_def.h>
24 #include <Config_XMLReader.h>
25
26 #include <map>
27 #include <string>
28
29 /*!
30  * \class Config_WidgetReader
31  * \ingroup Config
32  * \brief Class that dumps xml definitions of widgets for
33  * further processing in the WidgetFactory
34  */
35 class Config_WidgetReader : public Config_XMLReader
36 {
37  public:
38   /*!
39    * Constructor
40    * \param theXmlFile - full path to the xml file which will be processed by the reader
41    */
42   CONFIG_EXPORT Config_WidgetReader(const std::string& theXmlFile);
43   CONFIG_EXPORT virtual ~Config_WidgetReader();
44
45   /// Extract feature's widget configuration from local cache, stored on node processing
46   CONFIG_EXPORT std::string featureWidgetCfg(const std::string& theFeatureName);
47   /// Extract feature's description from local cache, stored on node processing
48   CONFIG_EXPORT std::string featureDescription(const std::string& theFeatureName);
49
50  protected:
51   /// Overloaded method. Defines how to process each node
52   void processNode(xmlNodePtr theNode);
53   /// Overloaded method. Defines if the given node should be parsed recursively
54   bool processChildren(xmlNodePtr theNode);
55   /// Extracts xml definition of the given node and it's children
56   std::string dumpNode(xmlNodePtr theNode);
57   /// Replace all "source" nodes with their content (used before dumping nodes)
58   void resolveSourceNodes(xmlNodePtr theNode);
59
60  private:
61   std::map<std::string, std::string> myWidgetCache;
62   std::map<std::string, std::string> myDescriptionCache;
63
64 };
65
66 #endif /* CONFIG_WIDGETREADER_H_ */