]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_PopupTools.cxx
Salome HOME
Fix a regression
[modules/visu.git] / src / VISUGUI / VisuGUI_PopupTools.cxx
1 //  VISU VISUGUI : GUI of VISU component
2 //
3 //  Copyright (C) 2005  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   : VisuGUI_PopupTools.cxx
25 //  Author : Sergey Anikin 
26 //  Module : VISU
27
28 #include "VisuGUI_PopupTools.h"
29 #include "VisuGUI_Tools.h"
30
31 #include "VISU_Actor.h"
32
33 using namespace VISU;
34
35 //////////////////////////////////////////////////
36 // Class: VisuGUI_Selection
37 //////////////////////////////////////////////////
38
39 QtxValue VisuGUI_Selection::param( const int ind, const QString& p ) const
40 {
41   QtxValue val( SalomeApp_Selection::param( ind, p ) );
42   if ( !val.isValid() ) {
43     if      ( p == "type"           ) val = QtxValue( type( ind ) );
44     else if ( p == "nbComponents"   ) val = QtxValue( nbComponents( ind ) );
45     else if ( p == "representation" ) val = QtxValue( representation( ind ) );
46     else if ( p == "nbTimeStamps"   ) val = QtxValue( nbTimeStamps( ind ) );
47     else if ( p == "nbChildren"     ) val = QtxValue( nbChildren( ind ) );
48     else if ( p == "nbNamedChildren") val = QtxValue( nbNamedChildren( ind ) );
49     else if ( p == "isVisible"      ) val = QtxValue( isVisible( ind ) );
50     else if ( p == "isShrunk"       ) val = QtxValue( isShrunk( ind ) );
51     else if ( p == "hasActor"       ) val = QtxValue( hasActor( ind ) );
52   }
53
54   return val;
55 }
56
57 // Macro for converting VISU enumeration items into corresponding strings
58 #define ENUM2STRING( x, y ) \
59   case y: \
60     x = QString( #y ); \
61     break
62
63 QString VisuGUI_Selection::type( const int ind ) const
64 {
65   QString aResStr;
66   VISU::Storable::TRestoringMap aMap;
67   CORBA::Object_var anObject = GetSelectedObj( study(), entry( ind ), &aMap );  
68   bool isExist;
69   const QString& aVal = VISU::Storable::FindValue(aMap,"myComment",&isExist);
70   if ( isExist )
71     aResStr = "VISU::T" + aVal;
72   else{
73     VISU::Base_var aVisuObj = VISU::Base::_narrow( anObject );
74     if ( !CORBA::is_nil( aVisuObj ) ){
75       VISU::VISUType aType = aVisuObj->GetType();
76       switch (aType) {
77         ENUM2STRING( aResStr, VISU::TVISUGEN );
78         ENUM2STRING( aResStr, VISU::TRESULT );
79         ENUM2STRING( aResStr, VISU::TTABLE );
80         ENUM2STRING( aResStr, VISU::TCURVE );
81         ENUM2STRING( aResStr, VISU::TCONTAINER );
82         ENUM2STRING( aResStr, VISU::TMESH );
83         ENUM2STRING( aResStr, VISU::TSCALARMAP );
84         ENUM2STRING( aResStr, VISU::TISOSURFACE );
85         ENUM2STRING( aResStr, VISU::TDEFORMEDSHAPE );
86         ENUM2STRING( aResStr, VISU::TCUTPLANES );
87         ENUM2STRING( aResStr, VISU::TCUTLINES );
88         ENUM2STRING( aResStr, VISU::TVECTORS );
89         ENUM2STRING( aResStr, VISU::TSTREAMLINES );
90         ENUM2STRING( aResStr, VISU::TPLOT3D );
91         ENUM2STRING( aResStr, VISU::TANIMATION );
92       }
93     }
94   }
95
96   return aResStr;
97 }
98
99 QString VisuGUI_Selection::nbComponents( const int ind ) const
100 {
101   QString aResStr;
102   VISU::Storable::TRestoringMap aMap;
103   GetSelectedObj( study(), entry( ind ), &aMap );  
104   bool isExist;
105   const QString& aVal = VISU::Storable::FindValue(aMap,"myNumComponent",&isExist);
106   if ( isExist )
107     aResStr = aVal;
108   return aResStr;
109 }
110
111 QString VisuGUI_Selection::nbTimeStamps( const int ind ) const
112 {
113   QString aResStr;
114   VISU::Storable::TRestoringMap aMap;
115   GetSelectedObj( study(), entry( ind ), &aMap );  
116   bool isExist;
117   const QString& aVal = VISU::Storable::FindValue(aMap,"myNbTimeStamps",&isExist);
118   if ( isExist )
119     aResStr = aVal;
120   return aResStr;
121 }
122
123 QString VisuGUI_Selection::representation( const int ind ) const
124 {
125   QString aResStr;
126
127   if ( SVTK_ViewWindow* aView = GetViewWindow( myModule ) ){
128     if ( VISU_Actor* anVISUActor = FindActor( aView, entry( ind ).latin1() ) ){
129       int aRepresent = anVISUActor->GetRepresentation();
130       switch ( aRepresent ){
131         ENUM2STRING( aResStr, VISU::POINT );
132         ENUM2STRING( aResStr, VISU::WIREFRAME );
133         ENUM2STRING( aResStr, VISU::SHADED );
134         ENUM2STRING( aResStr, VISU::INSIDEFRAME );
135         ENUM2STRING( aResStr, VISU::SURFACEFRAME );
136       }
137     }
138   }
139
140   return aResStr;
141 }
142
143 int VisuGUI_Selection::nbChild( const int ind, const bool named ) const
144 {
145   int cnt = 0;
146   _PTR(Study) aStudy =  GetCStudy( study() );
147   if ( aStudy ){
148     _PTR(SObject) SO = aStudy->FindObjectID( entry( ind ).latin1() );
149     if ( SO ){
150       for ( _PTR(ChildIterator) Iter = aStudy->NewChildIterator( SO ); Iter->More(); Iter->Next() ) {
151         _PTR(SObject) refSO;
152         if ( !Iter->Value()->ReferencedObject( refSO ) && ( !named || Iter->Value()->GetName().size() ) )
153           cnt++;
154       }
155     }
156   }
157   return cnt;
158 }
159
160 QString VisuGUI_Selection::nbChildren( const int ind ) const
161 {
162   QString aResStr;
163   aResStr.setNum( nbChild( ind, false ) );
164   return aResStr;
165 }
166
167 QString VisuGUI_Selection::nbNamedChildren( const int ind ) const
168 {
169   QString aResStr;
170   aResStr.setNum( nbChild( ind, true ) );
171   return aResStr;
172 }
173
174 QString VisuGUI_Selection::isVisible( const int ind ) const
175 {
176   QString aResStr;
177
178   if ( SVTK_ViewWindow* aView = GetViewWindow( myModule ) )
179     if ( VISU_Actor* anVISUActor = FindActor( aView, entry( ind ).latin1() ) )
180       aResStr = anVISUActor->GetVisibility() ? "1" : "0";
181
182   return aResStr;
183 }
184
185 QString VisuGUI_Selection::isShrunk( const int ind ) const
186 {
187   QString aResStr;
188
189   if ( SVTK_ViewWindow* aView = GetViewWindow( myModule ) )
190     if ( VISU_Actor* anVISUActor = FindActor( aView, entry( ind ).latin1() ) )
191       if ( anVISUActor->IsShrunkable() )
192         aResStr = anVISUActor->IsShrunk() ? "1" : "0";
193
194   return aResStr;
195 }
196
197 QString VisuGUI_Selection::hasActor( const int ind ) const
198 {
199   return representation( ind ).isEmpty() ? "0" : "1";
200 }