Salome HOME
refs #567: add "POLYLINES" partition and modified icon for Land Cover object.
[modules/hydro.git] / src / HYDROGUI / HYDROGUI_ListSelector.cxx
1 // Copyright (C) 2014-2015  EDF-R&D
2 // This library is free software; you can redistribute it and/or
3 // modify it under the terms of the GNU Lesser General Public
4 // License as published by the Free Software Foundation; either
5 // version 2.1 of the License, or (at your option) any later version.
6 //
7 // This library is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10 // Lesser General Public License for more details.
11 //
12 // You should have received a copy of the GNU Lesser General Public
13 // License along with this library; if not, write to the Free Software
14 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
15 //
16 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
17 //
18
19 #include "HYDROGUI_ListSelector.h"
20
21 #include "HYDROGUI_OrderedListWidget.h"
22
23 #include <LightApp_DataOwner.h>
24
25
26 HYDROGUI_ListSelector::HYDROGUI_ListSelector( HYDROGUI_OrderedListWidget* theListWidget,
27                                               SUIT_SelectionMgr* theSelectionMgr )
28 : SUIT_Selector( theSelectionMgr, theListWidget ),
29   myListWidget( theListWidget )
30 {
31   if ( myListWidget ) {
32     connect( myListWidget, SIGNAL( selectionChanged() ), this, SLOT( onSelectionChanged() ) );
33   }
34 }
35
36 /**
37   Destructor.
38 */
39 HYDROGUI_ListSelector::~HYDROGUI_ListSelector()
40 {
41 }
42
43 /*!
44   Get selector type.
45   @return the selector type
46 */
47 QString HYDROGUI_ListSelector::type() const
48
49   return "ListSelector"; 
50 }
51
52 /**
53 */
54 void HYDROGUI_ListSelector::getSelection( SUIT_DataOwnerPtrList& theList ) const
55 {
56   QStringList aSelectedEntries = myListWidget->getSelectedEntries();
57
58   foreach ( const QString& anEntry, aSelectedEntries ) {
59     if ( !anEntry.isEmpty() ) {
60       theList.append( SUIT_DataOwnerPtr( new LightApp_DataOwner( anEntry ) ) );
61     }
62   }
63 }
64
65 /**
66 */
67 void HYDROGUI_ListSelector::setSelection( const SUIT_DataOwnerPtrList& theList )
68 {
69   if ( !myListWidget ) {
70     return;
71   }
72
73   QStringList aSelectedEntries;
74   SUIT_DataOwnerPtrList::const_iterator anIt = theList.begin();
75   for ( ; anIt != theList.end(); ++anIt ) {
76     const LightApp_DataOwner* anOwner = dynamic_cast<const LightApp_DataOwner*>( (*anIt).operator->() );
77     if ( anOwner ) {
78       aSelectedEntries << anOwner->entry();
79     }
80   }
81  
82   myListWidget->setSelectedEntries( aSelectedEntries );
83 }
84
85 /**
86   Called when the list selection is changed.
87 */
88 void HYDROGUI_ListSelector::onSelectionChanged()
89 {
90   selectionChanged();
91 }