Salome HOME
Image positioning by two points.
[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
35 #include <LightApp_Application.h>
36
37 #include <OCCViewer_ViewModel.h>
38
39 #include <SUIT_ViewManager.h>
40
41 HYDROGUI_ShowHideOp::HYDROGUI_ShowHideOp( HYDROGUI_Module* theModule, int theId )
42 : HYDROGUI_Operation( theModule ),
43   myId( theId )
44 {
45   QString aName;
46   switch( myId )
47   {
48     case ShowId:     aName = tr( "SHOW" ); break;
49     case ShowOnlyId: aName = tr( "SHOW_ONLY" ); break;
50     case ShowAllId:  aName = tr( "SHOW_ALL" ); break;
51     case HideId:     aName = tr( "HIDE" ); break;
52     case HideAllId:  aName = tr( "HIDE_ALL" ); break;
53     default: break;
54   }
55   setName( aName );
56 }
57
58 HYDROGUI_ShowHideOp::~HYDROGUI_ShowHideOp()
59 {
60 }
61
62 void HYDROGUI_ShowHideOp::startOperation()
63 {
64   HYDROGUI_Operation::startOperation();
65
66   size_t aViewId = HYDROGUI_Tool::GetActiveViewId( module() );
67
68   // for all objects
69   if( myId == ShowOnlyId || myId == ShowAllId || myId == HideAllId )
70   {
71     bool aVisibility = myId == ShowAllId;
72     HYDROData_Iterator anIterator( doc() );
73     for( ; anIterator.More(); anIterator.Next() )
74     {
75       Handle(HYDROData_Entity) anObject = anIterator.Current();
76       if( !anObject.IsNull() )
77         module()->setObjectVisible( aViewId, anObject, aVisibility );
78     }
79   }
80
81   // for selected objects
82   if( myId == ShowId || myId == ShowOnlyId || myId == HideId )
83   {
84     HYDROData_SequenceOfObjects aSeq = HYDROGUI_Tool::GetSelectedObjects( module() );
85
86     bool aVisibility = myId == ShowId || myId == ShowOnlyId;
87     for( Standard_Integer anIndex = 1, aLength = aSeq.Length(); anIndex <= aLength; anIndex++ )
88     {
89       Handle(HYDROData_Entity) anObject = aSeq.Value( anIndex );
90       if( !anObject.IsNull() )
91         module()->setObjectVisible( aViewId, anObject, aVisibility );
92     }
93   }
94
95   int anUpdateFlags = 0;
96
97   SUIT_ViewManager* aViewMgr = module()->getApp()->activeViewManager();
98   if ( aViewMgr )
99   {
100     if ( aViewMgr->getType() == GraphicsView_Viewer::Type() )
101     {
102       anUpdateFlags |= UF_Viewer;
103     }
104     else if ( aViewMgr->getType() == OCCViewer_Viewer::Type() )
105     {
106       anUpdateFlags |= UF_OCCViewer;
107     }
108   }
109
110   module()->update( anUpdateFlags );
111   commit();
112 }