Salome HOME
introducing test on mesh extension, with resources generated first
[modules/hydro.git] / src / HYDROTools / hydro_plugins.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2011-2019  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, or (at your option) any later version.
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 # Author : Guillaume Boulant (EDF)
21 #
22 import salome_pluginsmanager
23 import os
24 from qtsalome import QIcon
25
26 try:
27   from plugins import meshEdgesToShapesDialog
28   salome_pluginsmanager.AddFunction('Mesh edges to shapes',
29                                     'Create shapefiles from mesh edges groups and borders',
30                                     meshEdgesToShapesDialog.execDialog)
31 except Exception as e:
32   salome_pluginsmanager.logger.info('ERROR: meshEdgesToShapes plug-in is unavailable: {}'.format(e))
33   pass
34
35 try:
36   from plugins import fitShapePointsToMeshEdgesDialog
37   salome_pluginsmanager.AddFunction('Adjust shapefile',
38                                     'Adjust shapefile points to mesh edges',
39                                     fitShapePointsToMeshEdgesDialog.execDialog)
40 except Exception as e:
41   salome_pluginsmanager.logger.info('ERROR: fitShapePointsToMeshEdges plug-in is unavailable: {}'.format(e))
42   pass
43
44 try:
45   from testPlugin import testDialog
46   salome_pluginsmanager.AddFunction('test Dialog',
47                                     'test Dialog not implemented',
48                                     testDialog.execDialog)
49 except Exception as e:
50   salome_pluginsmanager.logger.info('ERROR: test plug-in is unavailable: {}'.format(e))
51   pass
52