Salome HOME
db316b5a2c229fbf5fb2daf7707a8eaeb88e9e8e
[modules/gui.git] / src / Plot2d / Plot2d_Prs.cxx
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 //  SALOME OCCViewer : build OCC Viewer into Salome desktop
23 //  File   : Plot2d_Prs.cxx
24 //  Author : Sergey ANIKIN
25 //  Module : SALOME
26 //  $Header$
27 //
28 #include <qwt_plot.h>
29 #include "Plot2d_Prs.h"
30
31 /*!
32   Default constructor
33 */
34 Plot2d_Prs::Plot2d_Prs( bool theDelete )
35 : mySecondY( false), myIsAutoDel( theDelete )
36 {
37 }
38
39 /*!
40   Standard constructor
41 */
42 Plot2d_Prs::Plot2d_Prs( const Plot2d_Curve* obj, bool theDelete )
43 : mySecondY( false), myIsAutoDel( theDelete )
44 {
45   AddObject( obj ); 
46 }
47
48 /*!
49   Destructor
50 */
51 Plot2d_Prs::~Plot2d_Prs()
52
53   if ( myIsAutoDel )
54     qDeleteAll( myCurves );
55 }
56
57 /*!
58   Get curves list
59 */
60 curveList Plot2d_Prs::getCurves() const
61 {
62   return myCurves;
63 }
64
65 /*!
66   Add curve
67 */
68 void Plot2d_Prs::AddObject( const Plot2d_Curve* obj )
69 {
70   myCurves.append((Plot2d_Curve*)obj);
71
72   if (obj->getYAxis() == QwtPlot::yRight)
73     mySecondY = true;
74 }
75
76 /*!
77   \return 0 if list of the curves is empty [ Reimplemented from SALOME_Prs ]
78 */
79 bool Plot2d_Prs::IsNull() const 
80
81   return myCurves.isEmpty();
82 }
83
84 /*!
85   \return 1 if in the list of curves exist at least one curve with axis Qwt::yRight [ Reimplemented from SALOME_Prs ]
86 */
87 bool Plot2d_Prs::isSecondY() const
88 {
89   return mySecondY;
90 }
91
92 /*!
93   \return 0 if list of the curves is empty [ Reimplemented from SALOME_Prs ]
94 */
95 void Plot2d_Prs::setAutoDel(bool theDel)
96 {
97   myIsAutoDel = theDel;
98 }