X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FTools%2FYamsPlug%2Fyamsplug_plugin.py;h=afaa40f3a7fbd1ef483d14d0678f0427e572125d;hb=560f8b2d0c2a7fdb4047f981cfac56ed3629bc1a;hp=cc7a7c130f52f6a145a7371ce11909baeeba46f8;hpb=bd8f1aee7c78f7d2eb82bd4fec5e08c9e3d280ce;p=modules%2Fsmesh.git diff --git a/src/Tools/YamsPlug/yamsplug_plugin.py b/src/Tools/YamsPlug/yamsplug_plugin.py old mode 100644 new mode 100755 index cc7a7c130..afaa40f3a --- a/src/Tools/YamsPlug/yamsplug_plugin.py +++ b/src/Tools/YamsPlug/yamsplug_plugin.py @@ -1,9 +1,10 @@ -# Copyright (C) 2006-2013 EDF R&D +# -*- coding: utf-8 -*- +# Copyright (C) 2006-2016 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public # License as published by the Free Software Foundation; either -# version 2.1 of the License. +# version 2.1 of the License, or (at your option) any later version. # # This library is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -21,24 +22,24 @@ # if not, copy this file as ${HOME}/Plugins/smesh_plugins.py or ${APPLI}/Plugins/smesh_plugins.py def YamsLct(context): - # get context study, studyId, salomeGui + # get context study, salomeGui study = context.study - studyId = context.studyId sg = context.sg import os import subprocess import tempfile - from PyQt4 import QtCore - from PyQt4 import QtGui - from PyQt4.QtGui import QFileDialog - from PyQt4.QtGui import QMessageBox + from qtsalome import QFileDialog, QMessageBox + #prior test to avoid unnecessary user GUI work with ending crash try : - os.environ['DISTENE_LICENCE_FILE_FOR_YAMS'] + os.environ['DISTENE_LICENSE_FILE'] except: - QMessageBox.warning(None,"Products","Distene's products are not installed") + QMessageBox.warning(None,"Products","""\ +Distene's product MeshGem SurfOpt is not installed. +required environment variable: +DISTENE_LICENSE_FILE='.../dlim8.var.sh'""") return import monYamsPlugDialog - window=monYamsPlugDialog.getDialog() + window = monYamsPlugDialog.getDialog() window.show()