Salome HOME
Bug IPAL19361 - Qt4 porting. It is impossible showing ID of elements in 3D Viewer...
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : SMESHGUI_Selection.h
23 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S.
24 //
25
26 #ifndef SMESHGUI_SELECTION_H
27 #define SMESHGUI_SELECTION_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // SALOME GUI includes
33 #include <LightApp_Selection.h>
34
35 // SALOME KERNEL includes
36 #include <SALOMEDSClient_definitions.hxx>
37
38 class LightApp_SelectionMgr;
39 class LightApp_DataOwner;
40 class SALOMEDSClient_Study;
41 class SMESH_Actor;
42
43 class SMESHGUI_EXPORT SMESHGUI_Selection : public LightApp_Selection
44 {
45 public:
46   SMESHGUI_Selection();
47   virtual ~SMESHGUI_Selection();
48
49   virtual void            init( const QString&, LightApp_SelectionMgr* );
50   virtual QVariant        parameter( const int, const QString& ) const;
51   virtual void            processOwner( const LightApp_DataOwner* );
52
53   // got from object, not from actor
54   virtual bool            isAutoColor( int ) const;
55   virtual int             numberOfNodes( int ) const;
56   virtual QVariant        isComputable( int ) const;
57   virtual QVariant        hasReference( int ) const;
58   virtual QVariant        isVisible( int ) const;
59
60   // parameters got from actor return nothing if an actor is not visible
61   virtual QList<QVariant> elemTypes( int ) const;
62   virtual QList<QVariant> labeledTypes( int ) const;
63   virtual QString         displayMode( int ) const;
64   virtual QString         shrinkMode( int ) const;
65   virtual QList<QVariant> entityMode( int ) const;
66   virtual QString         controlMode( int ) const;
67   
68   SMESH_Actor*            getActor( int ) const;
69
70   static int              type( const QString&, _PTR(Study) );
71   static QString          typeName( const int );
72
73 private:
74   QStringList             myTypes;
75   QList<SMESH_Actor*>     myActors;
76 };
77
78 #endif // SMESHGUI_SELECTION_H