1 // Copyright (C) 2007-2023 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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, or (at your option) any later version.
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.
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
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 // File : LightApp_OBSelector.cxx
26 #include "LightApp_OBSelector.h"
28 #include "LightApp_DataOwner.h"
29 #include "LightApp_DataObject.h"
30 #include "LightApp_Application.h"
31 #include <SUIT_DataBrowser.h>
32 #include <SUIT_Session.h>
33 #include <SUIT_DataObjectIterator.h>
38 \class LightApp_OBSelector
39 \brief Object browser selection handler class.
44 \param ob object browser
45 \param mgr selection manager
47 LightApp_OBSelector::LightApp_OBSelector( SUIT_DataBrowser* ob, SUIT_SelectionMgr* mgr )
48 : SUIT_Selector( mgr, ob ),
52 connect( myBrowser, SIGNAL( selectionChanged() ), this, SLOT( onSelectionChanged() ) );
60 LightApp_OBSelector::~LightApp_OBSelector()
65 \brief Get object browser.
66 \return a pointer to the object browser
68 SUIT_DataBrowser* LightApp_OBSelector::browser() const
74 \brief Get selector type.
77 QString LightApp_OBSelector::type() const
79 return "ObjectBrowser";
83 \brief Get the time of the last selection changing.
84 \return latest selection changing time
86 unsigned long LightApp_OBSelector::getModifiedTime() const
88 return myModifiedTime;
92 \brief Update the time of the latest selection changing.
94 void LightApp_OBSelector::setModified()
96 myModifiedTime = clock();
100 \brief Called when the Object browser selection is changed.
102 void LightApp_OBSelector::onSelectionChanged()
105 QTime t1 = QTime::currentTime();
107 mySelectedList.clear();
110 QTime t2 = QTime::currentTime();
111 qDebug( QString( "selection time = %1 msecs" ).arg( t1.msecsTo( t2 ) ).toLatin1().constData() );
116 \brief Get list of currently selected objects.
117 \param theList list to be filled with the selected objects owners
119 void LightApp_OBSelector::getSelection( SUIT_DataOwnerPtrList& theList ) const
121 if ( mySelectedList.count() == 0 ) {
122 SUIT_Session* session = SUIT_Session::session();
123 SUIT_Application* sapp = session ? session->activeApplication() : 0;
124 LightApp_Application* app = dynamic_cast<LightApp_Application*>( sapp );
125 if( !app || !myBrowser )
128 DataObjectList objlist;
129 myBrowser->getSelected( objlist );
130 LightApp_OBSelector* that = (LightApp_OBSelector*)this;
131 QListIterator<SUIT_DataObject*> it( objlist );
132 while ( it.hasNext() ) {
133 LightApp_DataObject* obj = dynamic_cast<LightApp_DataObject*>( it.next() );
134 if ( obj && app->checkDataObject( obj) ) {
135 #ifndef DISABLE_SALOMEOBJECT
136 Handle(SALOME_InteractiveObject) aSObj = new SALOME_InteractiveObject
137 ( obj->entry().toUtf8().constData(),
138 obj->componentDataType().toLatin1().constData(),
139 obj->name().toUtf8().constData() );
140 LightApp_DataOwner* owner = new LightApp_DataOwner( aSObj );
142 LightApp_DataOwner* owner = new LightApp_DataOwner( obj->entry() );
144 that->mySelectedList.append( SUIT_DataOwnerPtr( owner ) );
148 theList = mySelectedList;
152 \brief Set selection.
153 \param theList list of the object owners to be set selected
155 void LightApp_OBSelector::setSelection( const SUIT_DataOwnerPtrList& theList )
160 if( myEntries.count() == 0 || myModifiedTime < myBrowser->getModifiedTime() )
161 fillEntries( myEntries );
163 DataObjectList objList;
164 for ( SUIT_DataOwnerPtrList::const_iterator it = theList.begin();
165 it != theList.end(); ++it ) {
166 const LightApp_DataOwner* owner = dynamic_cast<const LightApp_DataOwner*>( (*it).operator->() );
167 if ( owner && myEntries.contains( owner->entry() ) )
168 objList.append( myEntries[owner->entry()] );
171 myBrowser->setSelected( objList );
172 mySelectedList.clear();
176 \brief Fill map of the data objects currently shown in the Object Browser.
177 \param entries map to be filled
179 void LightApp_OBSelector::fillEntries( QMap<QString, LightApp_DataObject*>& entries )
186 for ( SUIT_DataObjectIterator it( myBrowser->root(),
187 SUIT_DataObjectIterator::DepthLeft ); it.current(); ++it ) {
188 LightApp_DataObject* obj = dynamic_cast<LightApp_DataObject*>( it.current() );
190 entries.insert( obj->entry(), obj );