Salome HOME
Fix for the bug #56: Show, Show only, Hide for Region and Zone under Region.
[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 HYDROGUI_AbstractDisplayer::HYDROGUI_AbstractDisplayer( HYDROGUI_Module* theModule )
30 : myModule( theModule )
31 {
32 }
33
34 HYDROGUI_AbstractDisplayer::~HYDROGUI_AbstractDisplayer()
35 {
36 }
37
38 void HYDROGUI_AbstractDisplayer::UpdateAll( const int  theViewerId,
39                                        const bool theIsInit,
40                                        const bool theIsForced,
41                                        const bool theDoFitAll )
42 {
43   if ( theIsInit )
44     EraseAll( theViewerId );
45
46   DisplayAll( theViewerId, theIsForced, theDoFitAll );
47 }
48
49 void HYDROGUI_AbstractDisplayer::DisplayAll( const int  theViewerId,
50                                              const bool theIsForced,
51                                              const bool theDoFitAll )
52 {
53   HYDROData_SequenceOfObjects aSeq;
54   HYDROGUI_Tool::GetPrsSubObjects( myModule, aSeq );
55   Update( aSeq, theViewerId, theIsForced, theDoFitAll );
56 }
57
58 void HYDROGUI_AbstractDisplayer::Update( const HYDROData_SequenceOfObjects& theObjs,
59                                          const int                          theViewerId,
60                                          const bool                         theIsForced,
61                                          const bool                         theDoFitAll )
62 {
63   // First of all, kill all bad presentations
64   purgeObjects( theViewerId );
65
66   // Now dig in the data model
67   HYDROData_SequenceOfObjects anObjectsToErase, anObjectsToDisplay;
68
69   for( int i = 1, n = theObjs.Length(); i <= n; i++ )
70   {
71     const Handle(HYDROData_Entity)& anObj = theObjs.Value( i );
72     if( anObj.IsNull() )
73       anObjectsToErase.Append( anObj );
74     else
75       anObjectsToDisplay.Append( anObj );
76   }
77
78   if( anObjectsToErase.Length() )
79     Erase( anObjectsToErase, theViewerId );
80   if( anObjectsToDisplay.Length() )
81     Display( anObjectsToDisplay, theViewerId, theIsForced, theDoFitAll );
82 }