Salome HOME
7137ebaef333b72e8adc07c0cac80f43688e9e69
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Selection.h
1 //  SMESH SMESHGUI_Selection
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 //
23 //
24 //  File   : SMESHGUI_Selection.h
25 //  Author : Alexander SOLOVYOV
26 //  Module : SMESH
27 //  $Header$
28
29 #ifndef SMESHGUI_SELECTION_HeaderFile
30 #define SMESHGUI_SELECTION_HeaderFile
31
32 #include "SalomeApp_Selection.h"
33 #include "SALOMEDSClient_definitions.hxx"
34 #include "SUIT_DataOwner.h"
35
36 class SalomeApp_SelectionMgr;
37 class SALOMEDSClient_Study;
38 class SalomeApp_DataOwner;
39 class SMESH_Actor;
40
41 class SMESHGUI_Selection : public SalomeApp_Selection
42 {
43 public:
44   SMESHGUI_Selection();
45   virtual ~SMESHGUI_Selection();
46
47   virtual void     init( const QString&, SalomeApp_SelectionMgr* );
48   virtual QtxValue param( const int , const QString& paramName ) const;
49
50   // got from object, not from actor
51   virtual int numberOfNodes( int ind ) const;
52   virtual QVariant isComputable( int ind ) const;
53   virtual QVariant hasReference( int ind ) const;
54   virtual QVariant isVisible( int ind ) const;
55
56   // parameters got from actor return nothing if an actor is not visible
57   virtual QValueList<QVariant> elemTypes( int ind ) const;
58   virtual QValueList<QVariant> labeledTypes( int ind ) const;
59   virtual QString displayMode( int ind ) const;
60   virtual QString shrinkMode( int ind ) const;
61   virtual QValueList<QVariant> entityMode( int ind ) const;
62   virtual QString controlMode( int ind ) const;
63   
64   SMESH_Actor* getActor( int ind ) const;
65
66   static int       type( SalomeApp_DataOwner* owner, _PTR(Study) study);
67   static QString   typeName( const int type);
68
69 private:
70   QStringList           myTypes;
71   SUIT_DataOwnerPtrList myDataOwners;
72 };
73
74 #endif