Salome HOME
eb5bea299458a7e321dfbcc06a850945aa76df0e
[modules/gui.git] / src / LightApp / LightApp_GVSelector.cxx
1 // Copyright (C) 2013-2022  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "LightApp_GVSelector.h"
21
22 #include "LightApp_DataOwner.h"
23
24 #include <GraphicsView_Object.h>
25 #include <GraphicsView_ViewPort.h>
26 #include <GraphicsView_Viewer.h>
27
28 LightApp_GVSelector::LightApp_GVSelector( GraphicsView_Viewer* theViewer,
29                                           SUIT_SelectionMgr* theSelMgr )
30 : SUIT_Selector( theSelMgr, theViewer ),
31   myViewer( theViewer )
32 {
33   connect( theViewer, SIGNAL( selectionChanged( GV_SelectionChangeStatus ) ),
34           this, SLOT( onSelectionChanged( GV_SelectionChangeStatus ) ) );
35 }
36
37 LightApp_GVSelector::~LightApp_GVSelector()
38 {
39 }
40
41 QString LightApp_GVSelector::type() const
42 {
43   return GraphicsView_Viewer::Type();
44 }
45
46 void LightApp_GVSelector::getSelection( SUIT_DataOwnerPtrList& theList ) const
47 {
48   if( GraphicsView_ViewPort* aViewport = myViewer->getActiveViewPort() )
49     for( aViewport->initSelected(); aViewport->moreSelected(); aViewport->nextSelected() )
50       theList.append( new LightApp_DataOwner( aViewport->selectedObject()->getName() ) );
51 }
52
53 void LightApp_GVSelector::setSelection( const SUIT_DataOwnerPtrList& /*theList*/ )
54 {
55 }
56
57 void LightApp_GVSelector::onSelectionChanged( GV_SelectionChangeStatus )
58 {
59   selectionChanged();
60 }