1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2007-2021 EDF R&D
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 from __future__ import absolute_import
23 from builtins import str
29 from Extensions.i18n import tr
31 from PyQt5.QtWidgets import QDialog, QMessageBox, QFileDialog
32 from PyQt5.QtCore import QSize
33 from desViewTexte import Ui_dView
35 # ------------------------------- #
36 class ViewText(Ui_dView,QDialog):
37 # ------------------------------- #
39 Classe permettant la visualisation de texte
41 def __init__(self,parent,editor=None,entete=None,texte=None,largeur=600,hauteur=600):
42 QDialog.__init__(self,parent)
46 self.resize( QSize(largeur,hauteur).expandedTo(self.minimumSizeHint()) )
47 self.bclose.clicked.connect(self.close)
48 self.bsave.clicked.connect(self.saveFile )
50 if entete != None : self.setWindowTitle (entete)
51 if entete != None : self.setText (texte)
54 def setText(self, txt ):
55 self.view.setText(txt)
58 #recuperation du nom du fichier
59 if self.editor != None :
60 dir=self.editor.appliEficas.maConfiguration.savedir
63 fn = QFileDialog.getSaveFileName(None,
64 tr("Sauvegarder le fichier"),
68 if fn == None : return (0, None)
70 ulfile = os.path.abspath(fn)
71 if self.editor != None :
72 self.editor.appliEficas.maConfiguration.savedir=os.path.split(ulfile)[0]
75 f.write(str(self.view.toPlainText()))
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))