Salome HOME
Merge 'master' branch into 'V9_dev' branch.
[modules/med.git] / src / MEDCalc / tui / __init__.py
1 # Copyright (C) 2015-2016  CEA/DEN, EDF R&D
2 #
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License, or (at your option) any later version.
7 #
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 # Lesser General Public License for more details.
12 #
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 #
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 #
19
20 # This functions are to be used to notify the USER of some events
21 # arising on the field operation. It is NOT to be used for logging
22 # purpose
23 def inf(msg): print("INF: "+str(msg))
24 def wrn(msg): print("WRN: "+str(msg))
25 def err(msg): print("ERR: "+str(msg))
26 def dbg(msg): print("DBG: "+str(msg))
27
28 # Initialize CORBA stuff
29 from . import medcorba
30
31 # Connect event listener
32 from . import medevents
33
34 # Fields utilities
35 from .fieldproxy import newFieldProxy, FieldProxy
36
37 # Input/Output
38 from .medio import LoadDataSource
39 from .medio import LoadImageAsDataSource
40 from .medio import GetFirstMeshFromDataSource
41 from .medio import GetFirstFieldFromMesh
42
43 # Presentations
44 from .medpresentation import MakeMeshView
45 from .medpresentation import MakeScalarMap
46 from .medpresentation import MakeContour
47 from .medpresentation import MakeVectorField
48 from .medpresentation import MakeSlices
49 from .medpresentation import MakePointSprite
50 from .medpresentation import RemovePresentation
51 from .medpresentation import MakeDeflectionShape
52
53 from .medpresentation import GetMeshViewParameters
54 from .medpresentation import GetScalarMapParameters
55 from .medpresentation import GetContourParameters
56 from .medpresentation import GetSlicesParameters
57 from .medpresentation import GetPointSpriteParameters
58 from .medpresentation import GetVectorFieldParameters
59 from .medpresentation import GetDeflectionShapeParameters
60
61 from .medpresentation import UpdateMeshView
62 from .medpresentation import UpdateScalarMap
63 from .medpresentation import UpdateContour
64 from .medpresentation import UpdateSlices
65 from .medpresentation import UpdateVectorField
66 from .medpresentation import UpdatePointSprite
67 from .medpresentation import UpdateDeflectionShape
68
69 from .medpresentation import ComputeCellAverageSize, GetDomainCenter, GetSliceOrigins, SelectSourceField
70
71 # Processing
72 from .medprocessing import ChangeUnderlyingMesh
73 from .medprocessing import InterpolateField
74
75 # Console commands
76 from . import medconsole
77
78 # Playing test scenarii
79 from .medtest import PlayQtTestingScenario
80 from .medtest import RequestSALOMETermination