Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_XmlHandler.h
1 //  SMESH SMESHGUI : reading of xml file with list of available hypotheses and algorithms
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 //
23 //  File   : SMESHGUI_XmlHandler.cxx
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef SMESHGUI_XmlHandler_HeaderFile
29 #define SMESHGUI_XmlHandler_HeaderFile
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "SMESHGUI_Hypotheses.h"
34
35 #include <qxml.h>
36 #include <map>
37 #include <list>
38
39 class SMESHGUI_EXPORT SMESHGUI_XmlHandler : public QXmlDefaultHandler
40 {
41  public:
42   SMESHGUI_XmlHandler();
43   virtual ~SMESHGUI_XmlHandler();
44
45   bool startDocument();
46   bool startElement( const QString& namespaceURI, const QString& localName, 
47                      const QString& qName, const QXmlAttributes& atts );
48   bool endElement( const QString& namespaceURI, const QString& localName, const QString& qName );
49   bool characters( const QString& ch );
50
51   QString errorString();
52   QString errorProtocol();
53   bool fatalError   (const QXmlParseException& exception);
54
55  public:
56   std::map<std::string, HypothesisData*> myHypothesesMap;
57   std::map<std::string, HypothesisData*> myAlgorithmsMap;
58
59   std::list<HypothesesSet*> myListOfHypothesesSets;
60
61  private:
62   QString myErrorProt;
63   QString myPluginName;
64   QString myServerLib;
65   QString myClientLib;
66 };
67
68
69 #endif