Salome HOME
25b2cf393f109dff83c294adbfc758dfd1ae42af
[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 #include <QMap>
34 #include <QList>
35
36 class HypothesisData;
37 class HypothesesSet;
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&, const QString&, 
47                          const QString&, const QXmlAttributes& );
48   bool     endElement( const QString&, const QString&, const QString& );
49   bool     characters( const QString& ); 
50
51   QString  errorString();
52   QString  errorProtocol();
53   bool     fatalError( const QXmlParseException& );
54
55 public:
56   QMap<QString, HypothesisData*>         myHypothesesMap;
57   QMap<QString, HypothesisData*>         myAlgorithmsMap;
58
59   QList<HypothesesSet*>                  myListOfHypothesesSets;
60
61 private:
62   QString                                myErrorProt;
63   QString                                myPluginName;
64   QString                                myServerLib;
65   QString                                myClientLib;
66 };
67
68 #endif // SMESHGUI_XMLHANDLER_H