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