Salome HOME
Initial version
[modules/gui.git] / src / Plot2d / Plot2d_Prs.cxx
1 //  SALOME OCCViewer : build OCC Viewer into Salome desktop
2 //
3 //  Copyright (C) 2004  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.org 
21 //
22 //
23 //
24 //  File   : Plot2d_Prs.cxx
25 //  Author : Sergey ANIKIN
26 //  Module : SALOME
27 //  $Header$
28
29 #include <qwt_plot.h>
30 #include "Plot2d_Prs.h"
31
32 //==========================================================
33 /*!
34  *  Plot2d_Prs::Plot2d_Prs
35  *  Default constructor
36  */
37 //==========================================================
38 Plot2d_Prs::Plot2d_Prs( bool theDelete )
39 : mySecondY( false)
40 {
41   setAutoDel(theDelete);
42 }
43
44 //==========================================================
45 /*!
46  *  Plot2d_Prs::Plot2d_Prs
47  *  Standard constructor
48  */
49 //==========================================================
50 Plot2d_Prs::Plot2d_Prs( const Plot2d_Curve* obj, bool theDelete )
51 : mySecondY( false)
52 {
53   setAutoDel(theDelete);
54   AddObject( obj ); 
55 }
56
57 //==========================================================
58 /*!
59  *  Plot2d_Prs::~Plot2d_Prs
60  *  Destructor
61  */
62 //==========================================================
63 Plot2d_Prs::~Plot2d_Prs()
64
65 }
66
67 //==========================================================
68 /*!
69  *  Plot2d_Prs::GetObjects
70  *  Get curves list
71  */
72 //==========================================================
73 curveList Plot2d_Prs::getCurves() const
74 {
75   return myCurves;
76 }
77
78 //==========================================================
79 /*!
80  *  Plot2d_Prs::AddObject
81  *  Add curbe
82  */
83 //==========================================================
84 void Plot2d_Prs::AddObject( const Plot2d_Curve* obj )
85 {
86   myCurves.append((Plot2d_Curve*)obj);
87
88   if (obj->getYAxis() == QwtPlot::yRight)
89     mySecondY = true;
90 }
91
92 //==========================================================
93 /*!
94  *  Plot2d_Prs::IsNull
95  *  Return 0 if list of the curves is empty
96  *  [ Reimplemented from SALOME_Prs ]
97  */
98 //==========================================================
99 bool Plot2d_Prs::IsNull() const 
100
101   return myCurves.isEmpty();
102 }
103
104 //==========================================================
105 /*!
106  *  Plot2d_Prs::IsSecondY
107  *  Return 1 if in the list of curves exist at least one curve
108  *  with axis Qwt::yRight
109  *  [ Reimplemented from SALOME_Prs ]
110  */
111 //==========================================================
112 bool Plot2d_Prs::isSecondY() const
113 {
114   return mySecondY;
115 }
116
117 //==========================================================
118 /*!
119  *  Plot2d_Prs::IsNull
120  *  Return 0 if list of the curves is empty
121  *  [ Reimplemented from SALOME_Prs ]
122  */
123 //==========================================================
124 void Plot2d_Prs::setAutoDel(bool theDel)
125 {
126   myCurves.setAutoDelete(theDel);
127 }