Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / SalomeApp / SalomeApp_TypeFilter.cxx
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
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.
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 #include "SalomeApp_TypeFilter.h"
20
21 #include "LightApp_DataOwner.h"
22 #include "SalomeApp_Study.h"
23
24 /*!
25   Constructor.
26 */
27 SalomeApp_TypeFilter::SalomeApp_TypeFilter( SalomeApp_Study* study, const QString& kind )
28   : SalomeApp_Filter( study ) 
29 {
30   myKind = kind;
31 }
32
33 /*!
34   Destructor.
35 */
36 SalomeApp_TypeFilter::~SalomeApp_TypeFilter()
37 {
38 }
39
40 /*!
41   Check: data owner is valid?
42 */
43 bool SalomeApp_TypeFilter::isOk( const SUIT_DataOwner* sOwner ) const
44 {  
45   const LightApp_DataOwner* owner = dynamic_cast<const LightApp_DataOwner*> ( sOwner );
46
47   SalomeApp_Study* aDoc =  getStudy();
48   if (owner && aDoc && aDoc->studyDS())
49     {
50       _PTR(Study) aStudy = aDoc->studyDS();
51       QString entry = owner->entry();
52       
53       _PTR(SObject) aSObj( aStudy->FindObjectID( entry.latin1() ) );
54       if (aSObj)
55         {
56           _PTR(SComponent) aComponent(aSObj->GetFatherComponent());
57           if ( aComponent && (aComponent->ComponentDataType() == myKind.latin1()) )
58             return true;
59         }
60     }
61
62   return false;
63 }