Salome HOME
186128e1f12e85910caea2656dcb111809b29811
[tools/eficas.git] / InterfaceQT4 / viewManager.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-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 os, string
22 from Extensions.i18n import tr
23 from determine import monEnvQT5
24 if monEnvQT5:
25    from  PyQt5.QtWidgets  import QFileDialog, QMessageBox
26    from  PyQt5.QtCore  import QFileInfo
27 else :
28     from PyQt4.QtGui  import *
29     from PyQt4.QtCore import *
30
31 DictExtensions= {"MAP" : ".map"}
32 class MyTabview:
33
34    def __init__(self,appliEficas):
35        self.appliEficas=appliEficas
36        self.tabWidgets = []
37        self.mesIndexes = {}
38        self.appliEficas=appliEficas
39        self.editors = []
40        self.dict_editors={}
41        self.untitledCount = 0
42        self.doubles = {}
43
44        self.myQtab = self.appliEficas.myQtab
45
46        if monEnvQT5:
47           self.myQtab.currentChanged.connect(self.indexChanged)
48           self.myQtab.tabCloseRequested.connect(self.closeTab)
49        else :
50           self.myQtab.connect(self.myQtab, SIGNAL('tabCloseRequested(int)'), self.closeTab)
51           if self.appliEficas.multi== True:
52              self.myQtab.connect(self.myQtab,SIGNAL("currentChanged(int)"),self.indexChanged)
53         
54    def indexChanged(self):
55        index=self.myQtab.currentIndex()
56        if  self.dict_editors.has_key(index):
57            editor=self.dict_editors[index]
58            self.appliEficas.CONFIGURATION=editor.CONFIGURATION
59            self.appliEficas.code=editor.CONFIGURATION.code
60            self.appliEficas.setWindowTitle(editor.titre)
61            self.appliEficas.construitMenu()
62
63    def handleOpen(self,fichier=None,patron=0,units=None):
64        result = None
65        if fichier is None:
66             if self.appliEficas.demande==True : 
67                self.appliEficas.definitCode(None,None)
68                if self.appliEficas.code == None:return
69             
70             if DictExtensions.has_key(self.appliEficas.code) :
71                chaine="JDC (*"+DictExtensions[self.appliEficas.code]+");;"
72                extensions=tr(chaine+ "All Files (*)")
73             else :
74                extensions=tr('Fichiers JDC (*.comm);;''Tous les Fichiers (*)')
75
76             fichier = QFileDialog.getOpenFileName(self.appliEficas,
77                         tr('Ouvrir Fichier'),
78                         self.appliEficas.CONFIGURATION.savedir,
79                          extensions)
80             if monEnvQT5 : fichier=fichier[0]
81             if not fichier: return result
82        fichier = os.path.abspath(unicode(fichier))
83        ulfile = os.path.abspath(unicode(fichier))
84        self.appliEficas.CONFIGURATION.savedir=os.path.split(ulfile)[0]
85        self.appliEficas.addToRecentList(fichier)
86        maPage=self.getEditor( fichier,units=units)
87        if maPage: result = maPage
88        if maPage : self.myQtab.setTabText(self.myQtab.indexOf(maPage),os.path.basename(fichier))
89        return result
90
91    def closeTab(self):
92        self.handleClose()
93
94    def handleClose(self,doitSauverRecent = 1,texte=tr('&Quitter')):
95        if doitSauverRecent : self.appliEficas.sauveRecents()
96        index=self.myQtab.currentIndex()
97        if index < 0 : return
98        res=self.checkDirty(self.dict_editors[index],texte)
99        if res == 2 : return 2             # l utilisateur a annule
100        index=self.myQtab.currentIndex()
101        idx=index
102        while idx < len(self.dict_editors) -1 :
103              self.dict_editors[idx]=self.dict_editors[idx+1]
104              idx = idx + 1
105        del self.dict_editors[len (self.dict_editors) -1]
106        try :
107            del self.doubles[self.dict_editors[index]]
108        except :
109            pass
110        self.myQtab.removeTab(index)
111        return res
112        
113
114    def run(self):
115        index=self.myQtab.currentIndex()
116        if index < 0 : return
117        editor=self.dict_editors[index]
118        editor.run()
119
120    def saveRun(self):
121        index=self.myQtab.currentIndex()
122        if index < 0 : return
123        editor=self.dict_editors[index]
124        editor.saveRun()
125
126    def handleCloseAll(self,texte=tr('Quitter')):
127        res=0
128        self.appliEficas.sauveRecents()
129        while len(self.dict_editors) > 0 :
130              self.myQtab.setCurrentIndex(0)
131              res=self.handleClose(0,texte)
132              if res==2 : return res   # l utilsateur a annule
133        return res
134         
135    def handleRechercher(self):
136        #print "passage dans handleRechercher"
137        index=self.myQtab.currentIndex()
138        if index < 0 : return
139        editor=self.dict_editors[index]
140        editor.handleRechercher()
141
142    def handleRechercherDsCatalogue(self):
143        #print "passage dans handleRechercher"
144        index=self.myQtab.currentIndex()
145        if index < 0 : return
146        editor=self.dict_editors[index]
147        editor.handleRechercherDsCatalogue()
148
149    def handleDeplier(self):
150        index=self.myQtab.currentIndex()
151        if index < 0 : return
152        editor=self.dict_editors[index]
153        editor.handleDeplier()
154    
155    def handleEditCopy(self):
156        #print "passage dans handleEditCopy"
157        index=self.myQtab.currentIndex()
158        if index < 0 : return
159        editor=self.dict_editors[index]
160        editor.handleEditCopy()
161
162    def handleEditCut(self):
163        #print "passage dans handleEditCut"
164        index=self.myQtab.currentIndex()
165        if index < 0 : return
166        editor=self.dict_editors[index]
167        editor.handleEditCut()
168
169    def handleEditPaste(self):
170        #print "passage dans handleEditPaste"
171        index=self.myQtab.currentIndex()
172        if index < 0 : return
173        editor=self.dict_editors[index]
174        editor.handleEditPaste()
175
176    def handleSupprimer(self):
177        index=self.myQtab.currentIndex()
178        if index < 0 : return
179        editor=self.dict_editors[index]
180        editor.handleSupprimer()
181
182    def newEditor(self,include=0):
183        if self.appliEficas.demande==True : 
184            self.appliEficas.definitCode(None,None)
185            if self.appliEficas.code == None:return
186        maPage=self.getEditor(include=include)
187
188    def newIncludeEditor(self):
189        self.newEditor(include=1)
190
191    def handleViewJdcFichierSource(self):
192        index=self.myQtab.currentIndex()
193        if index < 0 : return
194        self.dict_editors[index].viewJdcSource()
195
196    def handleViewJdcRegles(self):
197        index=self.myQtab.currentIndex()
198        if index < 0 : return
199        self.dict_editors[index].viewJdcRegles()
200
201    def handlegestionParam(self):
202        index=self.myQtab.currentIndex()
203        if index < 0 : 
204           QMessageBox.warning( self.appliEficas,tr(u"Creation Parametre indisponible"),tr(u"les parametres sont lies a un jeu de donnees"))
205           return
206        self.dict_editors[index].gestionParam()
207
208    def handleViewJdcRapport(self):
209        index=self.myQtab.currentIndex()
210        if index < 0 : return
211        self.dict_editors[index].viewJdcRapport()
212
213    def handleViewJdcPy(self):
214        index=self.myQtab.currentIndex()
215        if index < 0 : return
216        self.dict_editors[index].viewJdcPy()
217
218    def saveCurrentEditor(self):
219        index=self.myQtab.currentIndex()
220        if index < 0 : return
221        editor=self.dict_editors[index]
222        if editor in self.doubles.keys() :
223            QMessageBox.warning(
224                      None,
225                      tr("Fichier Duplique"),
226                      tr("Le fichier ne sera pas sauvegarde."),)
227            return
228        ok, newName = editor.saveFile()
229        if ok :
230            fileName=os.path.basename(unicode(newName))
231            self.myQtab.setTabText(index,fileName)
232        return ok
233
234    def sauveLigneCurrentEditor(self):
235        index=self.myQtab.currentIndex()
236        if index < 0 : return
237        editor=self.dict_editors[index]
238        if editor in self.doubles.keys() :
239            QMessageBox.warning(
240                      None,
241                      tr("Fichier Duplique"),
242                      tr("Le fichier ne sera pas sauvegarde."),)
243            return
244        ok, newName = editor.sauveLigneFile()
245        if ok :
246            fileName=os.path.basename(unicode(newName))
247            self.myQtab.setTabText(index,fileName)
248        return ok
249
250
251    def saveAsCurrentEditor(self):
252        index=self.myQtab.currentIndex()
253        editor=self.dict_editors[index]
254        oldName=editor.fichier
255        ok,newName = editor.saveFileAs()
256        if ok :
257            fileName=os.path.basename(unicode(newName))
258            self.myQtab.setTabText(index,fileName)
259        if editor in self.doubles.keys():
260           if oldName != newName :
261              del self.doubles[editor]
262        return ok
263
264    def displayJDC(self,jdc,fn=None):
265         """
266         Public slot to display a file in an editor.
267         @param fn name of file to be opened
268         # insert filename into list of recently opened files
269         """
270         titre=None
271         if fn != None : titre=fn.split("/")[-1]
272         editor = self.getEditor(fichier= fn, jdc = jdc ,include=1)
273         self.appliEficas.addToRecentList(editor.getFileName())
274
275    def getEditor(self,fichier = None,jdc = None, units = None,include=0):
276        newWin = 0
277        double = None
278        indexEditor=0
279        for indexEditor in self.dict_editors.keys():
280            editor=self.dict_editors[indexEditor]
281            if self.samepath(fichier, editor.getFileName()):
282               if monEnvQT5 :
283                 msgBox = QMessageBox()
284                 msgBox.setWindowTitle(tr("Fichier"))
285                 msgBox.setText(tr("Le fichier <b>%s</b> est deja ouvert", str(fichier)))
286                 msgBox.addButton(tr("&Duplication"),0)
287                 msgBox.addButton(tr("&Abandonner"),1)
288                 abort=msgBox.exec_()
289               else :
290                 abort = QMessageBox.warning(self.appliEficas,
291                       tr("Fichier"),
292                       tr("Le fichier <b>%s</b> est deja ouvert.",str(fichier)),
293                       tr("&Duplication"),
294                       tr("&Abort"))
295               if abort: break
296               double=editor
297        else :
298             from editor import JDCEditor
299             editor = JDCEditor(self.appliEficas,fichier, jdc, self.myQtab,units=units,vm = self,include=include)
300
301             if double != None : 
302                self.doubles[editor]=double
303             if editor.jdc: # le fichier est bien un jdc
304                 self.editors.append(editor)
305                 newWin = 1
306             else:
307                 editor.closeIt()
308
309        if newWin:
310             self.addView(editor, fichier)
311        elif editor.jdc:
312             self.myQtab.setCurrentIndex(indexEditor)
313
314        index=self.myQtab.currentIndex()
315        if index != -1 :
316           self.dict_editors[index]=editor
317        return editor
318
319    def addView(self, win, fichier=None):
320 #PNPNPNPN --> a affiner
321         if fichier is None:
322             self.untitledCount += 1
323             self.myQtab.addTab(win, tr("Fichier non encore nomme ", self.untitledCount))
324             #self.myQtab.addTab(win, str(self.appliEficas.code))
325         else:
326             liste=fichier.split('/')
327             txt =  liste[-1]
328             if not QFileInfo(fichier).isWritable():
329                 txt = '%s (ro)' % txt
330             self.myQtab.addTab(win,txt )
331         self.myQtab.setCurrentWidget(win)
332         self.currentEditor=win
333         win.setFocus()
334
335    def getOpenStartDir(self) :
336        #PN --> Les Preferences
337         try :
338             userDir=os.path.expanduser("~/Eficas_install/")
339             return userDir
340         except :
341             return ""
342
343    def samepath(self,f1, f2):
344     """
345     compare two paths.
346     """
347     if f1 is None or f2 is None: return 0
348     if os.path.normcase(os.path.normpath(f1)) == os.path.normcase(os.path.normpath(f2)) : return 1
349     return 0
350
351
352    def checkDirty(self, editor,texte):
353         """
354         Private method to check dirty status and open a message window.
355         
356         @param editor editor window to check
357         @return flag indicating successful reset of the dirty flag (boolean)
358         """        
359         res=1 
360         if (editor.modified) and (editor in self.doubles.keys()) :
361             if monEnvQT5 :
362               msgBox = QMessageBox(None)
363               msgBox.setWindowTitle(tr("Fichier Duplique"))
364               msgBox.setText(tr("Le fichier ne sera pas sauvegarde."))
365               msgBox.addButton(texte,0)
366               msgBox.addButton(tr("&Annuler"),1)
367               res=msgBox.exec_()
368             else:
369               res = QMessageBox.warning(
370                      None,
371                      tr("Fichier Duplique"),
372                      tr("Le fichier ne sera pas sauvegarde."),
373                      tr(texte), 
374                      tr("&Annuler"))
375             if res == 0 : return 1
376             return 2
377         if editor.modified:
378             fn = editor.getFileName()
379             if fn is None: fn = tr('Noname')
380             if monEnvQT5 :
381               msgBox = QMessageBox(None)
382               msgBox.setWindowTitle(tr("Fichier Modifie"))
383               msgBox.setText(tr("Le fichier ne sera pas sauvegarde."))
384               msgBox.addButton(tr("&Sauvegarder"),1)
385               msgBox.addButton(tr("&Quitter sans sauvegarder"),0)
386               res=msgBox.exec_()
387             else :
388               res = QMessageBox.warning(self.appliEficas, 
389                 tr("Fichier Modifie"),
390                 tr("Le fichier %s n a pas ete sauvegarde.",str(fn)),
391                 tr("&Sauvegarder"),
392                 tr(texte),
393                 tr("&Quitter sans sauvegarder") )
394               if res == 2 : res = 1
395             if res == 0:
396                 (ok, newName) = editor.saveFile()
397                 if ok:
398                     fileName=os.path.basename(unicode(newName))
399                     index=self.myQtab.currentIndex()
400                     self.myQtab.setTabText(index,fileName)
401                 return ok
402         return res
403
404    def handleAjoutGroup(self,listeGroup):
405        index=self.myQtab.currentIndex()
406        if index < 0 : return
407        editor=self.dict_editors[index]
408        editor.handleAjoutGroup(listeGroup)