Salome HOME
Move MEDCALC tests into SSL mode
[modules/med.git] / src / MEDCalc / cmp / MEDPresentationContour.hxx
index 364965cd6000563a9748ba0d5b0dc99fcfc0f7e5..9ab2a4d8f3b99deb18e493fc107ec43e7261aa49 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2016  CEA/DEN, EDF R&D
+// Copyright (C) 2016-2022  CEA/DEN, 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
 class MEDCALC_EXPORT MEDPresentationContour : public MEDPresentation
 {
 public:
-  MEDPresentationContour(const MEDCALC::ContourParameters& params) :
-    MEDPresentation(params.fieldHandlerId, "MEDPresentationContour"), _params(params)
-  {}
+  static const std::string TYPE_NAME;
+  static const std::string PROP_NB_CONTOUR;
+  static const std::string PROB_CONTOUR_COMPONENT_ID;
+
+  MEDPresentationContour(const MEDCALC::ContourParameters& params, const MEDCALC::ViewModeType viewMode);
   virtual ~MEDPresentationContour() {}
 
+  virtual void initFieldMeshInfos();
+
   void updatePipeline(const MEDCALC::ContourParameters& params);
-  MEDCALC::MEDPresentationViewMode getViewMode() { return _params.viewMode; }
+
+  void getParameters(MEDCALC::ContourParameters & params) const { params = _params; } ;
+  void setParameters(const MEDCALC::ContourParameters & params) { _params = params; } ;
 
 protected:
+  void initProgFilter();
+  void updateNbContours(const int nbContours);
+  void updateContourComponent(const std::string& newCompo);
   virtual void internalGeneratePipeline();
+  int getContourComponentId() const;
+  std::string getContourComponentName() const;
+  void setNumberContours();
+  std::string getFieldName() const override;
+  void scalarBarTitle() override;
 
 private:
   MEDCALC::ContourParameters _params;
+  std::string _countourProgrammableVar;
 };
 
 #endif