Salome HOME
Merge remote-tracking branch 'origin/vsr/qtesting'
[modules/med.git] / src / MEDCalc / cmp / MEDPresentation.hxx
1 // Copyright (C) 2011-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 // Authors: A Bruneton (CEA), C Aguerre (EdF)
20
21 #ifndef SRC_MEDCALC_CMP_MEDPRESENTATION_HXX_
22 #define SRC_MEDCALC_CMP_MEDPRESENTATION_HXX_
23
24 #include "MEDCouplingRefCountObject.hxx"
25 #include <Python.h>
26 #include "MEDCALC.hxx"
27
28 #include <SALOMEconfig.h>
29 #include CORBA_SERVER_HEADER(MEDDataManager)
30 #include CORBA_SERVER_HEADER(MEDPresentationManager)
31
32 #include <vector>
33 #include <map>
34 #include <string>
35
36 class MEDCALC_EXPORT MEDPresentation
37 {
38   friend class MEDPresentationManager_i;
39
40 public:
41
42   typedef ::CORBA::Long TypeID;
43
44   virtual ~MEDPresentation();
45
46   void setProperty(const std::string& propName, const std::string& propValue);
47   const std::string getProperty(const std::string& propName) const;
48
49   void activateView() const;
50
51 protected:
52   typedef std::pair<int, PyObject *> PyObjectId;
53
54   MEDPresentation(MEDPresentation::TypeID fieldHandlerId, const std::string& name);
55   std::string getRenderViewCommand(MEDCALC::MEDPresentationViewMode viewMode) const;
56   std::string getResetCameraCommand() const;
57   std::string getColorMapCommand(MEDCALC::MEDPresentationColorMap colorMap) const;
58
59   virtual void internalGeneratePipeline() = 0;
60   PyObject* getPythonObjectFromMain(const char* var) const;
61   void pushPyObjects(PyObjectId obj, PyObjectId disp);
62   void pushAndExecPyLine(const std::string & lin);
63
64   MEDPresentation::TypeID getID() const { return _fieldHandlerId; }
65   long getPyViewID() const { return _renderViewPyId; }
66
67   static int GeneratePythonId();
68
69   virtual MEDCALC::MEDPresentationViewMode getViewMode() = 0;
70
71 private:
72
73   std::string getFieldTypeString(MEDCoupling::TypeOfField fieldType) const;
74
75   // The following functions are reserved to friend class MEDPresentationManager
76   void generatePipeline();
77
78   template<typename PresentationType, typename PresentationParameters>
79   void updatePipeline(PresentationParameters params);
80
81 protected:
82   std::string _fileName;
83   std::string _fieldName;
84   std::string _fieldType;
85
86   ///! Identifier (in the Python dump) of the render view
87   int _renderViewPyId;
88
89 private:
90   MEDPresentation::TypeID _fieldHandlerId;
91
92   ///! Pipeline elements
93   std::vector<PyObjectId> _pipeline;
94
95   ///! Corresponding display object, if any:
96   std::vector<PyObjectId> _display;
97
98   ///! Presentation properties <key,value>
99   std::map<std::string, std::string> _properties;
100 };
101
102 #include "MEDPresentation.txx"
103
104 #endif /* SRC_MEDCALC_CMP_MEDPRESENTATION_HXX_ */