]> SALOME platform Git repositories - modules/hydrosolver.git/blob - src/salome_hydro/mascaret/eficas/appli.py
Salome HOME
merge BR_PORTING_SALOME_8
[modules/hydrosolver.git] / src / salome_hydro / mascaret / eficas / appli.py
1 # -*- coding: utf-8 -*-
2 #
3 #  Copyright (C) 2012-2013 EDF
4 #
5 #  This file is part of SALOME HYDRO module.
6 #
7 #  SALOME HYDRO module is free software: you can redistribute it and/or modify
8 #  it under the terms of the GNU General Public License as published by
9 #  the Free Software Foundation, either version 3 of the License, or
10 #  (at your option) any later version.
11 #
12 #  SALOME HYDRO module is distributed in the hope that it will be useful,
13 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #  GNU General Public License for more details.
16 #
17 #  You should have received a copy of the GNU General Public License
18 #  along with SALOME HYDRO module.  If not, see <http://www.gnu.org/licenses/>.
19
20 import os
21 import sys
22 import re
23
24 from PyQt5.QtGui import *
25 from PyQt5.QtWidgets import *
26
27
28 import salome
29 import SalomePyQt
30 sgPyQt = SalomePyQt.SalomePyQt()
31
32 from salome.kernel.logger import Logger
33 from salome.kernel import termcolor
34 logger = Logger("salome.hydro.mascaret.eficas.appli",
35                 color = termcolor.GREEN_FG)
36
37 import eficasSalome
38
39 from salome.hydro.study import HydroStudyEditor
40
41 class EficasForMascaretAppli(eficasSalome.MyEficas):
42     """
43     This class launches Eficas and adds entries for the created files in
44     MASCARET component in the study tree. The messages in this class are in
45     french because they are displayed in Eficas interface.
46
47     :type  fichier: string
48     :param fichier: path of an Eficas file to open
49
50     """
51     def __init__(self, fichier = None, version = None):
52         self.ed = HydroStudyEditor()
53         self.codedir = os.path.dirname(__file__)
54         sys.path[:0] = [self.codedir]
55         eficasSalome.MyEficas.__init__(self, sgPyQt.getDesktop(),
56                                        "mascaret",
57                                        fichier, version = version)
58         sgPyQt.createView("Eficas Mascaret", self)
59
60     def addJdcInSalome(self, jdcPath):
61         """
62         Add the newly created file in Salome study
63         """
64         try:
65             self.ed.find_or_create_mascaret_case(jdcPath)
66         except Exception, exc:
67             msgError = "Can't add file to Salome study tree"
68             logger.exception(msgError)
69             QMessageBox.warning(self, self.tr("Warning"),
70                                 self.tr("%s. Reason:\n%s\n\nSee logs for "
71                                         "more details." % (msgError, exc)))
72         salome.sg.updateObjBrowser(0)
73
74     def closeEvent(self, event):
75         while self.codedir in sys.path:
76             sys.path.remove(self.codedir)
77         eficasSalome.MyEficas.closeEvent(self, event)