Salome HOME
Using files from package LightApp instead of SalomeApp
[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 "LightApp_DataOwner.h"
28
29 #include <LightApp_SelectionMgr.h>
30
31 //=================================================================================
32 // function : LIGHTGUI_Selection()
33 // purpose  : constructor
34 //=================================================================================
35 LIGHTGUI_Selection::LIGHTGUI_Selection ()
36 : LightApp_Selection()
37 {
38 }
39
40 //=================================================================================
41 // function : ~LIGHTGUI_Selection()
42 // purpose  : destructor
43 //=================================================================================
44 LIGHTGUI_Selection::~LIGHTGUI_Selection()
45 {
46 }
47
48 //=================================================================================
49 // function : init()
50 // purpose  : initialization
51 //=================================================================================
52 void LIGHTGUI_Selection::init( const QString& client, LightApp_SelectionMgr* mgr)
53 {
54   if ( mgr ) {
55     SUIT_DataOwnerPtrList sel;
56     mgr->selected( sel);
57     SUIT_DataOwnerPtrList::const_iterator anIt  = sel.begin(),
58                                           aLast = sel.end();
59     for ( ; anIt != aLast; anIt++ ) {
60       SUIT_DataOwner* owner = (SUIT_DataOwner*)( (*anIt).get() );
61       LightApp_DataOwner* sowner = dynamic_cast<LightApp_DataOwner*>( owner );
62       QString anEntry = sowner->entry();
63       int anIndex = anEntry.find("_");
64       int aPosition = (anEntry.mid(anIndex+1, anEntry.length() - anIndex)).toInt();//lineNb();
65       if ( sowner && aPosition > 0 )
66         myTypes.append( "TextLine" );
67       else
68         myTypes.append( "Unknown" );
69     }
70   }
71   LightApp_Selection::init(client, mgr);
72 }
73
74 //=================================================================================
75 // function : count()
76 // purpose  : returns number of supported types
77 //=================================================================================
78 int LIGHTGUI_Selection::count() const
79 {
80   return myTypes.count();
81 }
82
83 //=================================================================================
84 // function : param()
85 // purpose  : returns selection parameter value
86 //=================================================================================
87 QtxValue LIGHTGUI_Selection::param ( const int ind, const QString& p ) const
88 {
89   if ( p == "client" )
90     return myPopupClient;
91   else
92     return myTypes[ind];
93 }