]> SALOME platform Git repositories - modules/hydrosolver.git/blob - src/salome_hydro/pytel/eficas/appli.py
Salome HOME
yamm adaptation and lot 6
[modules/hydrosolver.git] / src / salome_hydro / pytel / eficas / appli.py
1 #  Copyright (C) 2012-2013 EDF
2 #
3 #  This file is part of SALOME HYDRO module.
4 #
5 #  SALOME HYDRO module is free software: you can redistribute it and/or modify
6 #  it under the terms of the GNU General Public License as published by
7 #  the Free Software Foundation, either version 3 of the License, or
8 #  (at your option) any later version.
9 #
10 #  SALOME HYDRO module 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
13 #  GNU General Public License for more details.
14 #
15 #  You should have received a copy of the GNU General Public License
16 #  along with SALOME HYDRO module.  If not, see <http://www.gnu.org/licenses/>.
17
18 import os
19 import sys
20
21 from PyQt4.QtGui import QMessageBox
22
23 import salome
24 import SalomePyQt
25 sgPyQt = SalomePyQt.SalomePyQt()
26
27 from salome.kernel.logger import Logger
28 from salome.kernel import termcolor
29 logger = Logger("salome.hydro.pytel.eficas.appli",
30                 color = termcolor.GREEN_FG)
31
32 import eficasSalome
33
34 from salome.hydro.study import HydroStudyEditor
35
36 class EficasForPytelAppli(eficasSalome.MyEficas):
37     """
38     This class launches Eficas and adds entries for the created files in
39     HYDRO component in the study tree.
40
41     :type  fichier: string
42     :param fichier: path of an Eficas file to open
43
44     """
45     def __init__(self, fichier = None, version = None):
46         self.ed = HydroStudyEditor()
47         self.codedir = os.path.dirname(__file__)
48         sys.path[:0] = [self.codedir]
49         eficasSalome.MyEficas.__init__(self, sgPyQt.getDesktop(), "pytel",
50                                        fichier, version = version)
51         sgPyQt.createView("Eficas Pytel", self)
52
53     def addJdcInSalome(self, jdcPath):
54         """
55         Add the newly created file in Salome study
56         """
57         try:
58             self.ed.find_or_create_pytel_case(jdcPath)
59         except Exception, exc:
60             msgError = "Can't add file to Salome study tree"
61             logger.exception(msgError)
62             QMessageBox.warning(self, self.tr("Warning"),
63                                 self.tr("%s. Reason:\n%s\n\nSee logs for more details." % (msgError, exc)))
64         salome.sg.updateObjBrowser(0)
65
66     def closeEvent(self, event):
67         while self.codedir in sys.path:
68             sys.path.remove(self.codedir)
69         eficasSalome.MyEficas.closeEvent(self, event)