Salome HOME
Join modifications from branch OCC_development_for_3_2_0a2
[modules/visu.git] / src / VISUGUI / VisuGUI_ViewTools.cxx
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2005  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //
23 //
24 //  File   : VisuGUI_Tools.cxx
25 //  Author : Sergey Anikin
26 //  Module : VISU
27
28
29 #include "VisuGUI_ViewTools.h"
30
31 #include "VISU_Actor.h"
32
33 #include "SVTK_ViewModel.h"
34 #include "SVTK_ViewWindow.h"
35
36 namespace VISU 
37 {
38   void
39   ErasePrs(VisuGUI* theModule,
40            CORBA::Object_ptr theObject, 
41            bool theDoRepaintVW)
42   {
43     if (CORBA::is_nil(theObject)) return;
44     VISU::Base_var aBase = VISU::Base::_narrow(theObject);
45     if (CORBA::is_nil(aBase)) return;
46
47     VISU::VISUType aType = aBase->GetType();
48     switch (aType) {
49     case VISU::TCURVE: {
50       if (VISU::Curve_i* aCurve = dynamic_cast<VISU::Curve_i*>(VISU::GetServant(aBase).in()))
51         PlotCurve(theModule, aCurve, VISU::eErase );
52       break;
53     }
54     case VISU::TCONTAINER: {
55       if (VISU::Container_i* aContainer = dynamic_cast<VISU::Container_i*>(VISU::GetServant(aBase).in()))
56         PlotContainer(theModule, aContainer, VISU::eErase );
57       break;
58     }
59     case VISU::TTABLE: {
60       if (VISU::Table_i* aTable = dynamic_cast<VISU::Table_i*>(VISU::GetServant(aBase).in()))
61         PlotTable(theModule, aTable, VISU::eErase );
62       break;
63     }
64     default: {
65       if (VISU::Prs3d_i* aPrsObject = dynamic_cast<VISU::Prs3d_i*>(VISU::GetServant(aBase).in())) {
66         SVTK_ViewWindow* vw = GetActiveViewWindow<SVTK_ViewWindow>(theModule);
67         RemoveScalarBarPosition(theModule, vw, aPrsObject);
68         ErasePrs3d(theModule, aPrsObject, theDoRepaintVW);
69       }
70     }} // switch (aType)
71   }
72 }