Salome HOME
Drawing of zones in OCC view improved.
[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 "HYDROGUI_Module.h"
26 #include "HYDROGUI_Operations.h"
27 #include "HYDROGUI_Tool.h"
28 #include "HYDROGUI_UpdateFlags.h"
29
30 #include <HYDROData_Iterator.h>
31 #include <HYDROData_Object.h>
32
33 HYDROGUI_ShowHideOp::HYDROGUI_ShowHideOp( HYDROGUI_Module* theModule, int theId )
34 : HYDROGUI_Operation( theModule ),
35   myId( theId )
36 {
37   QString aName;
38   switch( myId )
39   {
40     case ShowId:     aName = tr( "SHOW" ); break;
41     case ShowOnlyId: aName = tr( "SHOW_ONLY" ); break;
42     case ShowAllId:  aName = tr( "SHOW_ALL" ); break;
43     case HideId:     aName = tr( "HIDE" ); break;
44     case HideAllId:  aName = tr( "HIDE_ALL" ); break;
45     default: break;
46   }
47   setName( aName );
48 }
49
50 HYDROGUI_ShowHideOp::~HYDROGUI_ShowHideOp()
51 {
52 }
53
54 void HYDROGUI_ShowHideOp::startOperation()
55 {
56   HYDROGUI_Operation::startOperation();
57
58   size_t aViewId = HYDROGUI_Tool::GetActiveGraphicsViewId( module() );
59
60   // for all objects
61   if( myId == ShowOnlyId || myId == ShowAllId || myId == HideAllId )
62   {
63     bool aVisibility = myId == ShowAllId;
64     HYDROData_Iterator anIterator( doc() );
65     for( ; anIterator.More(); anIterator.Next() )
66     {
67       Handle(HYDROData_Object) anObject = anIterator.Current();
68       if( !anObject.IsNull() )
69         module()->setObjectVisible( aViewId, anObject, aVisibility );
70     }
71   }
72
73   // for selected objects
74   if( myId == ShowId || myId == ShowOnlyId || myId == HideId )
75   {
76     HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
77
78     bool aVisibility = myId == ShowId || myId == ShowOnlyId;
79     for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
80     {
81       Handle(HYDROData_Object) anObject = aSeq.Value( anIndex );
82       if( !anObject.IsNull() )
83         module()->setObjectVisible( aViewId, anObject, aVisibility );
84     }
85   }
86
87   module()->update( UF_Viewer );
88   commit();
89 }