Salome HOME
porting to sketcher in GEOM
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_GVSelector.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_GVSelector.h"
24
25 #include "HYDROGUI_DataModel.h"
26 #include "HYDROGUI_DataObject.h"
27 #include "HYDROGUI_Module.h"
28 #include "HYDROGUI_Prs.h"
29 #include "HYDROGUI_Tool.h"
30
31 #include <GraphicsView_Object.h>
32 #include <GraphicsView_Selector.h>
33 #include <GraphicsView_ViewPort.h>
34 #include <GraphicsView_Viewer.h>
35
36 #include <LightApp_DataOwner.h>
37
38 HYDROGUI_GVSelector::HYDROGUI_GVSelector( HYDROGUI_Module* theModule,
39                                           GraphicsView_Viewer* theViewer,
40                                           SUIT_SelectionMgr* theSelMgr )
41 : LightApp_GVSelector( theViewer, theSelMgr ),
42   myModule( theModule )
43 {
44 }
45
46 HYDROGUI_GVSelector::~HYDROGUI_GVSelector()
47 {
48 }
49
50 void HYDROGUI_GVSelector::getSelection( SUIT_DataOwnerPtrList& theList ) const
51 {
52   if( GraphicsView_ViewPort* aViewPort = myViewer->getActiveViewPort() )
53   {
54     for( aViewPort->initSelected(); aViewPort->moreSelected(); aViewPort->nextSelected() )
55     {
56       if( HYDROGUI_Prs* aPrs = dynamic_cast<HYDROGUI_Prs*>( aViewPort->selectedObject() ) )
57       {
58         QString anEntry = HYDROGUI_DataObject::dataObjectEntry( aPrs->getObject() );
59         theList.append( new LightApp_DataOwner( anEntry ) );
60       }
61     }
62   }
63 }
64
65 void HYDROGUI_GVSelector::setSelection( const SUIT_DataOwnerPtrList& theList )
66 {
67   HYDROGUI_DataModel* aModel = myModule->getDataModel();
68   if( GraphicsView_ViewPort* aViewPort = myViewer->getActiveViewPort() )
69   {
70     aViewPort->clearSelected();
71     SUIT_DataOwnerPtrList::const_iterator it;
72     GraphicsView_ObjectList anObjectList = aViewPort->getObjects();
73     for ( it = theList.begin(); it != theList.end(); ++it )
74     {
75       LightApp_DataOwner* anOwner = dynamic_cast<LightApp_DataOwner*>( (*it).operator->() );
76       if ( anOwner )
77       {
78         QString anEntry = anOwner->entry();
79         Handle(HYDROData_Entity) aModelObject = aModel->objectByEntry( anEntry );
80         if( !aModelObject.IsNull() )
81         {
82           if( HYDROGUI_Prs* aPrs = HYDROGUI_Tool::GetPresentation( aModelObject, anObjectList ) )
83             aViewPort->setSelected( aPrs );
84         }
85       }
86     }
87   }
88 }