mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-03-31 16:54:29 +05:00
48 lines
1.7 KiB
Python
48 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (C) 2006-2013 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.
|
|
#
|
|
# This library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Lesser General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
# License along with this library; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
#
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
#
|
|
|
|
# if you already have plugins defined in a salome_plugins.py file, add this file at the end.
|
|
# if not, copy this file as ${HOME}/Plugins/smesh_plugins.py or ${APPLI}/Plugins/smesh_plugins.py
|
|
|
|
def MGCleanerLct(context):
|
|
# get context study, studyId, 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
|
|
|
|
#prior test to avoid unnecessary user GUI work with ending crash
|
|
try :
|
|
os.environ['DISTENE_LICENCE_FILE_FOR_MGCLEANER']
|
|
except:
|
|
QMessageBox.warning(None,"Products","Distene's product MeshGem Cleaner is not installed.\nrequired environment variable:\nDISTENE_LICENCE_FILE_FOR_MGCLEANER='/.../dlim8.var.sh'")
|
|
return
|
|
import MGCleanerMonPlugDialog
|
|
window=MGCleanerMonPlugDialog.getDialog()
|
|
window.show()
|
|
|