Salome HOME
[MEDCalc] Presentation removal
[modules/med.git] / src / MEDCalc / gui / dialogs / WidgetPresentationParameters.cxx
index dc246e42787870aa45ee81fd1cf5664014fe03cf..380784b0200829cb8cc3d519c9e4fa3105abc5ca 100644 (file)
@@ -18,6 +18,7 @@
 //
 
 #include "WidgetPresentationParameters.hxx"
+#include <Basics_Utils.hxx>
 
 WidgetPresentationParameters::WidgetPresentationParameters(QWidget* parent)
   : QWidget(parent)
@@ -25,23 +26,6 @@ WidgetPresentationParameters::WidgetPresentationParameters(QWidget* parent)
   ui.setupUi(this); // To be done first
 }
 
-MEDCALC::MEDPresentationViewMode
-WidgetPresentationParameters::getViewMode() {
-  QString viewMode = this->ui.comboBoxViewMode->currentText();
-  if (viewMode == tr("LAB_VIEW_MODE_REPLACE")) {
-    return MEDCALC::VIEW_MODE_REPLACE;
-  }
-  else if (viewMode == tr("LAB_VIEW_MODE_OVERLAP")) {
-    return MEDCALC::VIEW_MODE_OVERLAP;
-  }
-  else if (viewMode == tr("LAB_VIEW_MODE_NEW_LAYOUT")) {
-    return MEDCALC::VIEW_MODE_NEW_LAYOUT;
-  }
-  else if (viewMode == tr("LAB_VIEW_MODE_SPLIT_VIEW")) {
-    return MEDCALC::VIEW_MODE_SPLIT_VIEW;
-  }
-}
-
 std::string
 WidgetPresentationParameters::getField()
 {
@@ -82,4 +66,7 @@ WidgetPresentationParameters::getColorMap()
   else if (colorMap == tr("LAB_COOL_TO_WARM")) {
     return MEDCALC::COLOR_MAP_COOL_TO_WARM;
   }
+  // Should not happen
+  STDLOG("Strange!! No matching color map found - returning blue to red.");
+  return MEDCALC::COLOR_MAP_BLUE_TO_RED_RAINBOW;
 }