Salome HOME
74b474bbe42397e35439a366188fb58430faa7fd
[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 saveAsCurrentEditor(self):
212        index=self.myQtab.currentIndex()
213        editor=self.dict_editors[index]
214        oldName=editor.fichier
215        ok,newName = editor.saveFileAs()
216        if ok :
217            fileName=os.path.basename(unicode(newName))
218            self.myQtab.setTabText(index,fileName)
219        if editor in self.doubles.keys():
220           if oldName != newName :
221              del self.doubles[editor]
222        return ok
223
224    def displayJDC(self,jdc,fn=None):
225         """
226         Public slot to display a file in an editor.
227         @param fn name of file to be opened
228         # insert filename into list of recently opened files
229         """
230         titre=None
231         if fn != None : titre=fn.split("/")[-1]
232         editor = self.getEditor(fichier= fn, jdc = jdc ,include=1)
233         self.appliEficas.addToRecentList(editor.getFileName())
234
235    def getEditor(self,fichier = None,jdc = None, units = None,include=0):
236        newWin = 0
237        double = None
238        indexEditor=0
239        for indexEditor in self.dict_editors.keys():
240            editor=self.dict_editors[indexEditor]
241            if self.samepath(fichier, editor.getFileName()):
242               abort = QMessageBox.warning(self.appliEficas,
243                         tr("Fichier"),
244                         tr("Le fichier <b>%s</b> est deja ouvert.",str(fichier)),
245                         tr("&Duplication"),
246                         tr("&Abort"))
247               if abort: break
248               double=editor
249        else :
250             from editor import JDCEditor
251             editor = JDCEditor(self.appliEficas,fichier, jdc, self.myQtab,units=units,vm = self,include=include)
252             if double != None : 
253                self.doubles[editor]=double
254             if editor.jdc: # le fichier est bien un jdc
255                 self.editors.append(editor)
256                 newWin = 1
257             else:
258                 editor.closeIt()
259
260        if newWin:
261             self.addView(editor, fichier)
262        elif editor.jdc:
263             self.myQtab.setCurrentIndex(indexEditor)
264
265        index=self.myQtab.currentIndex()
266        if index != -1 :
267           self.dict_editors[index]=editor
268        return editor
269
270    def addView(self, win, fichier=None):
271 #PNPNPNPN --> a affiner
272         if fichier is None:
273             self.untitledCount += 1
274             self.myQtab.addTab(win, tr("Fichier non encore nommé ", self.untitledCount))
275             #self.myQtab.addTab(win, str(self.appliEficas.code))
276         else:
277             liste=fichier.split('/')
278             txt =  liste[-1]
279             if not QFileInfo(fichier).isWritable():
280                 txt = '%s (ro)' % txt
281             self.myQtab.addTab(win,txt )
282         self.myQtab.setCurrentWidget(win)
283         self.currentEditor=win
284         win.setFocus()
285
286    def getOpenStartDir(self) :
287        #PN --> Les Preferences
288         try :
289             userDir=os.path.expanduser("~/Eficas_install/")
290             return userDir
291         except :
292             return ""
293
294    def samepath(self,f1, f2):
295     """
296     compare two paths.
297     """
298     if f1 is None or f2 is None: return 0
299     if os.path.normcase(os.path.normpath(f1)) == os.path.normcase(os.path.normpath(f2)) : return 1
300     return 0
301
302
303    def checkDirty(self, editor,texte):
304         """
305         Private method to check dirty status and open a message window.
306         
307         @param editor editor window to check
308         @return flag indicating successful reset of the dirty flag (boolean)
309         """        
310         res=1 
311         if (editor.modified) and (editor in self.doubles.keys()) :
312             res = QMessageBox.warning(
313                      None,
314                      tr("Fichier Duplique"),
315                      tr("Le fichier ne sera pas sauvegarde."),
316                      tr(texte), 
317                      tr("&Annuler"))
318             if res == 0 : return 1
319             return 2
320         if editor.modified:
321             fn = editor.getFileName()
322             if fn is None:
323                 fn = self.appliEficas.trUtf8('Noname')
324             res = QMessageBox.warning(self.appliEficas, 
325                 tr("Fichier Modifie"),
326                 tr("Le fichier %s n a pas ete sauvegarde.",str(fn)),
327                 tr("&Sauvegarder"),
328                 tr(texte),
329                 tr("&Annuler") )
330             if res == 0:
331                 (ok, newName) = editor.saveFile()
332                 if ok:
333                     fileName=os.path.basename(unicode(newName))
334                     index=self.myQtab.currentIndex()
335                     self.myQtab.setTabText(index,fileName)
336                 return ok
337         return res
338
339    def handleAjoutGroup(self,listeGroup):
340        index=self.myQtab.currentIndex()
341        if index < 0 : return
342        editor=self.dict_editors[index]
343        editor.handleAjoutGroup(listeGroup)