Salome HOME
Fix for problem: Preferences-Mesh-General tab: Display modes ?Nodes? and ?Shrink...
[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
36 class SMESHGUI_XmlHandler : public QXmlDefaultHandler
37 {
38  public:
39   SMESHGUI_XmlHandler();
40   virtual ~SMESHGUI_XmlHandler();
41
42   bool startDocument();
43   bool startElement( const QString& namespaceURI, const QString& localName, 
44                      const QString& qName, const QXmlAttributes& atts );
45   bool endElement( const QString& namespaceURI, const QString& localName, const QString& qName );
46   bool characters( const QString& ch );
47
48   QString errorString();
49   QString errorProtocol();
50   bool fatalError   (const QXmlParseException& exception);
51
52  public:
53   std::map<std::string, HypothesisData*> myHypothesesMap;
54   std::map<std::string, HypothesisData*> myAlgorithmsMap;
55
56  private:
57   QString myErrorProt;
58   QString myPluginName;
59   QString myServerLib;
60   QString myClientLib;
61 };
62
63
64 #endif