]> SALOME platform Git repositories - tools/eficas.git/blob - InterfaceQT4/monViewTexte.py
Salome HOME
update version
[tools/eficas.git] / InterfaceQT4 / monViewTexte.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2021   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 # Modules Python
21 from __future__ import absolute_import
22 try :
23     from builtins import str
24 except : pass
25
26 import types,os
27 import traceback
28
29 from Extensions.i18n import tr
30
31 from PyQt5.QtWidgets import QDialog, QMessageBox, QFileDialog
32 from PyQt5.QtCore import QSize
33 from desViewTexte import Ui_dView
34
35 # ------------------------------- #
36 class ViewText(Ui_dView,QDialog):
37 # ------------------------------- #
38     """
39     Classe permettant la visualisation de texte
40     """
41     def __init__(self,parent,editor=None,entete=None,texte=None,largeur=600,hauteur=600):
42         QDialog.__init__(self,parent)
43         self.editor=editor
44         self.setupUi(self)
45
46         self.resize( QSize(largeur,hauteur).expandedTo(self.minimumSizeHint()) )
47         self.bclose.clicked.connect(self.close)
48         self.bsave.clicked.connect(self.saveFile )
49
50         if entete != None : self.setWindowTitle (entete)
51         if entete != None : self.setText (texte)
52
53
54     def setText(self, txt ):
55         self.view.setText(txt)
56
57     def saveFile(self):
58         #recuperation du nom du fichier
59         if self.editor != None :
60             dir=self.editor.appliEficas.maConfiguration.savedir
61         else:
62             dir='/tmp'
63         fn = QFileDialog.getSaveFileName(None,
64                 tr("Sauvegarder le fichier"),
65                 dir)
66         fn=fn[0]
67         if fn == ""  : return
68         if fn == None : return (0, None)
69
70         ulfile = os.path.abspath(fn)
71         if self.editor != None :
72             self.editor.appliEficas.maConfiguration.savedir=os.path.split(ulfile)[0]
73         try:
74             f = open(fn, 'w')
75             f.write(str(self.view.toPlainText()))
76             f.close()
77             return 1
78         except IOError as why:
79             QMessageBox.critical(self, tr("Sauvegarder le fichier"),
80                   tr('Le fichier')+str(fn) + tr('n a pas pu etre sauvegarde : ') + str(why))
81             return