Salome HOME
[MEDCalc] Manage color maps
[modules/med.git] / src / MEDCalc / gui / dialogs / WidgetPresentationParameters.hxx
1 #ifndef WIDGET_PRESENTATION_PARAMETERS_HXX
2 #define WIDGET_PRESENTATION_PARAMETERS_HXX
3
4 #include "MEDCALCGUIdialogs.hxx"
5
6 #include <QtGui>
7 #include "ui_WidgetPresentationParameters.h"
8
9 #include <SALOMEconfig.h>
10 #include CORBA_SERVER_HEADER(MEDPresentationManager)
11
12 class WidgetPresentationParameters : public QWidget
13 {
14 public:
15   WidgetPresentationParameters(QWidget* parent = 0);
16
17   MEDCALC::MEDPresentationViewMode getViewMode();
18   std::string getField();
19   std::string getScalarBarRange();
20   double getScalarBarTimestep();
21   double getScalarBarMinVal();
22   double getScalarBarMaxVal();
23   MEDCALC::MEDPresentationColorMap getColorMap();
24
25  private:
26   Ui_WidgetPresentationParameters ui; // instance of the class defined in ui_WidgetPresentationParameters.h
27 };
28
29
30 #endif