Salome HOME
Merge from V5_1_main 14/05/2010
[modules/visu.git] / src / VISUGUI / VisuGUI_Selection.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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
23 //  VISU VISUGUI : GUI of VISU component
24 //  File   : VisuGUI_Selection.h
25 //  Author : Sergey Anikin 
26 //  Module : VISU
27 //
28 #ifndef VisuGUI_Selection_HeaderFile
29 #define VisuGUI_Selection_HeaderFile
30
31 #include <LightApp_Selection.h>
32
33 //////////////////////////////////////////////////
34 // Class: VisuGUI_Selection
35 //////////////////////////////////////////////////
36
37 class SalomeApp_Module;
38 class SalomeApp_Study;
39
40 class VisuGUI_Selection : public LightApp_Selection
41 {
42 public:
43   VisuGUI_Selection( SalomeApp_Module* theModule )
44     : LightApp_Selection(), myModule( theModule ) {};
45   virtual ~VisuGUI_Selection() {};
46
47   virtual QVariant parameter( const int, const QString& ) const;
48
49 private:
50   QString          type( const int ) const;
51   bool             isFieldPrs( const int ) const;
52   QString          nbComponents( const int ) const;
53   QString          medEntity( const int ) const;
54   QString          medSource( const int ) const;
55   QString          nbTimeStamps( const int ) const;
56   QString          representation( const int ) const;
57   int              nbChildren( const int ) const;
58   int              nbNamedChildren( const int ) const;
59   QString          isVisible( const int ) const;
60   QString          isShrunk( const int ) const;
61   bool             hasActor( const int ) const;
62   QString          isShading( const int ) const;
63   QString          isScalarMapAct( const int ) const;
64   QString          isGaussPtsAct( const int ) const;
65   bool             isScalarBarVisible( const int ) const;
66   bool             isVisuComponent( const int ) const;
67   QString          isValuesLabeled( const int ) const;
68
69   QString          fullResolution( const int ) const;
70   QString          mediumResolution( const int ) const;
71   QString          lowResolution( const int ) const;
72   QString          resolutionState( const int ) const;
73
74   QString          quadratic2DMode( const int ) const;
75
76 private:
77   bool             findDisplayedCurves( const int, bool ) const;
78   bool             hasCurves( const int ) const;
79   bool             Plot2dViewerType( const int ) const;
80
81   int              nbChild( const int, const bool ) const;
82   SalomeApp_Study* GetStudy() const;
83
84   QString          resolutions( const int ) const;
85   QString          resolution( const int, char theResoltuion ) const;
86
87 private:
88   SalomeApp_Module* myModule;
89 };
90
91 #endif