Salome HOME
Updating date copyright information
[modules/adao.git] / src / daSalome / daGUI / daEficasWrapper / adaoEficasWrapper.py
1 #-*-coding:iso-8859-1-*-
2 #  Copyright (C) 2010-2013 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
21 import sys
22 import os
23
24 import eficasSalome               # Import from EFICAS_SRC
25 from InterfaceQT4 import qtEficas # Import from Eficas
26 from PyQt4.QtGui  import *        # Import from PyQT
27 from PyQt4.QtCore import *        # Import from PyQT
28 # from PyQt4.QtAssistant import *   # Import from PyQT
29
30 from daUtils.adaoEficasEvent import *
31 from daUtils.adaoLogger import *
32
33 #
34 # ============================================
35 # Specialization of the EficasWrapper for ADAO
36 # ============================================
37 #
38 class AdaoEficasWrapper(eficasSalome.MyEficas):
39
40     def __init__(self, parent):
41         # Configuration de l'installation
42         # Permet à EFICAS de faire ses import correctement
43         my_path = os.path.dirname(os.path.abspath(__file__))
44         ADAO_INSTALL_DIR = my_path + "/../daEficas"
45         sys.path.insert(0,ADAO_INSTALL_DIR)
46
47         self.__parent = parent
48
49     def init_gui(self):
50
51       eficasSalome.MyEficas.__init__(self, self.__parent, code="ADAO", module="ADAO")
52       self.connect(self.viewmanager.myQtab, SIGNAL('currentChanged(int)'), self.tabChanged)
53       self.menubar.hide()
54       self.toolBar.hide()
55
56     def addJdcInSalome(self, jdcPath):
57       debug("addJdcInSalome is called " + str(jdcPath))
58       # On gere nous meme l'etude
59       pass
60
61 #######
62 #
63 # Gestion des évènements provenant des widgets QT d'Eficas
64 #
65 #######
66
67     def tabChanged(self, index):
68       debug("tabChanged " + str(index))
69       # This signal is also emit when a new case is created/added
70       # On regarde que le dictionnaire contient l'index
71       if index in self.viewmanager.dict_editors.keys():
72         self.notifyObserver(EficasEvent.EVENT_TYPES.TABCHANGED, callbackId=self.viewmanager.dict_editors[index])
73
74 #######
75 #
76 # Méthodes gérant les boutons dans SALOME
77 #
78 #######
79
80 # Rq: Utilisation de la méthode str() pour passer d'un Qstring à un string
81
82     def adaofileNew(self, adao_case):
83
84       qtEficas.Appli.fileNew(self)
85       index = self.viewmanager.myQtab.currentIndex()
86       adao_case.name          = str(self.viewmanager.myQtab.tabText(index))
87       adao_case.setEditor(self.viewmanager.dict_editors[index])
88       self.notifyObserver(EficasEvent.EVENT_TYPES.NEW, callbackId=adao_case)
89
90     def adaoFileSave(self, adao_case):
91
92       ok = qtEficas.Appli.fileSave(self)
93       if ok:
94         index = self.viewmanager.myQtab.currentIndex()
95         adao_case.name          = str(self.viewmanager.myQtab.tabText(index))
96         adao_case.filename      = str(self.viewmanager.dict_editors[index].fichier)
97         adao_case.setEditor(self.viewmanager.dict_editors[index])
98         self.notifyObserver(EficasEvent.EVENT_TYPES.SAVE, callbackId=adao_case)
99
100     def adaoFileSaveAs(self, adao_case):
101
102       ok = qtEficas.Appli.fileSaveAs(self)
103       if ok:
104         index = self.viewmanager.myQtab.currentIndex()
105         adao_case.name          = str(self.viewmanager.myQtab.tabText(index))
106         adao_case.filename      = str(self.viewmanager.dict_editors[index].fichier)
107         adao_case.setEditor(self.viewmanager.dict_editors[index])
108         self.notifyObserver(EficasEvent.EVENT_TYPES.SAVE, callbackId=adao_case)
109
110     def adaoFileOpen(self, adao_case):
111
112       tab_number = self.viewmanager.myQtab.count()
113       ok = self.viewmanager.handleOpen()
114       if ok:
115         # On regarde si c'est un nouveau editeur
116         if self.viewmanager.myQtab.count() > tab_number:
117           index = self.viewmanager.myQtab.currentIndex()
118           adao_case.name          = str(self.viewmanager.myQtab.tabText(index))
119           adao_case.filename      = str(self.viewmanager.dict_editors[index].fichier)
120           adao_case.setEditor(self.viewmanager.dict_editors[index])
121           self.notifyObserver(EficasEvent.EVENT_TYPES.OPEN, callbackId=adao_case)
122
123     def adaoFileClose(self, adao_case):
124
125         index = self.viewmanager.myQtab.currentIndex()
126         close_editor = self.viewmanager.dict_editors[index]
127         res = self.viewmanager.handleClose(self)
128         if res != 2: # l utilsateur a annule
129           if close_editor.fichier is None:
130             # Cas fichier vide
131             self.notifyObserver(EficasEvent.EVENT_TYPES.CLOSE, callbackId=close_editor)
132           else:
133             # Cas fichier existant
134             self.notifyObserver(EficasEvent.EVENT_TYPES.CLOSE, callbackId=close_editor)
135
136 #######
137 #
138 # Méthodes auxiliares de gestion du GUI Eficas pour synchronisation
139 # avec la partie GUI de SALOME
140 #
141 #######
142
143     def selectCase(self, editor):
144       rtn = False
145       for indexEditor in self.viewmanager.dict_editors.keys():
146         if editor is self.viewmanager.dict_editors[indexEditor]:
147           self.viewmanager.myQtab.setCurrentIndex(indexEditor)
148           rtn = True
149           break
150       return rtn
151
152     def getCurrentEditor(self):
153       index = self.viewmanager.myQtab.currentIndex()
154       editor = None
155       if index >= 0:
156         editor = self.viewmanager.dict_editors[index]
157       return editor
158
159
160
161
162 #######
163 #
164 # Méthodes secondaires permettant de gérer les observeurs du
165 # GUI d'Eficas
166 #
167 #######
168
169     def addObserver(self, observer):
170         """
171         In fact, only one observer may be defined for the moment.
172         """
173         try:
174             observer.processEficasEvent
175         except:
176             raise DevelException("the argument should implement the function processEficasEvent")
177         self.__observer = observer
178
179     def notifyObserver(self, eventType, callbackId=None):
180       eficasEvent = EficasEvent(eventType, callbackId)
181       self.__observer.processEficasEvent(self, eficasEvent)