Salome HOME
sources v1.2
[modules/kernel.git] / src / SALOMEGUI / QAD_Config.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : QAD_Config.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_CONFIG_H
30 #define QAD_CONFIG_H
31
32 // Used for access to the configuration file e.g.: QAD_CONFIG->getSetting("Language:Language")
33 #define QAD_CONFIG QAD_Config::getConfig()
34
35 #include <qdir.h>
36 #include <qfont.h>
37
38 #include "QAD_Settings.h"
39
40 class QAD_Config : public QAD_Settings
41 {
42
43 protected:
44   QAD_Config();
45
46   void ini();
47
48 public:
49   ~QAD_Config();
50
51   static QAD_Config* getConfig();
52
53   /** Sets directory of the local configuration file. */
54   void           setConfigDir(QDir _configDir) { configDir=_configDir; }
55   /** Gets directory of the local configuration file. */
56   QDir           getConfigDir() const { return configDir; }
57
58   /** Sets directory of SALOME_ROOT. */
59   void           setPrgDir(QDir _prgDir) { prgDir=_prgDir; }
60   /** Gets directory of SALOME_ROOT. */
61   QDir           getPrgDir() const { return prgDir; }
62
63   bool           createConfigFile( bool overwrite=false );
64   bool           readConfigFile();
65
66 private:
67   static QAD_Config* theOneAndOnlyConfig;
68
69   QDir   prgDir;
70   QDir   configDir;
71 };
72
73
74 #endif
75
76 // EOF