Salome HOME
Join modifications from branch OCC_debug_for_3_2_0b1
[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.org
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 "SMESHGUI_Hypotheses.h"
32
33 #include <qxml.h>
34 #include <map>
35 #include <list>
36
37 class SMESHGUI_XmlHandler : public QXmlDefaultHandler
38 {
39  public:
40   SMESHGUI_XmlHandler();
41   virtual ~SMESHGUI_XmlHandler();
42
43   bool startDocument();
44   bool startElement( const QString& namespaceURI, const QString& localName, 
45                      const QString& qName, const QXmlAttributes& atts );
46   bool endElement( const QString& namespaceURI, const QString& localName, const QString& qName );
47   bool characters( const QString& ch );
48
49   QString errorString();
50   QString errorProtocol();
51   bool fatalError   (const QXmlParseException& exception);
52
53  public:
54   std::map<std::string, HypothesisData*> myHypothesesMap;
55   std::map<std::string, HypothesisData*> myAlgorithmsMap;
56
57   std::list<HypothesesSet*> myListOfHypothesesSets;
58
59  private:
60   QString myErrorProt;
61   QString myPluginName;
62   QString myServerLib;
63   QString myClientLib;
64 };
65
66
67 #endif