Salome HOME
de9fc819b17bef8585d0bdf068a3c182beedf663
[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   Default constructor
34 */
35 Plot2d_Prs::Plot2d_Prs( bool theDelete )
36 : mySecondY( false)
37 {
38   setAutoDel(theDelete);
39 }
40
41 /*!
42   Standard constructor
43 */
44 Plot2d_Prs::Plot2d_Prs( const Plot2d_Curve* obj, bool theDelete )
45 : mySecondY( false)
46 {
47   setAutoDel(theDelete);
48   AddObject( obj ); 
49 }
50
51 /*!
52   Destructor
53 */
54 Plot2d_Prs::~Plot2d_Prs()
55
56 }
57
58 /*!
59   Get curves list
60 */
61 curveList Plot2d_Prs::getCurves() const
62 {
63   return myCurves;
64 }
65
66 /*!
67   Add curve
68 */
69 void Plot2d_Prs::AddObject( const Plot2d_Curve* obj )
70 {
71   myCurves.append((Plot2d_Curve*)obj);
72
73   if (obj->getYAxis() == QwtPlot::yRight)
74     mySecondY = true;
75 }
76
77 /*!
78   \return 0 if list of the curves is empty [ Reimplemented from SALOME_Prs ]
79 */
80 bool Plot2d_Prs::IsNull() const 
81
82   return myCurves.isEmpty();
83 }
84
85 /*!
86   \return 1 if in the list of curves exist at least one curve with axis Qwt::yRight [ Reimplemented from SALOME_Prs ]
87 */
88 bool Plot2d_Prs::isSecondY() const
89 {
90   return mySecondY;
91 }
92
93 /*!
94   \return 0 if list of the curves is empty [ Reimplemented from SALOME_Prs ]
95 */
96 void Plot2d_Prs::setAutoDel(bool theDel)
97 {
98   myCurves.setAutoDelete(theDel);
99 }