Salome HOME
fix conflict
[modules/med.git] / src / MEDCalc / cmp / MEDPresentation.hxx
1 // Copyright (C) 2011-2015  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 <Python.h>
25 #include "MEDCALC.hxx"
26
27 #include <SALOMEconfig.h>
28 #include CORBA_SERVER_HEADER(MEDDataManager)
29 #include CORBA_SERVER_HEADER(MEDPresentationManager)
30
31 #include <vector>
32 #include <map>
33 #include <string>
34
35 class MEDCALC_EXPORT MEDPresentation
36 {
37   friend class MEDPresentationManager_i;
38
39 public:
40
41   virtual ~MEDPresentation() {}
42
43   void setProperty(const std::string& propName, const std::string& propValue);
44   const std::string getProperty(const std::string& propName);
45   std::string getFieldTypeString();
46
47 protected:
48
49   MEDPresentation(MEDCALC::FieldHandler* fieldHdl, std::string name);
50
51   void generatePipeline();
52   virtual void internalGeneratePipeline() = 0;
53   PyObject * getPythonObjectFromMain(const char * var);
54   void pushInternal(PyObject * obj, PyObject * disp = NULL);
55
56 protected:
57
58   ///! field reference - borrowed.
59   MEDCALC::FieldHandler* _fieldHandler;
60
61   ///! Pipeline elements
62   std::vector< PyObject * > _pipeline;
63
64   ///! Corresponding display object, if any:
65   std::vector< PyObject * > _display;
66
67   ///! Presentation properties <key,value>
68   std::map<std::string, std::string> _properties;
69 };
70
71 class MEDCALC_EXPORT MEDPresentationScalarMap :  public MEDPresentation
72 {
73 public:
74   MEDPresentationScalarMap(MEDCALC::FieldHandler* fieldHdl, bool wireframe) :
75     MEDPresentation(fieldHdl, "MEDPresentationScalarMap"),
76     _isWireframe(wireframe)
77   {}
78   virtual ~MEDPresentationScalarMap() {}
79
80 protected:
81   virtual void internalGeneratePipeline();
82
83 private:
84   bool _isWireframe;
85 };
86
87 #endif /* SRC_MEDCALC_CMP_MEDPRESENTATION_HXX_ */