Salome HOME
Observers in progress
[modules/adao.git] / src / daEficas / configuration_ADAO.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2010-2011 EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 # Author: André Ribes, andre.ribes@edf.fr, EDF R&D
21
22 """
23     Ce module sert pour charger les paramètres de configuration d'EFICAS
24 """
25 # Modules Python
26 print "passage dans la surcharge de configuration pour Adao"
27 import os, sys, string, types, re
28 import traceback
29 from PyQt4.QtGui  import *
30
31 # Modules Eficas
32 from Editeur import utils
33
34 # Classe de base permettant de lire, afficher
35 # et sauvegarder les fichiers utilisateurs 
36 class CONFIG:
37
38   def __init__(self,appli,repIni):
39
40     self.rep_user = os.environ["HOME"]
41     self.appli   = appli  
42     self.code    = appli.code
43     self.rep_ini = repIni
44     self.rep_mat=" " # Compatbilite Aster
45     self.savedir      = self.rep_user
46     self.generator_module = "generator_adao"
47     self.convert_module = "convert_adao"
48
49     # Format des catalogues...
50     # (code, version, catalogue, formatIn, formatOut)
51     # Il faut les mettre dans un tuple
52     self.catalogues = (("ADAO", "V0", os.path.join(self.rep_ini, 'ADAO_Cata_V0.py'), "adao"),)
53
54 def make_config(appli,rep):
55
56     return CONFIG(appli,rep)
57
58 def make_config_style(appli,rep):
59
60     return None