Salome HOME
Porting SMESH module to Qt 4
[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 // File   : SMESHGUI_XmlHandler.h
22 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
23 //
24
25 #ifndef SMESHGUI_XMLHANDLER_H
26 #define SMESHGUI_XMLHANDLER_H
27
28 // SMESH includes
29 #include "SMESH_SMESHGUI.hxx"
30
31 // Qt includes
32 #include <QXmlDefaultHandler>
33
34 // STL includes
35 #include <string>
36 #include <map>
37 #include <list>
38
39 class HypothesisData;
40 class HypothesesSet;
41
42 class SMESHGUI_EXPORT SMESHGUI_XmlHandler : public QXmlDefaultHandler
43 {
44 public:
45   SMESHGUI_XmlHandler();
46   virtual ~SMESHGUI_XmlHandler();
47
48   bool     startDocument();
49   bool     startElement( const QString&, const QString&, 
50                          const QString&, const QXmlAttributes& );
51   bool     endElement( const QString&, const QString&, const QString& );
52   bool     characters( const QString& ); 
53
54   QString  errorString();
55   QString  errorProtocol();
56   bool     fatalError( const QXmlParseException& );
57
58 public:
59   std::map<std::string, HypothesisData*> myHypothesesMap;
60   std::map<std::string, HypothesisData*> myAlgorithmsMap;
61
62   std::list<HypothesesSet*>              myListOfHypothesesSets;
63
64 private:
65   QString                                myErrorProt;
66   QString                                myPluginName;
67   QString                                myServerLib;
68   QString                                myClientLib;
69 };
70
71 #endif // SMESHGUI_XMLHANDLER_H