Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / SUIT / SUIT_ParserSettings.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
5 // 
6 //  This library is free software; you can redistribute it and/or 
7 //  modify it under the terms of the GNU Lesser General Public 
8 //  License as published by the Free Software Foundation; either 
9 //  version 2.1 of the License. 
10 // 
11 //  This library is distributed in the hope that it will be useful, 
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
14 //  Lesser General Public License for more details. 
15 // 
16 //  You should have received a copy of the GNU Lesser General Public 
17 //  License along with this library; if not, write to the Free Software 
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
19 // 
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : SUIT_ParserSettings.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef SUIT_PARSERSETTINGS_H
30 #define SUIT_PARSERSETTINGS_H
31
32 #include <qstring.h>
33 #include "SUIT.h"
34 /*! \brief Text Parser.*/
35 class SUIT_EXPORT SUIT_ParserSettings
36 {
37 public:
38   SUIT_ParserSettings();
39   ~SUIT_ParserSettings();
40
41   static QString getContents(QString fileName, bool comments=true, 
42                              bool sections=true, bool whitespace=true, 
43                              bool htmlComments=true);
44   static QString getSection(QString s, QString sectionName);
45   static QString getHtmlComment(QString s);
46   static QString getNextStringBetween(QString s, int& startIndex, QChar starter, QChar stopper);
47   static QString getNextStringUntil(QString s, int& startIndex, QChar stopper);
48   static QString removeComments(QString s);
49   static QString removeHtmlComments(QString s);
50   static QString removeSections(QString s);
51   static QString plainTextToHtml(QString s, int autoBreak);
52   static QString charToHtml(QChar c);
53
54 };
55
56 #endif