Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Plot2d / Plot2d_FitDataDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 #ifndef PLOT2D_FITDATADLG_H
23 #define PLOT2D_FITDATADLG_H
24
25 #include "Plot2d.h"
26 #include <QDialog>
27
28 class QGroupBox;
29 class QRadioButton;
30 class QLineEdit;
31 class QPushButton;
32
33 class PLOT2D_EXPORT Plot2d_FitDataDlg : public QDialog
34 {
35   Q_OBJECT
36
37 public:
38 // constuctor
39   Plot2d_FitDataDlg( QWidget* parent, bool secondAxisY );
40
41 // sets range
42   void setRange(const double xMin, 
43                 const double xMax,
44                 const double yMin,
45                 const double yMax,
46                 const double y2Min = 0,
47                 const double y2Max = 0);
48 // gets range, returns mode (see getMode())
49   int getRange(double& xMin, 
50                double& xMax,
51                double& yMin,
52                double& yMax,
53                double& y2Min,
54                double& y2Max);
55 // gets mode : 0 - Fit all; 1 - Fit horizontal, 2 - Fit vertical
56   int getMode();
57
58 protected slots:
59 // called when range mode changed
60   void onModeChanged(int);
61
62 private:
63   QGroupBox*              myRangeGrp;
64   QRadioButton*           myModeAllRB;
65   QRadioButton*           myModeHorRB;
66   QRadioButton*           myModeVerRB;
67   QLineEdit*              myXMinEdit;
68   QLineEdit*              myYMinEdit;
69   QLineEdit*              myY2MinEdit;
70   QLineEdit*              myXMaxEdit;
71   QLineEdit*              myYMaxEdit;
72   QLineEdit*              myY2MaxEdit;
73   QPushButton*            myOkBtn;
74   QPushButton*            myCancelBtn;
75   bool                    mySecondAxisY;
76 };
77
78 #endif