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