Salome HOME
8a1262bd1f49f902413af6d735a57636f6d9c859
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_AbstractDisplayer.cxx
1 // Copyright (C) 2007-2013  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
23 #include "HYDROGUI_AbstractDisplayer.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Tool.h"
28
29 #include <SUIT_ViewManager.h>
30
31 HYDROGUI_AbstractDisplayer::HYDROGUI_AbstractDisplayer( HYDROGUI_Module* theModule )
32 : myModule( theModule )
33 {
34 }
35
36 HYDROGUI_AbstractDisplayer::~HYDROGUI_AbstractDisplayer()
37 {
38 }
39
40 bool HYDROGUI_AbstractDisplayer::IsApplicable( const int theViewerId ) const
41 {
42   return IsApplicable( myModule->getViewManager( theViewerId ) );
43 }
44
45 bool HYDROGUI_AbstractDisplayer::IsApplicable( const SUIT_ViewManager* theViewMgr ) const
46 {
47   return ( theViewMgr && ( theViewMgr->getType() == GetType() ) );
48 }
49
50 void HYDROGUI_AbstractDisplayer::UpdateAll( const int  theViewerId,
51                                        const bool theIsInit,
52                                        const bool theIsForced,
53                                        const bool theDoFitAll )
54 {
55   if ( theIsInit )
56     EraseAll( theViewerId );
57
58   DisplayAll( theViewerId, theIsForced, theDoFitAll );
59 }
60
61 void HYDROGUI_AbstractDisplayer::DisplayAll( const int  theViewerId,
62                                              const bool theIsForced,
63                                              const bool theDoFitAll )
64 {
65   HYDROData_SequenceOfObjects aSeq;
66   HYDROGUI_Tool::GetPrsSubObjects( myModule, aSeq );
67   Update( aSeq, theViewerId, theIsForced, theDoFitAll );
68 }
69
70 void HYDROGUI_AbstractDisplayer::Update( const HYDROData_SequenceOfObjects& theObjs,
71                                          const int                          theViewerId,
72                                          const bool                         theIsForced,
73                                          const bool                         theDoFitAll )
74 {
75   // First of all, kill all bad presentations
76   purgeObjects( theViewerId );
77
78   // Now dig in the data model
79   HYDROData_SequenceOfObjects anObjectsToErase, anObjectsToDisplay;
80
81   for( int i = 1, n = theObjs.Length(); i <= n; i++ )
82   {
83     const Handle(HYDROData_Entity)& anObj = theObjs.Value( i );
84     if( anObj.IsNull() )
85       anObjectsToErase.Append( anObj );
86     else
87       anObjectsToDisplay.Append( anObj );
88   }
89
90   if( anObjectsToErase.Length() )
91     Erase( anObjectsToErase, theViewerId );
92   if( anObjectsToDisplay.Length() )
93     Display( anObjectsToDisplay, theViewerId, theIsForced, theDoFitAll );
94 }