Salome HOME
Preparation of 3.1.0a2 - come back old implementation
[samples/light.git] / src / LIGHTGUI / LIGHTGUI_Selection.cxx
1 //  LIGHT : sample (no-corba-engine) SALOME module
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
21 //
22 //  Author : Julia DOROVSKIKH
23 //  Date   : 01/01/2005
24 //  $Header$
25
26 #include "LIGHTGUI_Selection.h"
27 #include "LIGHTGUI_DataOwner.h"
28
29 #include <SalomeApp_SelectionMgr.h>
30
31 //=================================================================================
32 // function : LIGHTGUI_Selection()
33 // purpose  : constructor
34 //=================================================================================
35 LIGHTGUI_Selection::LIGHTGUI_Selection ( const QString&          client,
36                                          SalomeApp_SelectionMgr* mgr )
37 {
38   myPopupClient = client;
39
40   if ( mgr ) {
41     SUIT_DataOwnerPtrList sel;
42     mgr->selected( sel);
43     SUIT_DataOwnerPtrList::const_iterator anIt  = sel.begin(),
44                                           aLast = sel.end();
45     for ( ; anIt != aLast; anIt++ ) {
46       SUIT_DataOwner* owner = (SUIT_DataOwner*)( (*anIt).get() );
47       LIGHTGUI_DataOwner* sowner = dynamic_cast<LIGHTGUI_DataOwner*>( owner );
48       if ( sowner && sowner->lineNb() > 0 )
49         myTypes.append( "TextLine" );
50       else
51         myTypes.append( "Unknown" );
52     }
53   }
54 }
55
56 //=================================================================================
57 // function : ~LIGHTGUI_Selection()
58 // purpose  : destructor
59 //=================================================================================
60 LIGHTGUI_Selection::~LIGHTGUI_Selection()
61 {
62 }
63
64 //=================================================================================
65 // function : count()
66 // purpose  : returns number of supported types
67 //=================================================================================
68 int LIGHTGUI_Selection::count() const
69 {
70   return myTypes.count();
71 }
72
73 //=================================================================================
74 // function : param()
75 // purpose  : returns selection parameter value
76 //=================================================================================
77 QtxValue LIGHTGUI_Selection::param ( const int ind, const QString& p ) const
78 {
79   if ( p == "client" )
80     return myPopupClient;
81   else
82     return myTypes[ind];
83 }