Salome HOME
1) Show/Hide, Delete operations
[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_DataModel.h"
26 #include "HYDROGUI_Module.h"
27 #include "HYDROGUI_Operations.h"
28 #include "HYDROGUI_UpdateFlags.h"
29
30 #include <HYDROData_Iterator.h>
31 #include <HYDROData_Object.h>
32
33 #include <LightApp_DataOwner.h>
34
35 #include <SUIT_SelectionMgr.h>
36
37 HYDROGUI_ShowHideOp::HYDROGUI_ShowHideOp( HYDROGUI_Module* theModule, int theId )
38 : HYDROGUI_Operation( theModule ),
39   myId( theId )
40 {
41   QString aName;
42   switch( myId )
43   {
44     case ShowId:     aName = tr( "SHOW" ); break;
45     case ShowOnlyId: aName = tr( "SHOW_ONLY" ); break;
46     case ShowAllId:  aName = tr( "SHOW_ALL" ); break;
47     case HideId:     aName = tr( "HIDE" ); break;
48     case HideAllId:  aName = tr( "HIDE_ALL" ); break;
49     default: break;
50   }
51   setName( aName );
52 }
53
54 HYDROGUI_ShowHideOp::~HYDROGUI_ShowHideOp()
55 {
56 }
57
58 void HYDROGUI_ShowHideOp::startOperation()
59 {
60   HYDROGUI_Operation::startOperation();
61
62   HYDROGUI_DataModel* aModel = module()->getDataModel();
63
64   // for all objects
65   if( myId == ShowOnlyId || myId == ShowAllId || myId == HideAllId )
66   {
67     bool aVisibility = myId == ShowAllId;
68     HYDROData_Iterator anIterator( doc() );
69     for( ; anIterator.More(); anIterator.Next() )
70     {
71       Handle(HYDROData_Object) anObject = anIterator.Current();
72       if( !anObject.IsNull() )
73         anObject->SetVisibility( aVisibility );
74     }
75   }
76
77   // for selected objects
78   if( myId == ShowId || myId == ShowOnlyId || myId == HideId )
79   {
80     SUIT_SelectionMgr* aSelectionMgr = selectionMgr();
81     SUIT_DataOwnerPtrList anOwners;
82     aSelectionMgr->selected( anOwners );
83
84     bool aVisibility = myId == ShowId || myId == ShowOnlyId;
85     foreach( SUIT_DataOwner* aSUITOwner, anOwners )
86     {
87       if( LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( aSUITOwner ) )
88       {
89         Handle(HYDROData_Object) anObject = aModel->objectByEntry( anOwner->entry() );
90         if( !anObject.IsNull() )
91           anObject->SetVisibility( aVisibility ? true : false );
92       }
93     }
94   }
95
96   module()->update( UF_Viewer );
97   commit();
98 }