Salome HOME
Fix for the bug #56: Show, Show only, Hide for Region and Zone under Region.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ShowHideOp.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_ShowHideOp.h"
24
25 #include <GraphicsView_Viewer.h>
26
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Operations.h"
29 #include "HYDROGUI_Tool.h"
30 #include "HYDROGUI_UpdateFlags.h"
31
32 #include <HYDROData_Iterator.h>
33 #include <HYDROData_Entity.h>
34 #include <HYDROData_Region.h>
35
36 #include <LightApp_Application.h>
37
38 #include <OCCViewer_ViewModel.h>
39
40 #include <SUIT_ViewManager.h>
41
42 HYDROGUI_ShowHideOp::HYDROGUI_ShowHideOp( HYDROGUI_Module* theModule, int theId )
43 : HYDROGUI_Operation( theModule ),
44   myId( theId )
45 {
46   QString aName;
47   switch( myId )
48   {
49     case ShowId:     aName = tr( "SHOW" ); break;
50     case ShowOnlyId: aName = tr( "SHOW_ONLY" ); break;
51     case ShowAllId:  aName = tr( "SHOW_ALL" ); break;
52     case HideId:     aName = tr( "HIDE" ); break;
53     case HideAllId:  aName = tr( "HIDE_ALL" ); break;
54     default: break;
55   }
56   setName( aName );
57 }
58
59 HYDROGUI_ShowHideOp::~HYDROGUI_ShowHideOp()
60 {
61 }
62
63 void HYDROGUI_ShowHideOp::startOperation()
64 {
65   HYDROGUI_Operation::startOperation();
66
67   size_t aViewId = HYDROGUI_Tool::GetActiveViewId( module() );
68
69   // for all objects
70   if( myId == ShowOnlyId || myId == ShowAllId || myId == HideAllId )
71   {
72     bool aVisibility = myId == ShowAllId;
73     HYDROData_Iterator anIterator( doc() );
74     for( ; anIterator.More(); anIterator.Next() )
75     {
76       Handle(HYDROData_Entity) anObject = anIterator.Current();
77       if( !anObject.IsNull() )
78         module()->setObjectVisible( aViewId, anObject, aVisibility );
79     }
80   }
81
82   // for selected objects
83   if( myId == ShowId || myId == ShowOnlyId || myId == HideId )
84   {
85     HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
86
87     bool aVisibility = myId == ShowId || myId == ShowOnlyId;
88     Handle( HYDROData_Entity ) anObject;
89     for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
90     {
91       anObject = aSeq.Value( anIndex );
92       if( !anObject.IsNull() )
93       {
94         module()->setObjectVisible( aViewId, anObject, aVisibility );
95         if ( anObject->GetKind() == KIND_REGION )
96         {
97           Handle( HYDROData_Region ) aRegion = Handle( HYDROData_Region )::DownCast( anObject );
98           if ( !aRegion.IsNull() )
99           {
100             HYDROData_SequenceOfObjects aZonesSeq = aRegion->GetZones();
101             for( Standard_Integer aZoneIdx = 1, aNbZones = aZonesSeq.Length(); aZoneIdx <= aNbZones; aZoneIdx++ )
102             {
103               anObject = aZonesSeq.Value( aZoneIdx );
104               if( !anObject.IsNull() )
105               {
106                 module()->setObjectVisible( aViewId, anObject, aVisibility );
107               }
108             }
109           }
110         }
111       }
112     }
113   }
114
115   int anUpdateFlags = 0;
116
117   if ( myId == ShowOnlyId || myId == ShowId || myId == ShowAllId )
118   {
119     anUpdateFlags = UF_FitAll;
120   }
121
122   SUIT_ViewManager* aViewMgr = module()->getApp()->activeViewManager();
123   if ( aViewMgr )
124   {
125     if ( aViewMgr->getType() == GraphicsView_Viewer::Type() )
126     {
127       anUpdateFlags |= UF_Viewer;
128     }
129     else if ( aViewMgr->getType() == OCCViewer_Viewer::Type() )
130     {
131       anUpdateFlags |= UF_OCCViewer;
132     }
133   }
134
135   module()->update( anUpdateFlags );
136   commit();
137 }