Salome HOME
Added methods startDocOperation(), abortDocOperation(), commitDocOperation() for...
[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   startDocOperation();
59
60   size_t aViewId = HYDROGUI_Tool::GetActiveGraphicsViewId( module() );
61
62   // for all objects
63   if( myId == ShowOnlyId || myId == ShowAllId || myId == HideAllId )
64   {
65     bool aVisibility = myId == ShowAllId;
66     HYDROData_Iterator anIterator( doc() );
67     for( ; anIterator.More(); anIterator.Next() )
68     {
69       Handle(HYDROData_Object) anObject = anIterator.Current();
70       if( !anObject.IsNull() )
71         anObject->SetVisible( aViewId, aVisibility );
72     }
73   }
74
75   // for selected objects
76   if( myId == ShowId || myId == ShowOnlyId || myId == HideId )
77   {
78     HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
79
80     bool aVisibility = myId == ShowId || myId == ShowOnlyId;
81     for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
82     {
83       Handle(HYDROData_Object) anObject = aSeq.Value( anIndex );
84       if( !anObject.IsNull() )
85         anObject->SetVisible( aViewId, aVisibility );
86     }
87   }
88
89   commitDocOperation();
90
91   module()->update( UF_Viewer );
92   commit();
93 }