Salome HOME
86ef36d1742f3ec81519761e4eb16b62b6476d16
[modules/geom.git] / src / GEOMGUI / GeometryGUI.cxx
1 //  Copyright (C) 2007-2008  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : GeometryGUI.cxx
24 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
25 //
26 #include "GeometryGUI.h"
27 #include "GEOMGUI_OCCSelector.h"
28 #include "GEOMGUI_Selection.h"
29 #include "GEOM_Displayer.h"
30 #include "GEOM_AISShape.hxx"
31
32 #include "GEOM_Actor.h"
33
34 #include <SUIT_Desktop.h>
35 #include <SUIT_MessageBox.h>
36 #include <SUIT_ResourceMgr.h>
37 #include <SUIT_Session.h>
38 #include <SUIT_ViewManager.h>
39
40 #include <OCCViewer_ViewWindow.h>
41 #include <OCCViewer_ViewPort3d.h>
42 #include <OCCViewer_ViewModel.h>
43 #include <OCCViewer_ViewManager.h>
44
45 #include <SOCC_ViewModel.h>
46 #include <SOCC_ViewWindow.h>
47
48 #include <SVTK_ViewWindow.h>
49 #include <SVTK_RenderWindowInteractor.h>
50 #include <SVTK_InteractorStyle.h>
51 #include <SVTK_ViewModel.h>
52
53 #include <SalomeApp_Application.h>
54 #include <SalomeApp_Study.h>
55
56 #include <LightApp_SelectionMgr.h>
57 #include <LightApp_VTKSelector.h>
58 #include <LightApp_DataObject.h>
59 #include <LightApp_Preferences.h>
60
61 #include <SALOME_LifeCycleCORBA.hxx>
62 #include <SALOME_ListIO.hxx>
63 #include <SALOME_ListIteratorOfListIO.hxx>
64
65 #include <SALOMEDSClient_ClientFactory.hxx>
66 #include <SALOMEDSClient_IParameters.hxx>
67
68 // External includes
69 #include <QMenu>
70 #include <QAction>
71 #include <QFileInfo>
72 #include <QString>
73 #include <QPainter>
74
75 #include <AIS_Drawer.hxx>
76 #include <AIS_ListOfInteractive.hxx>
77 #include <AIS_ListIteratorOfListOfInteractive.hxx>
78 #include <Prs3d_Drawer.hxx>
79 #include <Prs3d_IsoAspect.hxx>
80 #include <Aspect_TypeOfMarker.hxx>
81 #include <OSD_SharedLibrary.hxx>
82 #include <NCollection_DataMap.hxx>
83
84 #include <utilities.h>
85
86 #include <vtkCamera.h>
87 #include <vtkRenderer.h>
88
89 #include "GEOMImpl_Types.hxx"
90
91 using namespace Qt;
92
93 extern "C" {
94   Standard_EXPORT CAM_Module* createModule() {
95     return new GeometryGUI();
96   }
97 }
98
99
100
101 GEOM::GEOM_Gen_var GeometryGUI::myComponentGeom = GEOM::GEOM_Gen::_nil();
102
103 GEOM::GEOM_Gen_var GeometryGUI::GetGeomGen()
104 {
105   // Bug 12290: exception in Mesh GUI on GEOMBase::GetShape() if Geometry GUI hasn't been loaded
106   if (CORBA::is_nil(myComponentGeom))
107     InitGeomGen();
108   return GeometryGUI::myComponentGeom;
109 }
110
111 bool GeometryGUI::InitGeomGen()
112 {
113   GeometryGUI aGG;
114   if( CORBA::is_nil( myComponentGeom ) ) return false;
115   return true;
116 }
117
118 //=======================================================================
119 // function : ClientSObjectToObject
120 // purpose  :
121 //=======================================================================
122 CORBA::Object_var GeometryGUI::ClientSObjectToObject (_PTR(SObject) theSObject)
123 {
124   _PTR(GenericAttribute) anAttr;
125   CORBA::Object_var anObj;
126   try {
127     std::string aValue = theSObject->GetIOR();
128     if (strcmp(aValue.c_str(), "") != 0) {
129       CORBA::ORB_ptr anORB = SalomeApp_Application::orb();
130       anObj = anORB->string_to_object(aValue.c_str());
131     }
132   } catch(...) {
133     INFOS("ClientSObjectToObject - Unknown exception was occured!!!");
134   }
135   return anObj._retn();
136 }
137
138 //=======================================================================
139 // function : ClientStudyToStudy
140 // purpose  :
141 //=======================================================================
142 SALOMEDS::Study_var GeometryGUI::ClientStudyToStudy (_PTR(Study) theStudy)
143 {
144   SALOME_NamingService *aNamingService = SalomeApp_Application::namingService();
145   CORBA::Object_var aSMObject = aNamingService->Resolve("/myStudyManager");
146   SALOMEDS::StudyManager_var aStudyManager = SALOMEDS::StudyManager::_narrow(aSMObject);
147   int aStudyID = theStudy->StudyId();
148   SALOMEDS::Study_var aDSStudy = aStudyManager->GetStudyByID(aStudyID);
149   return aDSStudy._retn();
150 }
151
152 //=======================================================================
153 // function : JoinObjectParameters
154 // purpose  :
155 //=======================================================================
156 char* GeometryGUI::JoinObjectParameters(const QStringList& theParametersList)
157 {
158   return theParametersList.join(":").toLatin1().data();
159 }
160 //=======================================================================
161 // function : GeometryGUI::GeometryGUI()
162 // purpose  : Constructor
163 //=======================================================================
164 GeometryGUI::GeometryGUI() :
165   SalomeApp_Module( "GEOM" ),
166   LightApp_Module( "GEOM" )
167 {
168   if ( CORBA::is_nil( myComponentGeom ) )
169   {
170     SALOME_LifeCycleCORBA* ls = new SALOME_LifeCycleCORBA( getApp()->namingService() );
171     Engines::Component_var comp = ls->FindOrLoad_Component( "FactoryServer", "GEOM" );
172     myComponentGeom  = GEOM::GEOM_Gen::_narrow( comp );
173   }
174
175   myState           = -1;
176   myActiveDialogBox = 0;
177   myFatherior       = "";
178
179   gp_Pnt origin = gp_Pnt(0., 0., 0.);
180   gp_Dir direction = gp_Dir(0., 0., 1.);
181   myWorkingPlane = gp_Ax3(origin, direction);
182
183   myDisplayer = 0;
184   myLocalSelectionMode = GEOM_ALLOBJECTS;
185 }
186
187 //=======================================================================
188 // function : GeometryGUI::~GeometryGUI()
189 // purpose  : Destructor
190 //=======================================================================
191 GeometryGUI::~GeometryGUI()
192 {
193   while (!myOCCSelectors.isEmpty())
194     delete myOCCSelectors.takeFirst();
195
196   while (!myVTKSelectors.isEmpty())
197     delete myVTKSelectors.takeFirst();
198 }
199
200 //=======================================================================
201 // function : GeometryGUI::getLibrary()
202 // purpose  : get or load GUI library by name [ internal ]
203 //=======================================================================
204 typedef GEOMGUI* (*LibraryGUI)( GeometryGUI* );
205 GEOMGUI* GeometryGUI::getLibrary( const QString& libraryName )
206 {
207   if ( !myGUIMap.contains( libraryName ) ) {
208     // try to load library if it is not loaded yet
209     QString libs;
210 #ifndef WNT
211     libs = getenv( "LD_LIBRARY_PATH" );
212     if( !libs.isEmpty() ) {
213       QStringList dirList = libs.split( ":", QString::SkipEmptyParts ); // skip empty entries
214 #else
215     libs = getenv( "PATH" );
216     if( !libs.isEmpty() ) {
217       QStringList dirList = libs.split( ";", QString::SkipEmptyParts ); // skip empty entries
218 #endif
219       for( int i = dirList.count()-1; i >= 0; i-- ) {
220         QString dir = dirList[ i ];
221         QFileInfo fi( Qtx::addSlash( dirList[ i ] ) + libraryName );
222         if( fi.exists() ) {
223           OSD_SharedLibrary aSharedLibrary( fi.fileName().toLatin1().data() );
224           bool res = aSharedLibrary.DlOpen( OSD_RTLD_LAZY );
225           if( !res ) {
226             MESSAGE( "Can't open library : " << aSharedLibrary.DlError() );
227             continue; // continue search further
228           }
229           OSD_Function osdF = aSharedLibrary.DlSymb( "GetLibGUI" );
230           if ( osdF != NULL ) {
231             LibraryGUI func = (GEOMGUI* (*) (GeometryGUI*))osdF;
232             GEOMGUI* libGUI = (*func)(this);
233             if ( libGUI ) {
234               myGUIMap[ libraryName ] = libGUI;
235               break; // found and loaded!
236             }
237           }
238         }
239       }
240     }
241   }
242   if ( myGUIMap.contains( libraryName ) )
243     // library is successfully loaded
244     return myGUIMap[ libraryName ];
245   return 0;
246 }
247
248 //=======================================================================
249 // function : GeometryGUI::ActiveWorkingPlane()
250 // purpose  : Activate Working Plane View
251 //=======================================================================
252 void GeometryGUI::ActiveWorkingPlane()
253 {
254   gp_Dir DZ = myWorkingPlane.Direction();
255   gp_Dir DY = myWorkingPlane.YDirection();
256
257   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
258   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
259   bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
260
261   if( ViewOCC ) {
262     OCCViewer_ViewWindow* vw = dynamic_cast<OCCViewer_ViewWindow*>( window );
263     if ( vw ) {
264       Handle(V3d_View) view3d =  vw->getViewPort()->getView();
265
266       view3d->SetProj(DZ.X(), DZ.Y(), DZ.Z());
267       view3d->SetUp(DY.X(), DY.Y(), DY.Z());
268
269       vw->onViewFitAll();
270     }
271   }
272   else if( ViewVTK ) {
273     SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
274     if ( vw ) {
275       vtkCamera* camera = vw->getRenderer()->GetActiveCamera();
276
277       camera->SetPosition(DZ.X(), DZ.Y(), DZ.Z());
278       camera->SetViewUp(DY.X(), DY.Y(), DY.Z());
279       camera->SetFocalPoint(0,0,0);
280
281       vw->onFitAll();
282     }
283   }
284 }
285
286 //=======================================================================
287 // function : GeometryGUI::SetActiveDialogBox()
288 // purpose  : Set active dialog box
289 //=======================================================================
290 void GeometryGUI::SetActiveDialogBox( QDialog* aDlg )
291 {
292   myActiveDialogBox = (QDialog*)aDlg;
293 }
294
295 //=======================================================================
296 // function : GeometryGUI::EmitSignalDeactivateDialog()
297 // purpose  : Emit a signal to deactivate the active dialog Box
298 //=======================================================================
299 void GeometryGUI::EmitSignalDeactivateDialog()
300 {
301   emit SignalDeactivateActiveDialog();
302 }
303
304 //=======================================================================
305 // function : GeometryGUI::EmitSignalCloseAllDialogs()
306 // purpose  : Emit a signal to close all non modal dialogs box
307 //=======================================================================
308 void GeometryGUI::EmitSignalCloseAllDialogs()
309 {
310   emit SignalCloseAllDialogs();
311 }
312
313 //=======================================================================
314 // function : GeometryGUI::EmitSignalDefaultStepValueChanged()
315 // purpose  : Emit a signal to inform that default real spin box step has
316 //            been changed
317 //=======================================================================
318 void GeometryGUI::EmitSignalDefaultStepValueChanged(double newVal)
319 {
320   emit SignalDefaultStepValueChanged(newVal);
321 }
322
323 //=======================================================================
324 // function : GeometryGUI::OnGUIEvent()
325 // purpose  : common slot for all menu/toolbar actions
326 //=======================================================================
327 void GeometryGUI::OnGUIEvent()
328 {
329   const QObject* obj = sender();
330   if ( !obj || !obj->inherits( "QAction" ) )
331     return;
332   int id = actionId((QAction*)obj);
333   if ( id != -1 )
334     OnGUIEvent( id );
335 }
336
337 //=======================================================================
338 // function : GeometryGUI::OnGUIEvent()
339 // purpose  : manage all events on GUI [static]
340 //=======================================================================
341 void GeometryGUI::OnGUIEvent( int id )
342 {
343   SUIT_Application* anApp = application();
344   if (!anApp) return;
345   SUIT_Desktop* desk = anApp->desktop();
346
347   // check type of the active viewframe
348   SUIT_ViewWindow* window = desk->activeWindow();
349   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
350   bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
351   // if current viewframe is not of OCC and not of VTK type - return immediately
352   // fix for IPAL8958 - allow some commands to execute even when NO viewer is active (rename for example)
353   bool NotViewerDependentCommand = ( id == 901 || id == 216 || id == 213 );
354   if ( !ViewOCC && !ViewVTK && !NotViewerDependentCommand )
355       return;
356
357   // fix for IPAL9103, point 2
358   if ( CORBA::is_nil( GetGeomGen() ) ) {
359     SUIT_MessageBox::critical( desk, tr( "GEOM_ERROR" ), tr( "GEOM_ERR_GET_ENGINE" ), tr( "GEOM_BUT_OK" ) );
360     return;
361   }
362
363   GEOMGUI* library = 0;
364   // try to get-or-load corresponding GUI library
365   if( id == 111  ||  // MENU FILE - IMPORT BREP
366       id == 112  ||  // MENU FILE - IMPORT IGES
367       id == 113  ||  // MENU FILE - IMPORT STEP
368       id == 121  ||  // MENU FILE - EXPORT BREP
369       id == 122  ||  // MENU FILE - EXPORT IGES
370       id == 123  ||  // MENU FILE - EXPORT STEP
371       id == 2171 ||  // POPUP VIEWER - SELECT ONLY - VERTEX
372       id == 2172 ||  // POPUP VIEWER - SELECT ONLY - EDGE
373       id == 2173 ||  // POPUP VIEWER - SELECT ONLY - WIRE
374       id == 2174 ||  // POPUP VIEWER - SELECT ONLY - FACE
375       id == 2175 ||  // POPUP VIEWER - SELECT ONLY - SHELL
376       id == 2176 ||  // POPUP VIEWER - SELECT ONLY - SOLID
377       id == 2177 ||  // POPUP VIEWER - SELECT ONLY - COMPOUND
378       id == 2178 ||  // POPUP VIEWER - SELECT ONLY - SELECT ALL
379       id == 31   ||  // MENU EDIT - COPY
380       id == 33   ||  // MENU EDIT - DELETE
381       id == 411  ||  // MENU SETTINGS - ADD IN STUDY
382       id == 412  ||  // MENU SETTINGS - SHADING COLOR
383       id == 5103 ||  // MENU TOOLS - CHECK GEOMETRY
384       id == 8032 ||  // POPUP VIEWER - COLOR
385       id == 8033 ||  // POPUP VIEWER - TRANSPARENCY
386       id == 8034 ||  // POPUP VIEWER - ISOS
387       id == 8035 ||  // POPUP VIEWER - AUTO COLOR
388       id == 8036 ||  // POPUP VIEWER - DISABLE AUTO COLOR
389       id == 8037 ||  // POPUP VIEWER - SHOW CHILDREN
390       id == 8038 ||  // POPUP VIEWER - HIDE CHILDREN
391       id == 804  ||  // POPUP VIEWER - ADD IN STUDY
392       id == 901  ||  // OBJECT BROWSER - RENAME
393       id == 9024 ) { // OBJECT BROWSER - OPEN
394     //cout << "id " << id << " received" << endl;
395 #ifndef WNT
396         library = getLibrary( "libGEOMToolsGUI.so" );
397 #else
398         library = getLibrary( "GEOMToolsGUI.dll" );
399 #endif
400   }
401   else if( id == 211  ||  // MENU VIEW - WIREFRAME/SHADING
402            id == 212  ||  // MENU VIEW - DISPLAY ALL
403            id == 213  ||  // MENU VIEW - DISPLAY ONLY
404            id == 214  ||  // MENU VIEW - ERASE ALL
405            id == 215  ||  // MENU VIEW - ERASE
406            id == 216  ||  // MENU VIEW - DISPLAY
407            id == 218  ||  // MENU VIEW - VECTOR MODE
408            id == 80311 ||  // POPUP VIEWER - WIREFRAME
409            id == 80312 ||  // POPUP VIEWER - SHADING
410            id == 80313 ) { // POPUP VIEWER - VECTORS
411 #ifndef WNT
412         library = getLibrary( "libDisplayGUI.so" );
413 #else
414         library = getLibrary( "DisplayGUI.dll" );
415 #endif
416   }
417   else if( id == 4011 ||  // MENU BASIC - POINT
418            id == 4012 ||  // MENU BASIC - LINE
419            id == 4013 ||  // MENU BASIC - CIRCLE
420            id == 4014 ||  // MENU BASIC - ELLIPSE
421            id == 4015 ||  // MENU BASIC - ARC
422            id == 4016 ||  // MENU BASIC - VECTOR
423            id == 4017 ||  // MENU BASIC - PLANE
424 //         id == 4018 ||  // MENU BASIC - WPLANE // DEPRECATED
425            id == 4019 ||  // MENU BASIC - CURVE
426            id == 4020 ) { // MENU BASIC - REPAIR
427 #ifndef WNT
428         library = getLibrary( "libBasicGUI.so" );
429 #else
430         library = getLibrary( "BasicGUI.dll" );
431 #endif
432   }
433   else if( id == 4021 ||  // MENU PRIMITIVE - BOX
434            id == 4022 ||  // MENU PRIMITIVE - CYLINDER
435            id == 4023 ||  // MENU PRIMITIVE - SPHERE
436            id == 4024 ||  // MENU PRIMITIVE - TORUS
437            id == 4025 ||  // MENU PRIMITIVE - CONE
438            id == 4026 ||  // MENU PRIMITIVE - FACE
439            id == 4027 ) { // MENU PRIMITIVE - DISK
440 #ifndef WNT
441         library = getLibrary( "libPrimitiveGUI.so" );
442 #else
443         library = getLibrary( "PrimitiveGUI.dll" );
444 #endif
445   }
446   else if( id == 4031 ||  // MENU GENERATION - PRISM
447            id == 4032 ||  // MENU GENERATION - REVOLUTION
448            id == 4033 ||  // MENU GENERATION - FILLING
449            id == 4034 ) { // MENU GENERATION - PIPE
450 #ifndef WNT
451         library = getLibrary( "libGenerationGUI.so" );
452 #else
453         library = getLibrary( "GenerationGUI.dll" );
454 #endif
455   }
456   else if( id == 404 ||   // MENU ENTITY - SKETCHER
457            id == 405 ||   // MENU ENTITY - 3D SKETCHER
458            id == 407 ) {  // MENU ENTITY - EXPLODE
459 #ifndef WNT
460         library = getLibrary( "libEntityGUI.so" );
461 #else
462         library = getLibrary( "EntityGUI.dll" );
463 #endif
464   }
465   else if( id == 4081 ||  // MENU BUILD - EDGE
466            id == 4082 ||  // MENU BUILD - WIRE
467            id == 4083 ||  // MENU BUILD - FACE
468            id == 4084 ||  // MENU BUILD - SHELL
469            id == 4085 ||  // MENU BUILD - SOLID
470            id == 4086 ) { // MENU BUILD - COMPUND
471 #ifndef WNT
472         library = getLibrary( "libBuildGUI.so" );
473 #else
474         library = getLibrary( "BuildGUI.dll" );
475 #endif
476   }
477   else if( id == 5011 ||  // MENU BOOLEAN - FUSE
478            id == 5012 ||  // MENU BOOLEAN - COMMON
479            id == 5013 ||  // MENU BOOLEAN - CUT
480            id == 5014 ) { // MENU BOOLEAN - SECTION
481 #ifndef WNT
482         library = getLibrary( "libBooleanGUI.so" );
483 #else
484         library = getLibrary( "BooleanGUI.dll" );
485 #endif
486   }
487   else if( id == 5021 ||  // MENU TRANSFORMATION - TRANSLATION
488            id == 5022 ||  // MENU TRANSFORMATION - ROTATION
489            id == 5023 ||  // MENU TRANSFORMATION - LOCATION
490            id == 5024 ||  // MENU TRANSFORMATION - MIRROR
491            id == 5025 ||  // MENU TRANSFORMATION - SCALE
492            id == 5026 ||  // MENU TRANSFORMATION - OFFSET
493            id == 5027 ||  // MENU TRANSFORMATION - MULTI-TRANSLATION
494            id == 5028 ||  // MENU TRANSFORMATION - MULTI-ROTATION
495            id == 5029 ) { // CONTEXT(POPUP) MENU - RELOAD_IMPORTED
496 #ifndef WNT
497         library = getLibrary( "libTransformationGUI.so" );
498 #else
499         library = getLibrary( "TransformationGUI.dll" );
500 #endif
501   }
502   else if( id == 503 ||   // MENU OPERATION - PARTITION
503            id == 504 ||   // MENU OPERATION - ARCHIMEDE
504            id == 505 ||   // MENU OPERATION - FILLET
505            id == 506 ||   // MENU OPERATION - CHAMFER
506            id == 507 ||   // MENU OPERATION - CLIPPING RANGE
507            id == 508 ||   // MENU OPERATION - GET SHAPES ON SHAPE
508            id == 509 ) {  // MENU OPERATION - FILLET 2D
509 #ifndef WNT
510         library = getLibrary( "libOperationGUI.so" );
511 #else
512         library = getLibrary( "OperationGUI.dll" );
513 #endif
514   }
515   else if( id == 601 ||   // MENU REPAIR - SEWING
516            id == 603 ||   // MENU REPAIR - SUPPRESS FACES
517            id == 604 ||   // MENU REPAIR - SUPPRESS HOLE
518            id == 605 ||   // MENU REPAIR - SHAPE PROCESSING
519            id == 606 ||   // MENU REPAIR - CLOSE CONTOUR
520            id == 607 ||   // MENU REPAIR - REMOVE INTERNAL WIRES
521            id == 608 ||   // MENU REPAIR - ADD POINT ON EDGE
522            id == 609 ||   // MENU MEASURE - FREE BOUNDARIES
523            id == 610 ||   // MENU MEASURE - FREE FACES
524            id == 611 ||   // MENU REPAIR - CHANGE ORIENTATION
525            id == 602 ||   // MENU REPAIR - GLUE FACES
526            id == 612 ) {  // MENU REPAIR - REMOVE EXTRA EDGES
527 #ifndef WNT
528         library = getLibrary( "libRepairGUI.so" );
529 #else
530         library = getLibrary( "RepairGUI.dll" );
531 #endif
532   }
533   else if( id == 701   ||  // MENU MEASURE - PROPERTIES
534            id == 702   ||  // MENU MEASURE - CDG
535            id == 703   ||  // MENU MEASURE - INERTIA
536            id == 704   ||  // MENU MEASURE - NORMALE
537            id == 7041  ||  // MENU MEASURE - BOUNDING BOX
538            id == 7042  ||  // MENU MEASURE - MIN DISTANCE
539            id == 7043  ||  // MENU MEASURE - ANGLE
540            id == 705   ||  // MENU MEASURE - TOLERANCE
541            id == 706   ||  // MENU MEASURE - WHATIS
542            id == 707   ||  // MENU MEASURE - CHECK
543            id == 7072  ||  // MENU MEASURE - CHECK COMPOUND OF BLOCKS
544            id == 708 ) {   // MENU MEASURE - POINT COORDINATES
545 #ifndef WNT
546         library = getLibrary( "libMeasureGUI.so" );
547 #else
548         library = getLibrary( "MeasureGUI.dll" );
549 #endif
550   }
551   else if( id == 800  ||  // MENU GROUP - CREATE
552            id == 8001 ||  // POPUP MENU - CREATE GROUP
553            id == 801 ) {  // MENU GROUP - EDIT
554 #ifndef WNT
555         library = getLibrary( "libGroupGUI.so" );
556 #else
557         library = getLibrary( "GroupGUI.dll" );
558 #endif
559   }
560   else if( id == 9999  ||  // MENU BLOCKS - HEXAHEDRAL SOLID
561            id == 9998  ||  // MENU BLOCKS - MULTI-TRANSFORMATION
562            id == 9997  ||  // MENU BLOCKS - QUADRANGLE FACE
563            id == 99991 ||  // MENU BLOCKS - PROPAGATE
564            id == 9995 ) {  // MENU BLOCKS - EXPLODE ON BLOCKS
565 #ifndef WNT
566         library = getLibrary( "libBlocksGUI.so" );
567 #else
568         library = getLibrary( "BlocksGUI.dll" );
569 #endif
570   }
571
572   // call method of corresponding GUI library
573   if ( library )
574     library->OnGUIEvent( id, desk );
575   else
576     SUIT_MessageBox::critical( desk, tr( "GEOM_ERROR" ), tr( "GEOM_ERR_LIB_NOT_FOUND" ), tr( "GEOM_BUT_OK" ) );
577 }
578
579
580 //=================================================================================
581 // function : GeometryGUI::OnKeyPress()
582 // purpose  : Called when any key is pressed by user [static]
583 //=================================================================================
584 void GeometryGUI::OnKeyPress( SUIT_ViewWindow* win, QKeyEvent* pe )
585 {
586   GUIMap::Iterator it;
587   bool bOk = true;
588   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
589     SUIT_Application* anApp = application();
590     if (!anApp) return;
591     bOk = bOk && it.value()->OnKeyPress( pe, anApp->desktop(), win );
592   }
593 //  return bOk;
594 }
595
596
597 //=================================================================================
598 // function : GeometryGUI::OnMouseMove()
599 // purpose  : Manages mouse move events [static]
600 //=================================================================================
601 void GeometryGUI::OnMouseMove( SUIT_ViewWindow* win, QMouseEvent* pe )
602 {
603   GUIMap::Iterator it;
604   bool bOk = true;
605   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
606     SUIT_Application* anApp = application();
607     if (!anApp) return;
608     bOk = bOk && it.value()->OnMouseMove( pe, anApp->desktop(), win );
609   }
610 //  return bOk;
611 }
612
613
614 //=================================================================================
615 // function : GeometryGUI::0nMousePress()
616 // purpose  : Manage mouse press events [static]
617 //=================================================================================
618 void GeometryGUI::OnMousePress( SUIT_ViewWindow* win, QMouseEvent* pe )
619 {
620   GUIMap::Iterator it;
621   // OnMousePress() should return false if this event should be processed further
622   // (see OCCViewer_Viewer3d::onMousePress() for explanation)
623   bool processed = false;
624   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
625     SUIT_Application* anApp = application();
626     if (!anApp) return;
627     processed = processed || it.value()->OnMousePress( pe, anApp->desktop(), win );
628   }
629 //  return processed;
630 }
631
632 /*
633 static void UpdateVtkSelection()
634 {
635   QPtrList<SUIT_ViewWindow> winList = application()->desktop()->windows();
636   SUIT_ViewWindow* win = 0;
637   for ( win = winList.first(); win; win = winList.next() ) {
638     if ( win->getViewManager()->getTypeView() == VIEW_VTK ) {
639       SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
640       if ( vw ) {
641         SVTK_RenderWindowInteractor* anInteractor = vw->getRWInteractor();
642         anInteractor->SetSelectionProp();
643         anInteractor->SetSelectionTolerance();
644         SVTK_InteractorStyleSALOME* aStyle = anInteractor->GetInteractorStyleSALOME();
645         if (aStyle) {
646           aStyle->setPreselectionProp();
647         }
648       }
649     }
650   }
651 }
652
653 //=================================================================================
654 // function : GeometryGUI::SetSettings()
655 // purpose  : Called when GEOM module is activated [static]
656 //=================================================================================
657 bool GeometryGUI::SetSettings()
658 {
659   QMenuBar*     Mb = parent->getMainMenuBar();
660   SUIT_Study*   ActiveStudy = application()->activeStudy();
661
662 // Wireframe or Shading
663   int DisplayMode = 0;
664   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
665   bool ViewOCC = ( window && window->getViewManager()->getType() == VIEW_OCC );
666   bool ViewVTK = ( window && window->getViewManager()->getType() == VIEW_VTK );
667   if ( ViewOCC ) {
668     OCCViewer_ViewManager* vm = dynamic_cast<OCCViewer_ViewManager*>( window->getViewManager() );
669     if ( vm ) {
670       Handle(AIS_InteractiveContext) ic = vm->getOCCViewer()->getAISContext();
671       DisplayMode = ic->DisplayMode();
672     }
673   }
674   else if ( ViewVTK ) {
675     SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
676     if ( vw ) {
677       SVTK_RenderWindowInteractor* myRenderInter = vw->getRWInteractor();
678       DisplayMode = myRenderInter->GetDisplayMode();
679     }
680   }
681
682   if( DisplayMode == 1 )
683     getApp()->
684     Mb->changeItem( 211, tr( "GEOM_MEN_WIREFRAME" ) );
685   else
686     Mb->changeItem( 211, tr( "GEOM_MEN_SHADING" ) );
687
688
689   // Add in Study  - !!!ALWAYS TRUE!!! /////// VSR : TO BE REMOVED
690   QString AddInStudy = QAD_CONFIG->getSetting("Geometry:SettingsAddInStudy");
691   int Settings_AddInStudy;
692   //  if(!AddInStudy.isEmpty())
693   //    Settings_AddInStudy = AddInStudy.toInt();
694   //  else
695
696   Settings_AddInStudy = 1;
697   Mb->setItemChecked(411, Settings_AddInStudy);
698
699   // step value
700   QString S = QAD_CONFIG->getSetting("Geometry:SettingsGeomStep");
701   if(S.isEmpty())
702     QAD_CONFIG->addSetting("Geometry:SettingsGeomStep", "100");
703
704   // isos
705   int count = ActiveStudy->getStudyFramesCount();
706   for(int i = 0; i < count; i++) {
707     if(ActiveStudy->getStudyFrame(i)->getTypeView() == VIEW_OCC) {
708       OCCViewer_Viewer3d* v3d = ((OCCViewer_ViewFrame*)ActiveStudy->getStudyFrame(i)->getRightFrame()->getViewFrame())->getViewer();
709       Handle (AIS_InteractiveContext) ic = v3d->getAISContext();
710
711       QString IsoU = QAD_CONFIG->getSetting("Geometry:SettingsIsoU");
712       QString IsoV = QAD_CONFIG->getSetting("Geometry:SettingsIsoV");
713       if(!IsoU.isEmpty())
714         ic->DefaultDrawer()->UIsoAspect()->SetNumber(IsoU.toInt());
715       if(!IsoV.isEmpty())
716         ic->DefaultDrawer()->VIsoAspect()->SetNumber(IsoV.toInt());
717     }
718   }
719
720   setActionsEnabled();
721
722   // PAL5356: update VTK selection
723   ::UpdateVtkSelection();
724   bool bOk = true;
725   GUIMap::Iterator it;
726   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
727     bOk = bOk && it.data()->SetSettings( parent );
728
729   // MZN: Enable/disable "Clipping range" menu item(from GEOM_CLIPPING variable)
730   if (getenv( "GEOM_CLIPPING" ) == NULL)
731     {
732       QMenuItem* mi = Mb->findItem(50);
733       if (mi && mi->popup())
734       mi->popup()->removeItem(507);
735     }
736
737   return bOk;
738 }
739 */
740
741 //=======================================================================
742 // function : createGeomAction
743 // purpose  :
744 //=======================================================================
745 void GeometryGUI::createGeomAction( const int id, const QString& po_id, const QString& icon_id, const int key, const bool toggle  )
746 {
747   QIcon icon;
748   QWidget* parent = application()->desktop();
749   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
750   QPixmap pix;
751   if ( icon_id.length() )
752     pix = resMgr->loadPixmap( "GEOM", tr( icon_id.toLatin1().constData() ) );
753   else
754     pix = resMgr->loadPixmap( "GEOM", tr( (QString( "ICO_" )+po_id).toLatin1().constData() ), false );
755   if ( !pix.isNull() )
756     icon = QIcon( pix );
757
758   QString tooltip    = tr( (QString( "TOP_" )+po_id).toLatin1().constData() ),
759           menu       = tr( (QString( "MEN_" )+po_id).toLatin1().constData() ),
760           status_bar = tr( (QString( "STB_" )+po_id).toLatin1().constData() );
761
762   createAction( id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT( OnGUIEvent() )  );
763 }
764
765
766
767 //=======================================================================
768 // function : GeometryGUI::initialize()
769 // purpose  : Called when GEOM module is created
770 //=======================================================================
771 void GeometryGUI::initialize( CAM_Application* app )
772 {
773   SalomeApp_Module::initialize( app );
774
775   // ----- create actions --------------
776
777   createGeomAction( 111, "IMPORT", "", (CTRL + Key_I) );
778   createGeomAction( 121, "EXPORT", "", (CTRL + Key_E) );
779
780   createGeomAction( 33, "DELETE", "", Qt::Key_Delete );
781
782   createGeomAction( 4011, "POINT" );
783   createGeomAction( 4012, "LINE" );
784   createGeomAction( 4013, "CIRCLE" );
785   createGeomAction( 4014, "ELLIPSE" );
786   createGeomAction( 4015, "ARC" );
787   createGeomAction( 4019, "CURVE" );
788   createGeomAction( 4016, "VECTOR" );
789   createGeomAction( 4017, "PLANE" );
790 //  createGeomAction( 4018, "WORK_PLANE" ); DEPRECATED
791   createGeomAction( 4020, "LOCAL_CS" );
792
793   createGeomAction( 4021, "BOX" );
794   createGeomAction( 4022, "CYLINDER" );
795   createGeomAction( 4023, "SPHERE" );
796   createGeomAction( 4024, "TORUS" );
797   createGeomAction( 4025, "CONE" );
798   createGeomAction( 4026, "FACE" );
799   createGeomAction( 4027, "DISK" );
800
801   createGeomAction( 4031, "EXTRUSION" );
802   createGeomAction( 4032, "REVOLUTION" );
803   createGeomAction( 4033, "FILLING" );
804   createGeomAction( 4034, "PIPE" );
805
806   createGeomAction( 800, "GROUP_CREATE" );
807   createGeomAction( 801, "GROUP_EDIT" );
808
809   createGeomAction( 5029, "RELOAD_IMPORTED" );
810
811   createGeomAction( 9997, "Q_FACE" );
812   createGeomAction( 9999, "HEX_SOLID" );
813
814   createGeomAction( 404, "SKETCH" );
815   createGeomAction( 405, "3DSKETCH" );
816   createGeomAction( 407, "EXPLODE" );
817
818   createGeomAction( 4081, "EDGE" );
819   createGeomAction( 4082, "WIRE" );
820   createGeomAction( 4083, "FACE" );
821   createGeomAction( 4084, "SHELL" );
822   createGeomAction( 4085, "SOLID" );
823   createGeomAction( 4086, "COMPOUND" );
824
825   createGeomAction( 5011, "FUSE" );
826   createGeomAction( 5012, "COMMON" );
827   createGeomAction( 5013, "CUT" );
828   createGeomAction( 5014, "SECTION" );
829
830   createGeomAction( 5021, "TRANSLATION" );
831   createGeomAction( 5022, "ROTATION" );
832   createGeomAction( 5023, "MODIFY_LOCATION" );
833   createGeomAction( 5024, "MIRROR" );
834   createGeomAction( 5025, "SCALE" );
835   createGeomAction( 5026, "OFFSET" );
836   createGeomAction( 5027, "MUL_TRANSLATION" );
837   createGeomAction( 5028, "MUL_ROTATION" );
838
839   createGeomAction( 503, "PARTITION" );
840   createGeomAction( 504, "ARCHIMEDE" );
841   createGeomAction( 505, "FILLET" );
842   createGeomAction( 506, "CHAMFER" );
843   //createGeomAction( 507, "CLIPPING" );
844   createGeomAction( 508, "GET_SHAPES_ON_SHAPES" );
845   createGeomAction( 509, "FILLET_2D" );
846
847   createGeomAction( 9998, "MUL_TRANSFORM" );
848   createGeomAction( 9995, "EXPLODE_BLOCKS" );
849   createGeomAction( 99991, "PROPAGATE" );
850
851   createGeomAction( 601, "SEWING" );
852   createGeomAction( 602, "GLUE_FACES" );
853   createGeomAction( 603, "SUPPRESS_FACES" );
854   createGeomAction( 604, "SUPPERSS_HOLES" );
855   createGeomAction( 605, "SHAPE_PROCESS" );
856   createGeomAction( 606, "CLOSE_CONTOUR" );
857   createGeomAction( 607, "SUPPRESS_INT_WIRES" );
858   createGeomAction( 608, "POINT_ON_EDGE" );
859   createGeomAction( 609, "CHECK_FREE_BNDS" );
860   createGeomAction( 610, "CHECK_FREE_FACES" );
861   createGeomAction( 611, "CHANGE_ORIENTATION" );
862   createGeomAction( 612, "REMOVE_EXTRA_EDGES" );
863
864   createGeomAction( 708, "POINT_COORDS" );
865   createGeomAction( 701, "BASIC_PROPS" );
866   createGeomAction( 702, "MASS_CENTER" );
867   createGeomAction( 703, "INERTIA" );
868   createGeomAction( 704, "NORMALE" );
869   createGeomAction( 7041, "BND_BOX" );
870   createGeomAction( 7042, "MIN_DIST" );
871   createGeomAction( 7043, "MEASURE_ANGLE" );
872
873   createGeomAction( 705, "TOLERANCE" );
874   createGeomAction( 706, "WHAT_IS" );
875   createGeomAction( 707, "CHECK" );
876   createGeomAction( 7072, "CHECK_COMPOUND" );
877
878 #ifdef _DEBUG_ // PAL16821
879   createGeomAction( 5103, "CHECK_GEOMETRY" );
880 #endif
881   createGeomAction( 412, "SHADING_COLOR" );
882
883   createGeomAction( 211, "SHADING" );
884   createGeomAction( 212, "DISPLAY_ALL" );
885   createGeomAction( 214, "ERASE_ALL" );
886   createGeomAction( 216, "DISPLAY" );
887   createGeomAction( 218, "VECTOR_MODE");
888   createGeomAction( 2171, "VERTEX_SEL_ONLY" ,"", 0, true );
889   createGeomAction( 2172, "EDGE_SEL_ONLY", "", 0, true );
890   createGeomAction( 2173, "WIRE_SEL_ONLY", "",  0, true );
891   createGeomAction( 2174, "FACE_SEL_ONLY", "", 0, true );
892   createGeomAction( 2175, "SHELL_SEL_ONLY", "",  0, true );
893   createGeomAction( 2176, "SOLID_SEL_ONLY", "", 0, true );
894   createGeomAction( 2177, "COMPOUND_SEL_ONLY", "",  0, true );
895   createGeomAction( 2178, "ALL_SEL_ONLY", "",  0, true );
896   createGeomAction( 213, "DISPLAY_ONLY" );
897   createGeomAction( 215, "ERASE" );
898
899   createGeomAction( 901, "POP_RENAME", "", Qt::Key_F2 );
900   createGeomAction( 80311, "POP_WIREFRAME", "", 0, true );
901   createGeomAction( 80312, "POP_SHADING", "", 0, true );
902   createGeomAction( 80313, "POP_VECTORS", "", 0, true );
903   createGeomAction( 8032, "POP_COLOR" );
904   createGeomAction( 8033, "POP_TRANSPARENCY" );
905   createGeomAction( 8034, "POP_ISOS" );
906   createGeomAction( 8035, "POP_AUTO_COLOR" );
907   createGeomAction( 8036, "POP_DISABLE_AUTO_COLOR" );
908   createGeomAction( 8001, "POP_CREATE_GROUP" );
909   createGeomAction( 8037, "POP_SHOW_CHILDREN" );
910   createGeomAction( 8038, "POP_HIDE_CHILDREN" );
911
912   // make wireframe-shading items to be exclusive (only one at a time is selected)
913   //QActionGroup* dispModeGr = new QActionGroup( this, "", true );
914   //dispModeGr->add( action( 80311 ) );
915   //dispModeGr->add( action( 80312 ) );
916   // ---- create menu --------------------------
917
918   int fileId = createMenu( tr( "MEN_FILE" ), -1, -1 );
919   createMenu( separator(), fileId, 10 );
920   createMenu( 111, fileId, 10 );
921   createMenu( 121, fileId, 10 );
922   createMenu( separator(), fileId, -1 );
923
924   int editId = createMenu( tr( "MEN_EDIT" ), -1, -1 );
925   createMenu( 33, editId, -1 );
926
927   int newEntId = createMenu( tr( "MEN_NEW_ENTITY" ), -1, -1, 10 );
928
929   int basicId = createMenu( tr( "MEN_BASIC" ), newEntId, -1 );
930   createMenu( 4011, basicId, -1 );
931   createMenu( 4012, basicId, -1 );
932   createMenu( 4013, basicId, -1 );
933   createMenu( 4014, basicId, -1 );
934   createMenu( 4015, basicId, -1 );
935   createMenu( 4019, basicId, -1 );
936   createMenu( separator(), basicId, -1 );
937   createMenu( 4016, basicId, -1 );
938   createMenu( 4017, basicId, -1 );
939 //  createMenu( 4018, basicId, -1 ); DEPRECATED
940   createMenu( 4020, basicId, -1 );
941
942   int primId = createMenu( tr( "MEN_PRIMITIVES" ), newEntId, -1 );
943   createMenu( 4021, primId, -1 );
944   createMenu( 4022, primId, -1 );
945   createMenu( 4023, primId, -1 );
946   createMenu( 4024, primId, -1 );
947   createMenu( 4025, primId, -1 );
948   createMenu( 4026, primId, -1 );
949   createMenu( 4027, primId, -1 );
950
951   int genId = createMenu( tr( "MEN_GENERATION" ), newEntId, -1 );
952   createMenu( 4031, genId, -1 );
953   createMenu( 4032, genId, -1 );
954   createMenu( 4033, genId, -1 );
955   createMenu( 4034, genId, -1 );
956   createMenu( separator(), newEntId, -1 );
957
958   int groupId = createMenu( tr( "MEN_GROUP" ), newEntId, -1 );
959   createMenu( 800, groupId, -1 );
960   createMenu( 801, groupId, -1 );
961   createMenu( separator(), newEntId, -1 );
962
963   int blocksId = createMenu( tr( "MEN_BLOCKS" ), newEntId, -1 );
964   createMenu( 9997, blocksId, -1 );
965   createMenu( 9999, blocksId, -1 );
966
967   createMenu( separator(), newEntId, -1 );
968   createMenu( 404, newEntId, -1 );
969   createMenu( 405, newEntId, -1 );
970   createMenu( separator(), newEntId, -1 );
971   createMenu( 407, newEntId, -1 );
972
973   int buildId = createMenu( tr( "MEN_BUILD" ), newEntId, -1 );
974   createMenu( 4081, buildId, -1 );
975   createMenu( 4082, buildId, -1 );
976   createMenu( 4083, buildId, -1 );
977   createMenu( 4084, buildId, -1 );
978   createMenu( 4085, buildId, -1 );
979   createMenu( 4086, buildId, -1 );
980
981   int operId = createMenu( tr( "MEN_OPERATIONS" ), -1, -1, 10 );
982
983   int boolId = createMenu( tr( "MEN_BOOLEAN" ), operId, -1 );
984   createMenu( 5011, boolId, -1 );
985   createMenu( 5012, boolId, -1 );
986   createMenu( 5013, boolId, -1 );
987   createMenu( 5014, boolId, -1 );
988
989   int transId = createMenu( tr( "MEN_TRANSFORMATION" ), operId, -1 );
990   createMenu( 5021, transId, -1 );
991   createMenu( 5022, transId, -1 );
992   createMenu( 5023, transId, -1 );
993   createMenu( 5024, transId, -1 );
994   createMenu( 5025, transId, -1 );
995   createMenu( 5026, transId, -1 );
996   createMenu( separator(), transId, -1 );
997   createMenu( 5027, transId, -1 );
998   createMenu( 5028, transId, -1 );
999
1000   createMenu( 503, operId, -1 );
1001   createMenu( 504, operId, -1 );
1002   createMenu( 508, operId, -1 );
1003   createMenu( separator(), operId, -1 );
1004   createMenu( 509, transId, -1 );
1005   createMenu( 505, transId, -1 );
1006   createMenu( 506, transId, -1 );
1007   //createMenu( 507, transId, -1 );
1008
1009   int blockId = createMenu( tr( "MEN_BLOCKS" ), operId, -1 );
1010   createMenu( 9998, blockId, -1 );
1011   createMenu( 9995, blockId, -1 );
1012   createMenu( 99991, blockId, -1 );
1013
1014   int repairId = createMenu( tr( "MEN_REPAIR" ), -1, -1, 10 );
1015   createMenu( 605, repairId, -1 );
1016   createMenu( 603, repairId, -1 );
1017   createMenu( 606, repairId, -1 );
1018   createMenu( 607, repairId, -1 );
1019   createMenu( 604, repairId, -1 );
1020   createMenu( 601, repairId, -1 );
1021   createMenu( 602, repairId, -1 );
1022   createMenu( 608, repairId, -1 );
1023   //createMenu( 609, repairId, -1 );
1024   //createMenu( 610, repairId, -1 );
1025   createMenu( 611, repairId, -1 );
1026   createMenu( 612, repairId, -1 );
1027
1028   int measurId = createMenu( tr( "MEN_MEASURES" ), -1, -1, 10 );
1029   createMenu( 708, measurId, -1 );
1030   createMenu( 701, measurId, -1 );
1031   createMenu( separator(), measurId, -1 );
1032   createMenu( 702, measurId, -1 );
1033   createMenu( 703, measurId, -1 );
1034   createMenu( 704, measurId, -1 );
1035   // NPAL16572: move "Check free boundaries" and "Check free faces" from "Repair" to "Measure"
1036   createMenu( separator(), measurId, -1 );
1037   createMenu( 609, measurId, -1 );
1038   createMenu( 610, measurId, -1 );
1039   // NPAL16572 END
1040   createMenu( separator(), measurId, -1 );
1041
1042   int dimId = createMenu( tr( "MEN_DIMENSIONS" ), measurId, -1 );
1043   createMenu( 7041, dimId, -1 );
1044   createMenu( 7042, dimId, -1 );
1045   createMenu( 7043, dimId, -1 );
1046   createMenu( separator(), measurId, -1 );
1047
1048   createMenu( 705, measurId, -1 );
1049   createMenu( separator(), measurId, -1 );
1050   createMenu( 706, measurId, -1 );
1051   createMenu( 707, measurId, -1 );
1052   createMenu( 7072, measurId, -1 );
1053
1054 #ifdef _DEBUG_ // PAL16821
1055   int toolsId = createMenu( tr( "MEN_TOOLS" ), -1, -1, 50 );
1056   createMenu( separator(), toolsId, -1 );
1057   createMenu( 5103, toolsId, -1 );
1058 #endif
1059   //int prefId = createMenu( tr( "MEN_PREFERENCES" ), -1, -1, 50 );
1060   //createMenu( separator(), prefId, -1 );
1061   //int geomId = createMenu( tr( "MEN_PREFERENCES_GEOM" ), prefId, -1 );
1062   //createMenu( 412, geomId, -1 );
1063   //createMenu( separator(), prefId, -1 );
1064
1065   int viewId = createMenu( tr( "MEN_VIEW" ), -1, -1 );
1066   createMenu( separator(), viewId, -1 );
1067
1068   int dispmodeId = createMenu( tr( "MEN_DISPLAY_MODE" ), viewId, -1 );
1069   createMenu( 211, dispmodeId, -1 );
1070   createMenu( separator(), dispmodeId, -1 );
1071   createMenu( 218, dispmodeId, -1 );
1072
1073   createMenu( separator(), viewId, -1 );
1074   createMenu( 212, viewId, -1 );
1075   createMenu( 214, viewId, -1 );
1076   createMenu( separator(), viewId, -1 );
1077
1078 /*
1079   PAL9111:
1080   because of these items are accessible through object browser and viewers
1081   we have removed they from main menu
1082
1083   createMenu( 216, viewId, -1 );
1084   createMenu( 213, viewId, -1 );
1085   createMenu( 215, viewId, -1 );
1086 */
1087
1088   // ---- create toolbars --------------------------
1089
1090   int basicTbId = createTool( tr( "TOOL_BASIC" ) );
1091   createTool( 4011, basicTbId );
1092   createTool( 4012, basicTbId );
1093   createTool( 4013, basicTbId );
1094   createTool( 4014, basicTbId );
1095   createTool( 4015, basicTbId );
1096   createTool( 4019, basicTbId );
1097   createTool( 4016, basicTbId );
1098   createTool( 4017, basicTbId );
1099 //  createTool( 4018, basicTbId ); DEPRECATED
1100   createTool( 4020, basicTbId );
1101
1102   int primTbId = createTool( tr( "TOOL_PRIMITIVES" ) );
1103   createTool( 4021, primTbId );
1104   createTool( 4022, primTbId );
1105   createTool( 4023, primTbId );
1106   createTool( 4024, primTbId );
1107   createTool( 4025, primTbId );
1108   createTool( 4026, primTbId );
1109   createTool( 4027, primTbId );
1110
1111   int boolTbId = createTool( tr( "TOOL_BOOLEAN" ) );
1112   createTool( 5011, boolTbId );
1113   createTool( 5012, boolTbId );
1114   createTool( 5013, boolTbId );
1115   createTool( 5014, boolTbId );
1116
1117   int genTbId = createTool( tr( "TOOL_GENERATION" ) );
1118   createTool( 4031, genTbId );
1119   createTool( 4032, genTbId );
1120   createTool( 4033, genTbId );
1121   createTool( 4034, genTbId );
1122
1123   int transTbId = createTool( tr( "TOOL_TRANSFORMATION" ) );
1124   createTool( 5021, transTbId );
1125   createTool( 5022, transTbId );
1126   createTool( 5023, transTbId );
1127   createTool( 5024, transTbId );
1128   createTool( 5025, transTbId );
1129   createTool( 5026, transTbId );
1130   createTool( separator(), transTbId );
1131   createTool( 5027, transTbId );
1132   createTool( 5028, transTbId );
1133
1134   // ---- create popup menus --------------------------
1135
1136   QString clientOCCorVTK = "(client='OCCViewer' or client='VTKViewer')";
1137   QString clientOCCorVTK_AndSomeVisible = clientOCCorVTK + " and selcount>0 and isVisible";
1138
1139   QString clientOCCorVTKorOB = "(client='ObjectBrowser' or client='OCCViewer' or client='VTKViewer')";
1140   QString clientOCCorVTKorOB_AndSomeVisible = clientOCCorVTKorOB + " and selcount>0 and isVisible";
1141
1142   QString autoColorPrefix =
1143     "(client='ObjectBrowser' or client='OCCViewer') and type='Shape' and selcount=1 and isOCC=true";
1144
1145   QtxPopupMgr* mgr = popupMgr();
1146   mgr->insert( action(  901 ), -1, -1 );  // rename
1147   mgr->setRule( action( 901 ), QString("$type in {'Shape' 'Group'} and selcount=1"), QtxPopupMgr::VisibleRule );
1148   mgr->insert( action(   33 ), -1, -1 );  // delete
1149   mgr->setRule( action(  33 ), QString("$type in {'Shape' 'Group'} and selcount>0"), QtxPopupMgr::VisibleRule );
1150   mgr->insert( action(  8001 ), -1, -1 ); // create group
1151   mgr->setRule( action( 8001 ), QString("client='ObjectBrowser' and type='Shape' and selcount=1 and isOCC=true"), QtxPopupMgr::VisibleRule );
1152   mgr->insert( action(  8037 ), -1, -1 ); // show children
1153   mgr->setRule( action( 8037 ), QString("client='ObjectBrowser' and type='Shape' and selcount=1 and hasHiddenChildren=true"), QtxPopupMgr::VisibleRule );
1154   mgr->insert( action(  8038 ), -1, -1 ); // hide children
1155   mgr->setRule( action( 8038 ), QString("client='ObjectBrowser' and type='Shape' and selcount=1 and hasShownChildren=true"), QtxPopupMgr::VisibleRule );
1156   mgr->insert( action(  801 ), -1, -1 );  // edit group
1157   mgr->setRule( action( 801 ),  QString("client='ObjectBrowser' and type='Group' and selcount=1 and isOCC=true"), QtxPopupMgr::VisibleRule );
1158   mgr->insert( separator(), -1, -1 );     // -----------
1159   dispmodeId = mgr->insert(  tr( "MEN_DISPLAY_MODE" ), -1, -1 ); // display mode menu
1160   mgr->insert( action(  80311 ), dispmodeId, -1 ); // wireframe
1161   mgr->setRule( action( 80311 ), clientOCCorVTK_AndSomeVisible, QtxPopupMgr::VisibleRule );
1162   mgr->setRule( action( 80311 ), clientOCCorVTK + " and displaymode='Wireframe'", QtxPopupMgr::ToggleRule );
1163   mgr->insert( action(  80312 ), dispmodeId, -1 ); // shading
1164   mgr->setRule( action( 80312 ), clientOCCorVTK_AndSomeVisible, QtxPopupMgr::VisibleRule );
1165   mgr->setRule( action( 80312 ), clientOCCorVTK + " and displaymode='Shading'", QtxPopupMgr::ToggleRule );
1166   mgr->insert( separator(), dispmodeId, -1 );
1167   mgr->insert( action(  80313 ), dispmodeId, -1 ); // vectors
1168   mgr->setRule( action( 80313 ), clientOCCorVTK_AndSomeVisible, QtxPopupMgr::VisibleRule );
1169   mgr->setRule( action( 80313 ), clientOCCorVTK + " and isVectorsMode", QtxPopupMgr::ToggleRule );
1170   mgr->insert( separator(), -1, -1 );     // -----------
1171   mgr->insert( action(  8032 ), -1, -1 ); // color
1172   mgr->setRule( action( 8032 ), clientOCCorVTKorOB_AndSomeVisible + " and ($component={'GEOM'})", QtxPopupMgr::VisibleRule );
1173   mgr->insert( action(  8033 ), -1, -1 ); // transparency
1174   mgr->setRule( action( 8033 ), clientOCCorVTK_AndSomeVisible, QtxPopupMgr::VisibleRule );
1175   mgr->insert( action(  8034 ), -1, -1 ); // isos
1176   mgr->setRule( action( 8034 ), clientOCCorVTK_AndSomeVisible + " and selcount>0 and isVisible", QtxPopupMgr::VisibleRule );
1177   mgr->insert( separator(), -1, -1 );     // -----------
1178   mgr->insert( action(  8035 ), -1, -1 ); // auto color
1179   mgr->setRule( action( 8035 ), autoColorPrefix + " and isAutoColor=false", QtxPopupMgr::VisibleRule );
1180   mgr->insert( action(  8036 ), -1, -1 ); // disable auto color
1181   mgr->setRule( action( 8036 ), autoColorPrefix + " and isAutoColor=true", QtxPopupMgr::VisibleRule );
1182   mgr->insert( separator(), -1, -1 );     // -----------
1183
1184
1185   QString canDisplay = "($component={'GEOM'}) and (selcount>0) and ({true} in $canBeDisplayed) ",
1186           onlyComponent = "((type='Component') and selcount=1)",
1187           rule = canDisplay + "and ((($type in {%1}) and( %2 )) or " + onlyComponent + ")",
1188           types = "'Shape' 'Group'";
1189
1190   mgr->insert( action(  216 ), -1, -1 ); // display
1191   mgr->setRule( action( 216 ), rule.arg( types ).arg( "not isVisible" ), QtxPopupMgr::VisibleRule );
1192
1193   mgr->insert( action(  215 ), -1, -1 ); // erase
1194   mgr->setRule( action( 215 ), rule.arg( types ).arg( "isVisible" ), QtxPopupMgr::VisibleRule );
1195
1196   mgr->insert( action(  214 ), -1, -1 ); // erase All
1197   mgr->setRule( action( 214 ), clientOCCorVTK, QtxPopupMgr::VisibleRule );
1198
1199   QString selectOnly = "(client='OCCViewer' or client='VTKViewer') and (selcount=0)";
1200
1201   int selectolnyId = mgr->insert( tr("MEN_SELECT_ONLY"), -1, -1);                //select only menu
1202   mgr->insert( action(2171), selectolnyId, -1);                                  //Vertex
1203   mgr->setRule(action(2171), selectOnly, QtxPopupMgr::VisibleRule);
1204   mgr->setRule(action(2171), selectOnly + " and selectionmode='VERTEX'", QtxPopupMgr::ToggleRule);
1205   mgr->insert( action(2172), selectolnyId, -1);                                  //Edge
1206   mgr->setRule(action(2172), selectOnly, QtxPopupMgr::VisibleRule);
1207   mgr->setRule(action(2172), selectOnly + " and selectionmode='EDGE'", QtxPopupMgr::ToggleRule);
1208   mgr->insert( action(2173), selectolnyId, -1);                                  //Wire
1209   mgr->setRule(action(2173), selectOnly, QtxPopupMgr::VisibleRule);
1210   mgr->setRule(action(2173), selectOnly + " and selectionmode='WIRE'", QtxPopupMgr::ToggleRule);
1211   mgr->insert( action(2174), selectolnyId, -1);                                  //Face
1212   mgr->setRule(action(2174), selectOnly, QtxPopupMgr::VisibleRule);
1213   mgr->setRule(action(2174), selectOnly + " and selectionmode='FACE'", QtxPopupMgr::ToggleRule);
1214   mgr->insert( action(2175), selectolnyId, -1);                                  //Shell
1215   mgr->setRule(action(2175), selectOnly, QtxPopupMgr::VisibleRule);
1216   mgr->setRule(action(2175), selectOnly + " and selectionmode='SHELL'", QtxPopupMgr::ToggleRule);
1217   mgr->insert( action(2176), selectolnyId, -1);                                  //Solid
1218   mgr->setRule(action(2176), selectOnly, QtxPopupMgr::VisibleRule);
1219   mgr->setRule(action(2176), selectOnly + " and selectionmode='SOLID'", QtxPopupMgr::ToggleRule);
1220   mgr->insert( action(2177), selectolnyId, -1);                                  //Compound
1221   mgr->setRule(action(2177), selectOnly, QtxPopupMgr::VisibleRule);
1222   mgr->setRule(action(2177), selectOnly + " and selectionmode='COMPOUND'", QtxPopupMgr::ToggleRule);
1223   mgr->insert( separator(), selectolnyId, -1);
1224   mgr->insert( action(2178), selectolnyId, -1);                                  //Clear selection filter
1225   mgr->setRule(action(2178), selectOnly, QtxPopupMgr::VisibleRule);
1226   mgr->setRule(action(2178), selectOnly + " and selectionmode='ALL'", QtxPopupMgr::ToggleRule);
1227   mgr->insert( action(  213 ), -1, -1 ); // display only
1228   mgr->setRule( action( 213 ), rule.arg( types ).arg( "true" ), QtxPopupMgr::VisibleRule );
1229   mgr->insert( separator(), -1, -1 );
1230
1231   mgr->hide( mgr->actionId( action( myEraseAll ) ) );
1232 }
1233
1234 //=======================================================================
1235 // function : GeometryGUI::activateModule()
1236 // purpose  : Called when GEOM module is activated
1237 //=======================================================================
1238 bool GeometryGUI::activateModule( SUIT_Study* study )
1239 {
1240   if ( CORBA::is_nil( myComponentGeom ) )
1241     return false;
1242
1243   bool res = SalomeApp_Module::activateModule( study );
1244
1245   if ( !res )
1246     return false;
1247
1248   setMenuShown( true );
1249   setToolShown( true );
1250
1251   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1252           this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1253
1254   // Reset actions accelerator keys
1255   //action(111)->setAccel(QKeySequence(CTRL + Key_I)); // Import
1256   //action(121)->setAccel(QKeySequence(CTRL + Key_E)); // Export
1257   action(111)->setEnabled( true ); // Import: CTRL + Key_I
1258   action(121)->setEnabled( true ); // Export: CTRL + Key_E
1259   action( 33)->setEnabled( true ); // Delete: Key_Delete
1260   action(901)->setEnabled( true ); // Rename: Key_F2
1261
1262   GUIMap::Iterator it;
1263   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1264     it.value()->activate( application()->desktop() );
1265
1266   LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1267
1268   SUIT_ViewManager* vm;
1269   ViewManagerList OCCViewManagers, VTKViewManagers;
1270
1271   application()->viewManagers( OCCViewer_Viewer::Type(), OCCViewManagers );
1272   QListIterator<SUIT_ViewManager*> itOCC( OCCViewManagers );
1273   while ( itOCC.hasNext() && (vm = itOCC.next()) )
1274     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1275
1276   application()->viewManagers( SVTK_Viewer::Type(), VTKViewManagers );
1277   QListIterator<SUIT_ViewManager*> itVTK( VTKViewManagers );
1278   while ( itVTK.hasNext() && (vm = itVTK.next()) )
1279     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1280
1281   //NPAL 19674
1282   SALOME_ListIO selected;
1283   sm->selectedObjects( selected );
1284   sm->clearSelected();
1285   
1286   // disable OCC selectors
1287   getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1288   QListIterator<GEOMGUI_OCCSelector*> itOCCSel( myOCCSelectors );
1289   while ( itOCCSel.hasNext() )
1290     if ( GEOMGUI_OCCSelector* sr = itOCCSel.next() )
1291       sr->setEnabled(true);
1292
1293   // disable VTK selectors
1294   getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1295   QListIterator<LightApp_VTKSelector*> itVTKSel( myVTKSelectors );
1296   while ( itVTKSel.hasNext() )
1297     if ( LightApp_VTKSelector* sr = itVTKSel.next() )
1298       sr->setEnabled(true);
1299
1300   sm->setSelectedObjects( selected, true );   //NPAL 19674
1301
1302   QMenu* viewMenu = menuMgr()->findMenu( STD_Application::MenuViewId );
1303   if ( viewMenu )
1304     connect( viewMenu, SIGNAL( aboutToShow() ), this, SLOT( onViewAboutToShow() ) );
1305
1306   return true;
1307 }
1308
1309
1310 //=======================================================================
1311 // function : GeometryGUI::deactivateModule()
1312 // purpose  : Called when GEOM module is deactivated
1313 //=======================================================================
1314 bool GeometryGUI::deactivateModule( SUIT_Study* study )
1315 {
1316   QMenu* viewMenu = menuMgr()->findMenu( STD_Application::MenuViewId );
1317   if ( viewMenu )
1318     disconnect( viewMenu, SIGNAL( aboutToShow() ), this, SLOT( onViewAboutToShow() ) );
1319
1320   setMenuShown( false );
1321   setToolShown( false );
1322
1323   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1324              this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1325
1326   EmitSignalCloseAllDialogs();
1327
1328   GUIMap::Iterator it;
1329   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1330     it.value()->deactivate();
1331
1332   // Unset actions accelerator keys
1333   //action(111)->setAccel(QKeySequence()); // Import
1334   //action(121)->setAccel(QKeySequence()); // Export
1335   action(111)->setEnabled( false ); // Import: CTRL + Key_I
1336   action(121)->setEnabled( false ); // Export: CTRL + Key_E
1337   action( 33)->setEnabled( false ); // Delete: Key_Delete
1338   action(901)->setEnabled( false ); // Rename: Key_F2
1339
1340   qDeleteAll(myOCCSelectors);
1341   myOCCSelectors.clear();
1342   getApp()->selectionMgr()->setEnabled( true, OCCViewer_Viewer::Type() );
1343
1344   qDeleteAll(myVTKSelectors);
1345   myVTKSelectors.clear();
1346   getApp()->selectionMgr()->setEnabled( true, SVTK_Viewer::Type() );
1347
1348   return SalomeApp_Module::deactivateModule( study );
1349 }
1350
1351 //=======================================================================
1352 // function : GeometryGUI::BuildPresentation()
1353 // purpose  :
1354 //=======================================================================
1355 void GeometryGUI::BuildPresentation( const Handle(SALOME_InteractiveObject)& io, SUIT_ViewWindow* win )
1356 {
1357   //GEOM_Displayer().Display( io, false, win );
1358 }
1359
1360 //=======================================================================
1361 // function : onWindowActivated()
1362 // purpose  : update menu items' status - disable non-OCC-viewer-compatible actions
1363 //=======================================================================
1364 void GeometryGUI::onWindowActivated( SUIT_ViewWindow* win )
1365 {
1366   if ( !win )
1367     return;
1368
1369   const bool ViewOCC = ( win->getViewManager()->getType() == OCCViewer_Viewer::Type() );
1370   //const bool ViewVTK = ( win->getViewManager()->getType() == SVTK_Viewer::Type() );
1371
1372   // disable non-OCC viewframe menu commands
1373 //  action( 404 )->setEnabled( ViewOCC ); // SKETCHER
1374   action( 603 )->setEnabled( ViewOCC ); // SuppressFace
1375   action( 604 )->setEnabled( ViewOCC ); // SuppressHole
1376   action( 606 )->setEnabled( ViewOCC ); // CloseContour
1377   action( 607 )->setEnabled( ViewOCC ); // RemoveInternalWires
1378   action( 608 )->setEnabled( ViewOCC ); // AddPointOnEdge
1379 //  action( 609 )->setEnabled( ViewOCC ); // Free boundaries
1380
1381   action( 800 )->setEnabled( ViewOCC ); // Create Group
1382   action( 801 )->setEnabled( ViewOCC ); // Edit Group
1383
1384   action( 9998 )->setEnabled( ViewOCC ); // MENU BLOCKS - MULTI-TRANSFORMATION
1385 }
1386
1387 void GeometryGUI::windows( QMap<int, int>& mappa ) const
1388 {
1389   mappa.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::LeftDockWidgetArea );
1390   mappa.insert( SalomeApp_Application::WT_PyConsole, Qt::BottomDockWidgetArea );
1391 }
1392
1393 void GeometryGUI::viewManagers( QStringList& lst ) const
1394 {
1395   lst.append( OCCViewer_Viewer::Type() );
1396 }
1397
1398 void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
1399 {
1400   if ( vm->getType() == OCCViewer_Viewer::Type() )
1401   {
1402     qDebug( "connect" );
1403     connect( vm, SIGNAL( keyPress  ( SUIT_ViewWindow*, QKeyEvent* ) ),
1404              this, SLOT( OnKeyPress( SUIT_ViewWindow*, QKeyEvent* ) ) );
1405     connect( vm, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
1406              this, SLOT( OnMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
1407     connect( vm, SIGNAL( mouseMove ( SUIT_ViewWindow*, QMouseEvent* ) ),
1408              this, SLOT( OnMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1409
1410
1411     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1412     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1413
1414     // disable OCC selectors
1415     getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1416     QListIterator<GEOMGUI_OCCSelector*> itOCCSel( myOCCSelectors );
1417     while ( itOCCSel.hasNext() )
1418       if ( GEOMGUI_OCCSelector* sr = itOCCSel.next() )
1419         sr->setEnabled(true);
1420   }
1421   else if ( vm->getType() == SVTK_Viewer::Type() )
1422   {
1423     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1424     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1425
1426     // disable VTK selectors
1427     getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1428     QListIterator<LightApp_VTKSelector*> itVTKSel( myVTKSelectors );
1429     while ( itVTKSel.hasNext() )
1430       if ( LightApp_VTKSelector* sr = itVTKSel.next() )
1431         sr->setEnabled(true);
1432   }
1433 }
1434
1435 void GeometryGUI::onViewManagerRemoved( SUIT_ViewManager* vm )
1436 {
1437   SUIT_ViewModel* viewer = vm->getViewModel();
1438   if ( vm->getType() == OCCViewer_Viewer::Type() )
1439   {
1440     QListIterator<GEOMGUI_OCCSelector*> itOCCSel( myOCCSelectors );
1441     while ( itOCCSel.hasNext() )
1442       if ( GEOMGUI_OCCSelector* sr = itOCCSel.next() )
1443         if ( sr->viewer() == viewer )
1444         {
1445           delete myOCCSelectors.takeAt( myOCCSelectors.indexOf( sr ) );
1446           break;
1447         }
1448   }
1449   if ( vm->getType() == SVTK_Viewer::Type() )
1450   {
1451     QListIterator<LightApp_VTKSelector*> itVTKSel( myVTKSelectors );
1452     while ( itVTKSel.hasNext() )
1453       if ( LightApp_VTKSelector* sr = itVTKSel.next() )
1454         if ( sr->viewer() == viewer )
1455         {
1456           delete myVTKSelectors.takeAt( myVTKSelectors.indexOf( sr ) );
1457           break;
1458         }
1459   }
1460 }
1461
1462 QString GeometryGUI::engineIOR() const
1463 {
1464   if ( !CORBA::is_nil( GetGeomGen() ) )
1465     return QString( getApp()->orb()->object_to_string( GetGeomGen() ) );
1466   return "";
1467 }
1468
1469 LightApp_Selection* GeometryGUI::createSelection() const
1470 {
1471   return new GEOMGUI_Selection();
1472 }
1473
1474 void GeometryGUI::contextMenuPopup( const QString& client, QMenu* menu, QString& title )
1475 {
1476   SalomeApp_Module::contextMenuPopup(client, menu, title);
1477
1478   SALOME_ListIO lst;
1479   getApp()->selectionMgr()->selectedObjects(lst);
1480   if (lst.Extent() < 1)
1481     return;
1482
1483   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(application()->activeStudy());
1484   _PTR(Study) study = appStudy->studyDS();
1485
1486   bool isImported = true;
1487   SALOME_ListIteratorOfListIO anIt (lst);
1488   for (; anIt.More() && isImported; anIt.Next()) {
1489     Handle(SALOME_InteractiveObject) io = anIt.Value();
1490     _PTR(SObject) aSObj = study->FindObjectID(io->getEntry());
1491     if (aSObj) {
1492       if (lst.Extent() == 1) {
1493         // Set context menu title
1494         if (client == "OCCViewer" || client == "VTKViewer")
1495           title = QString(aSObj->GetName().c_str());
1496       }
1497
1498       CORBA::Object_var anObj = GeometryGUI::ClientSObjectToObject(aSObj);
1499       GEOM::GEOM_Object_var aGeomObj = GEOM::GEOM_Object::_narrow(anObj);
1500       if (CORBA::is_nil(aGeomObj) || aGeomObj->GetType() != GEOM_IMPORT)
1501         isImported = false;
1502     }
1503   }
1504
1505   if (isImported) {
1506     menu->addAction(action(5029)); // Reload imported shape
1507   }
1508 }
1509
1510 void GeometryGUI::createPreferences()
1511 {
1512   int tabId = addPreference( tr( "PREF_TAB_SETTINGS" ) );
1513
1514   int genGroup = addPreference( tr( "PREF_GROUP_GENERAL" ), tabId );
1515   setPreferenceProperty( genGroup, "columns", 2 );
1516
1517   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), genGroup,
1518                                 LightApp_Preferences::Selector, 
1519                                 "Geometry", "display_mode" );
1520
1521   addPreference( tr( "PREF_SHADING_COLOR" ), genGroup,
1522                  LightApp_Preferences::Color, "Geometry", "shading_color" );
1523
1524   addPreference( tr( "PREF_WIREFRAME_COLOR" ), genGroup,
1525                  LightApp_Preferences::Color, "Geometry", "wireframe_color" );
1526
1527   addPreference( tr( "PREF_FREE_BOUND_COLOR" ), genGroup,
1528                  LightApp_Preferences::Color, "Geometry", "free_bound_color" );
1529
1530   addPreference( tr( "PREF_LINE_COLOR"), genGroup,
1531                  LightApp_Preferences::Color, "Geometry", "line_color" );
1532
1533   addPreference( tr( "PREF_POINT_COLOR"), genGroup,
1534                  LightApp_Preferences::Color, "Geometry", "point_color" );
1535
1536   addPreference( tr( "PREF_ISOS_COLOR" ), genGroup,
1537                  LightApp_Preferences::Color, "Geometry", "isos_color" );
1538
1539   int step = addPreference( tr( "PREF_STEP_VALUE" ), genGroup,
1540                             LightApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
1541
1542   int VertexGroup = addPreference( tr( "PREF_GROUP_VERTEX" ), tabId );
1543   setPreferenceProperty( VertexGroup, "columns", 2 );
1544
1545   int typeOfMarker = addPreference( tr( "PREF_TYPE_OF_MARKER" ), VertexGroup,
1546                                     LightApp_Preferences::Selector, "Geometry", "type_of_marker" );
1547
1548   int markerScale = addPreference( tr( "PREF_MARKER_SCALE" ), VertexGroup,
1549                                    LightApp_Preferences::DblSpin, "Geometry", "marker_scale" );
1550
1551   // Set property for default display mode
1552   QStringList aModesList;
1553   aModesList.append( tr("MEN_WIREFRAME") );
1554   aModesList.append( tr("MEN_SHADING") );
1555
1556   QList<QVariant> anIndexesList;
1557   anIndexesList.append(0);
1558   anIndexesList.append(1);
1559
1560   setPreferenceProperty( dispmode, "strings", aModesList );
1561   setPreferenceProperty( dispmode, "indexes", anIndexesList );
1562
1563   // Set property for step value for spinboxes
1564   setPreferenceProperty( step, "min", 1 );
1565   setPreferenceProperty( step, "max", 10000 );
1566   setPreferenceProperty( step, "precision", 3 );
1567
1568   // Set property for type of vertex marker
1569   QStringList aTypeOfMarkerList;
1570   QList<QVariant> anTypeOfMarkerIndexesList;
1571
1572   aTypeOfMarkerList.append( tr("TOM_PLUS") );
1573   anTypeOfMarkerIndexesList.append(Aspect_TOM_PLUS);
1574
1575   aTypeOfMarkerList.append( tr("TOM_POINT") );
1576   anTypeOfMarkerIndexesList.append(Aspect_TOM_POINT);
1577
1578   aTypeOfMarkerList.append( tr("TOM_STAR") );
1579   anTypeOfMarkerIndexesList.append(Aspect_TOM_STAR);
1580
1581   aTypeOfMarkerList.append( tr("TOM_O") );
1582   anTypeOfMarkerIndexesList.append(Aspect_TOM_O);
1583
1584   aTypeOfMarkerList.append( tr("TOM_X") );
1585   anTypeOfMarkerIndexesList.append(Aspect_TOM_X);
1586
1587   aTypeOfMarkerList.append( tr("TOM_O_POINT") );
1588   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_POINT);
1589
1590   aTypeOfMarkerList.append( tr("TOM_O_PLUS") );
1591   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_PLUS);
1592
1593   aTypeOfMarkerList.append( tr("TOM_O_STAR") );
1594   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_STAR);
1595
1596   aTypeOfMarkerList.append( tr("TOM_O_X") );
1597   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_X);
1598
1599
1600   setPreferenceProperty( typeOfMarker, "strings", aTypeOfMarkerList );
1601   setPreferenceProperty( typeOfMarker, "indexes", anTypeOfMarkerIndexesList );
1602
1603   // Set property for Vertex Marker scale
1604   setPreferenceProperty( markerScale, "min", 1. );
1605   setPreferenceProperty( markerScale, "max", 7. );
1606   setPreferenceProperty( markerScale, "precision", 0.01 );
1607   setPreferenceProperty( markerScale, "step", 0.5 );
1608
1609 }
1610
1611 void GeometryGUI::preferencesChanged( const QString& section, const QString& param )
1612 {
1613   if (section == "Geometry") {
1614     SUIT_ResourceMgr* aResourceMgr = SUIT_Session::session()->resourceMgr();
1615     if (param == QString("SettingsGeomStep")) {
1616       double spin_step = aResourceMgr->doubleValue(section, param, 100.);
1617       EmitSignalDefaultStepValueChanged(spin_step);
1618     }
1619   }
1620 }
1621
1622 LightApp_Displayer* GeometryGUI::displayer()
1623 {
1624   if( !myDisplayer )
1625     myDisplayer = new GEOM_Displayer( dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
1626   return myDisplayer;
1627 }
1628
1629 void GeometryGUI::setLocalSelectionMode(const int mode)
1630 {
1631   myLocalSelectionMode = mode;
1632 }
1633 int GeometryGUI::getLocalSelectionMode() const
1634 {
1635   return myLocalSelectionMode;
1636 }
1637
1638 const char gSeparator = '_'; // character used to separate parameter names
1639 const char gDigitsSep = ':'; // character used to separate numeric parameter values (color = r:g:b)
1640
1641 /*!
1642  * \brief Store visual parameters
1643  *
1644  * This method is called just before the study document is saved.
1645  * Store visual parameters in AttributeParameter attribue(s)
1646  */
1647 void GeometryGUI::storeVisualParameters (int savePoint)
1648 {
1649   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(application()->activeStudy());
1650   if (!appStudy || !appStudy->studyDS())
1651     return;
1652   _PTR(Study) studyDS = appStudy->studyDS();
1653
1654   // componentName is used for encoding of entries when storing them in IParameters
1655   std::string componentName = myComponentGeom->ComponentDataType();
1656   //_PTR(SComponent) aSComponent = studyDS->FindComponent("GEOM");
1657   //if (!aSComponent) return;
1658
1659   // IParameters
1660   _PTR(AttributeParameter) ap = studyDS->GetModuleParameters("Interface Applicative",
1661                                                              componentName.c_str(),
1662                                                              savePoint);
1663   _PTR(IParameters) ip = ClientFactory::getIParameters(ap);
1664
1665   // viewers counters are used for storing view_numbers in IParameters
1666   int vtkViewers(0), occViewers(0);
1667
1668   QList<SUIT_ViewManager*> lst;
1669   QList<SUIT_ViewManager*>::Iterator it;
1670
1671   // main cycle to store parameters of displayed objects
1672   lst.clear();
1673   vtkViewers = occViewers = 0;
1674   getApp()->viewManagers(lst);
1675   for (it = lst.begin(); it != lst.end(); it++)
1676   {
1677     SUIT_ViewManager* vman = *it;
1678     QString vType = vman->getType();
1679
1680     // saving VTK actors properties
1681     if (vType == SVTK_Viewer::Type())
1682     {
1683       QVector<SUIT_ViewWindow*> views = vman->getViews();
1684       for (int i = 0, iEnd = vman->getViewsCount(); i < iEnd; i++)
1685       {
1686         if (SVTK_ViewWindow* vtkView = dynamic_cast<SVTK_ViewWindow*>(views[i]))
1687         {
1688           vtkActorCollection* allActors = vtkView->getRenderer()->GetActors();
1689           allActors->InitTraversal();
1690           while (vtkActor* actor = allActors->GetNextActor())
1691           {
1692             if (actor->GetVisibility()) // store only visible actors
1693             {
1694               GEOM_Actor* aGeomActor = 0;
1695               if (actor->IsA("GEOM_Actor"))
1696                 aGeomActor = GEOM_Actor::SafeDownCast(actor);
1697               if (aGeomActor && aGeomActor->hasIO())
1698               {
1699                 Handle(SALOME_InteractiveObject) io = aGeomActor->getIO();
1700                 if (io->hasEntry())
1701                 {
1702                   // entry is "encoded" = it does NOT contain component adress, since it is a
1703                   // subject to change on next component loading
1704                   std::string entry = ip->encodeEntry(io->getEntry(), componentName);
1705
1706                   std::string param, occParam = vType.toLatin1().data();
1707                   occParam += gSeparator;
1708                   occParam += QString::number(vtkViewers).toLatin1().data();
1709                   occParam += gSeparator;
1710
1711                   param = occParam + "Visibility";
1712                   ip->setParameter(entry, param, "On");
1713
1714                   param = occParam + "DisplayMode";
1715                   ip->setParameter(entry, param, QString::number
1716                                    (aGeomActor->getDisplayMode()).toLatin1().data());
1717
1718                   vtkFloatingPointType r, g, b;
1719                   aGeomActor->GetColor(r, g, b);
1720                   QString colorStr = QString::number(r);
1721                   colorStr += gDigitsSep; colorStr += QString::number(g);
1722                   colorStr += gDigitsSep; colorStr += QString::number(b);
1723                   param = occParam + "Color";
1724                   ip->setParameter(entry, param, colorStr.toLatin1().data());
1725
1726                   param = occParam + "Opacity";
1727                   ip->setParameter(entry, param, QString::number(aGeomActor->GetOpacity()).toLatin1().data());
1728
1729                   int nbUIso(0), nbVIso(0);
1730                   aGeomActor->GetNbIsos(nbUIso,nbVIso);
1731                   QString isosStr = QString::number(nbUIso);
1732                   isosStr += gDigitsSep;
1733                   isosStr += QString::number(nbVIso);
1734                   param = occParam + "Isos";
1735                   ip->setParameter(entry, param, isosStr.toLatin1().data());
1736                 } // if (io->hasEntry())
1737               } // GEOM_Actor && hasIO
1738             } // isVisible
1739           } // while.. actors traversal
1740         } // if (vtkView)
1741       } // for (views)
1742       vtkViewers++;
1743     } // if (SVTK view model)
1744     else if (vType == SOCC_Viewer::Type()) // processing OCC viewers
1745     {
1746       QVector<SUIT_ViewWindow*> views = vman->getViews();
1747       for (int i = 0, iEnd = vman->getViewsCount(); i < iEnd; i++)
1748       {
1749         SOCC_ViewWindow* occView = dynamic_cast<SOCC_ViewWindow*>(views[i]);
1750         if (occView)
1751         {
1752           //Handle(AIS_InteractiveContext) ic =
1753           //  ((OCCViewer_Viewer*)(occView->getViewManager()->getViewModel()))->getAISContext();
1754           OCCViewer_Viewer* viewModel = (OCCViewer_Viewer*)(vman->getViewModel());
1755           //OCCViewer_Viewer* viewModel = ((OCCViewer_ViewManager*)vman)->getOCCViewer();
1756           Handle(AIS_InteractiveContext) ic = viewModel->getAISContext();
1757
1758           AIS_ListOfInteractive aList;
1759           ic->DisplayedObjects(aList);
1760
1761           AIS_ListIteratorOfListOfInteractive ite (aList);
1762           for (; ite.More(); ite.Next())
1763           {
1764             if (ite.Value()->IsInstance(STANDARD_TYPE(GEOM_AISShape)))
1765             {
1766               Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(ite.Value());
1767               if (aSh->hasIO())
1768               {
1769                 Handle(SALOME_InteractiveObject) io =
1770                   Handle(SALOME_InteractiveObject)::DownCast(aSh->getIO());
1771                 if (io->hasEntry())
1772                 {
1773                   // entry is "encoded": it does NOT contain component adress,
1774                   // since it is a subject to change on next component loading
1775                   std::string entry = ip->encodeEntry(io->getEntry(), componentName);
1776
1777                   std::string param, occParam = vType.toLatin1().data();
1778                   occParam += gSeparator;
1779                   occParam += QString::number(occViewers).toLatin1().data();
1780                   occParam += gSeparator;
1781
1782                   // Visibility
1783                   param = occParam + "Visibility";
1784                   ip->setParameter(entry, param, "On");
1785
1786                   // DisplayMode
1787                   param = occParam + "DisplayMode";
1788                   int dm = aSh->DisplayMode();
1789                   ip->setParameter(entry, param, QString::number(dm).toLatin1().data());
1790
1791                   // Color
1792                   // is a property of GEOM_Object, it is stored by GEOM engine
1793
1794                   // Transparency
1795                   param = occParam + "Transparency";
1796                   ip->setParameter(entry, param, QString::number(aSh->Transparency()).toLatin1().data());
1797
1798                   // Isos
1799                   Handle(AIS_Drawer) aDrawer = aSh->Attributes();
1800                   int nbUIso = aDrawer->UIsoAspect()->Number();
1801                   int nbVIso = aDrawer->VIsoAspect()->Number();
1802                   QString isosStr = QString::number(nbUIso);
1803                   isosStr += gDigitsSep;
1804                   isosStr += QString::number(nbVIso);
1805                   param = occParam + "Isos";
1806                   ip->setParameter(entry, param, isosStr.toLatin1().data());
1807                 } // if (io->hasEntry())
1808               } // if (io)
1809             } // if (GEOM_AISShape)
1810           } // for (AIS_ListOfInteractive)
1811         } // if ( occView )
1812       } // for ( views )
1813       occViewers++;
1814     } // if (SOCC view model)
1815     else
1816     {
1817       // unknown viewer type
1818     }
1819   } // for (viewManagers)
1820 }
1821
1822 /*!
1823  * \brief Restore visual parameters
1824  *
1825  * This method is called after the study document is opened.
1826  * Restore visual parameters from AttributeParameter attribue(s)
1827  */
1828 void GeometryGUI::restoreVisualParameters (int savePoint)
1829 {
1830   SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(application()->activeStudy());
1831   if (!appStudy || !appStudy->studyDS())
1832     return;
1833   _PTR(Study) studyDS = appStudy->studyDS();
1834
1835   // componentName is used for encoding of entries when storing them in IParameters
1836   std::string componentName = myComponentGeom->ComponentDataType();
1837   //_PTR(SComponent) aSComponent = studyDS->FindComponent("GEOM");
1838   //if (!aSComponent) return;
1839
1840   // IParameters
1841   _PTR(AttributeParameter) ap = studyDS->GetModuleParameters("Interface Applicative",
1842                                                              componentName.c_str(),
1843                                                              savePoint);
1844   _PTR(IParameters) ip = ClientFactory::getIParameters(ap);
1845
1846   std::vector<std::string> entries = ip->getEntries();
1847
1848   for (std::vector<std::string>::iterator entIt = entries.begin(); entIt != entries.end(); ++entIt)
1849   {
1850     // entry is a normal entry - it should be "decoded" (setting base adress of component)
1851     QString entry (ip->decodeEntry(*entIt).c_str());
1852
1853     // Check that the entry corresponds to a real object in the Study
1854     // as the object may be deleted or modified after the visual state is saved.
1855     _PTR(SObject) so = studyDS->FindObjectID(entry.toLatin1().data());
1856     if (!so) continue; //Skip the not existent entry
1857
1858     std::vector<std::string> paramNames = ip->getAllParameterNames( *entIt );
1859     std::vector<std::string> paramValues = ip->getAllParameterValues( *entIt );
1860
1861     std::vector<std::string>::iterator namesIt = paramNames.begin();
1862     std::vector<std::string>::iterator valuesIt = paramValues.begin();
1863
1864     // actors are stored in a map after displaying of them for
1865     // quicker access in the future: map < viewID to actor >
1866     NCollection_DataMap<int, GEOM_Actor*          > vtkActors;
1867     NCollection_DataMap<int, Handle(GEOM_AISShape)> occActors;
1868
1869     for (; namesIt != paramNames.end(); ++namesIt, ++valuesIt)
1870     {
1871       // visual parameters are stored in strings as follows: ViewerType_ViewIndex_ParamName.
1872       // '_' is used as separator and should not be used in viewer type or parameter names.
1873       QStringList lst = QString((*namesIt).c_str()).split(gSeparator, QString::SkipEmptyParts);
1874       if (lst.size() != 3)
1875         continue;
1876
1877       QString viewerTypStr = lst[0];
1878       QString viewIndexStr = lst[1];
1879       QString paramNameStr = lst[2];
1880
1881       bool ok;
1882       int viewIndex = viewIndexStr.toUInt(&ok);
1883       if (!ok) // bad conversion of view index to integer
1884         continue;
1885
1886       // viewers
1887       if (viewerTypStr == SVTK_Viewer::Type())
1888       {
1889         GEOM_Actor* vActor = 0;
1890         if (vtkActors.IsBound(viewIndex))
1891           vActor = vtkActors.Find(viewIndex);
1892
1893         if (paramNameStr == "Visibility")
1894         {
1895           if (!vActor && displayer())
1896           {
1897             QList<SUIT_ViewManager*> lst;
1898             getApp()->viewManagers(viewerTypStr, lst);
1899
1900             // SVTK ViewManager always has 1 ViewWindow, so view index is index of view manager
1901             if (viewIndex >= 0 && viewIndex < lst.count()) {
1902               SUIT_ViewManager* vman = lst.at(viewIndex);
1903               SUIT_ViewModel* vmodel = vman->getViewModel();
1904               // SVTK view model can be casted to SALOME_View
1905               displayer()->Display(entry, true, dynamic_cast<SALOME_View*>(vmodel));
1906
1907               // store displayed actor in a temporary map for quicker
1908               // access later when restoring other parameters
1909               SVTK_ViewWindow* vtkView = (SVTK_ViewWindow*) vman->getActiveView();
1910               vtkRenderer* Renderer = vtkView->getRenderer();
1911               vtkActorCollection* theActors = Renderer->GetActors();
1912               theActors->InitTraversal();
1913               bool isFound = false;
1914               vtkActor *ac = theActors->GetNextActor();
1915               for (; ac != NULL && !isFound; ac = theActors->GetNextActor()) {
1916                 if (ac->IsA("GEOM_Actor")) {
1917                   GEOM_Actor* aGeomAc = GEOM_Actor::SafeDownCast(ac);
1918                   if (aGeomAc->hasIO()) {
1919                     Handle(SALOME_InteractiveObject) io =
1920                       Handle(SALOME_InteractiveObject)::DownCast(aGeomAc->getIO());
1921                     if (io->hasEntry() && strcmp(io->getEntry(), entry.toLatin1().data()) == 0) {
1922                       isFound = true;
1923                       vtkActors.Bind(viewIndex, aGeomAc);
1924                     }
1925                   }
1926                 }
1927               }
1928             }
1929           }
1930         } // if (paramNameStr == "Visibility")
1931         else
1932         {
1933           // the rest properties "work" with GEOM_Actor
1934           if (vActor)
1935           {
1936             QString val ((*valuesIt).c_str());
1937
1938             if (paramNameStr == "DisplayMode") {
1939               vActor->setDisplayMode(val.toInt());
1940             }
1941             else if (paramNameStr == "Color") {
1942               QStringList colors = val.split(gDigitsSep, QString::SkipEmptyParts);
1943               if (colors.count() == 3)
1944                 vActor->SetColor(colors[0].toFloat(), colors[1].toFloat(), colors[2].toFloat());
1945             }
1946             else if (paramNameStr == "Opacity") {
1947               vActor->SetOpacity(val.toFloat());
1948             }
1949             else if (paramNameStr == "Isos") {
1950               QStringList isos = val.split(gDigitsSep, QString::SkipEmptyParts);
1951               if (isos.count() == 2) {
1952                 int aIsos[2] = {isos[0].toInt(), isos[1].toInt()};
1953                 vActor->SetNbIsos(aIsos);
1954               }
1955             }
1956           }
1957         } // other parameters than Visibility
1958       }
1959       else if (viewerTypStr == SOCC_Viewer::Type())
1960       {
1961         //Handle(AIS_InteractiveObject) occActor;
1962         Handle(GEOM_AISShape) occActor;
1963         if (occActors.IsBound(viewIndex))
1964           occActor = occActors.Find(viewIndex);
1965
1966         // ViewModel and InteractiveContext
1967         SOCC_Viewer* occVModel = 0;
1968         Handle(AIS_InteractiveContext) ic;
1969
1970         QList<SUIT_ViewManager*> lst;
1971         getApp()->viewManagers(viewerTypStr, lst);
1972
1973         // SOCC ViewManager always has 1 ViewWindow, so view index is index of view manager
1974         if (viewIndex >= 0 && viewIndex < lst.count()) {
1975           SUIT_ViewManager* vman = lst.at(viewIndex);
1976           SUIT_ViewModel* vmodel = vman->getViewModel();
1977           occVModel = dynamic_cast<SOCC_Viewer*>(vmodel);
1978           if (occVModel)
1979             ic = occVModel->getAISContext();
1980         }
1981
1982         if (ic.IsNull())
1983           continue;
1984
1985         if (paramNameStr == "Visibility")
1986         {
1987           if (occActor.IsNull() && displayer())
1988           {
1989             displayer()->Display(entry, true, occVModel);
1990
1991             // store displayed actor in a temporary map for quicker
1992             // access later when restoring other parameters
1993             AIS_ListOfInteractive aList;
1994             ic->DisplayedObjects(aList);
1995             bool isFound = false;
1996             AIS_ListIteratorOfListOfInteractive ite (aList);
1997             for (; ite.More() && !isFound; ite.Next()) {
1998               if (ite.Value()->IsInstance(STANDARD_TYPE(GEOM_AISShape))) {
1999                 Handle(GEOM_AISShape) aSh = Handle(GEOM_AISShape)::DownCast(ite.Value());
2000                 if (aSh->hasIO()) {
2001                   Handle(SALOME_InteractiveObject) io =
2002                     Handle(SALOME_InteractiveObject)::DownCast(aSh->getIO());
2003                   if (io->hasEntry() && strcmp(io->getEntry(), entry.toLatin1().data()) == 0) {
2004                     isFound = true;
2005                     occActors.Bind(viewIndex, aSh);
2006                   }
2007                 }
2008               }
2009             }
2010           }
2011         } // if (paramNameStr == "Visibility")
2012         else
2013         {
2014           // the rest properties "work" with GEOM_AISShape
2015           if (!occActor.IsNull())
2016           {
2017             QString val ((*valuesIt).c_str());
2018
2019             if (paramNameStr == "DisplayMode") {
2020               ic->SetDisplayMode(occActor, AIS_DisplayMode(val.toInt()), false);
2021               //ic->Redisplay(occActor, Standard_False, Standard_True);
2022             }
2023             // Color is restored by the GEOM engine
2024             else if (paramNameStr == "Transparency") {
2025               ic->SetTransparency(occActor, val.toFloat(), false);
2026               ic->Redisplay(occActor, Standard_False, Standard_True);
2027             }
2028             else if (paramNameStr == "Isos") {
2029               QStringList isos = val.split(gDigitsSep, QString::SkipEmptyParts);
2030               if (isos.count() == 2) {
2031                 Handle(AIS_Drawer) aDrawer = occActor->Attributes();
2032                 int nbUIso = isos[0].toInt();
2033                 int nbVIso = isos[1].toInt();
2034                 Handle(Prs3d_IsoAspect) uIsoAspect = aDrawer->UIsoAspect();
2035                 Handle(Prs3d_IsoAspect) vIsoAspect = aDrawer->VIsoAspect();
2036                 uIsoAspect->SetNumber(nbUIso);
2037                 vIsoAspect->SetNumber(nbVIso);
2038                 aDrawer->SetUIsoAspect(uIsoAspect);
2039                 aDrawer->SetVIsoAspect(vIsoAspect);
2040                 ic->SetLocalAttributes(occActor, aDrawer);
2041                 ic->Redisplay(occActor);
2042               }
2043             }
2044           }
2045         } // other parameters than Visibility
2046       }
2047       else
2048       {
2049         // unknown viewer type
2050       }
2051     } // for names/parameters iterator
2052   } // for entries iterator
2053
2054   // update all VTK and OCC views
2055   QList<SUIT_ViewManager*> lst;
2056   getApp()->viewManagers(lst);
2057   for (QList<SUIT_ViewManager*>::Iterator it = lst.begin(); it != lst.end(); it++) {
2058     SUIT_ViewModel* vmodel = (*it)->getViewModel();
2059     if (!vmodel)
2060       continue;
2061     if (vmodel->getType() == SVTK_Viewer::Type()) {
2062       SVTK_ViewWindow* vtkView = (SVTK_ViewWindow*) (*it)->getActiveView();
2063       vtkView->getRenderer()->ResetCameraClippingRange();
2064       vtkView->Repaint();
2065     }
2066     else if (vmodel->getType() == SOCC_Viewer::Type()) {
2067       //SOCC_ViewWindow* occView = (SOCC_ViewWindow*) (*it)->getActiveView();
2068       SALOME_View* occVMod = dynamic_cast<SALOME_View*>(vmodel);
2069       if (occVMod)
2070         occVMod->Repaint();
2071     }
2072   }
2073 }
2074
2075 void GeometryGUI::onViewAboutToShow()
2076 {
2077   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
2078   QAction* a = action( 218 );
2079   if ( window ) {
2080     a->setEnabled(true);
2081     bool vmode = window->getCustomData("VectorsMode").toBool();
2082     a->setText ( vmode == 1 ? tr( "MEN_VECTOR_MODE_OFF" ) : tr("MEN_VECTOR_MODE_ON") );
2083   } else {
2084     a->setText ( tr("MEN_VECTOR_MODE_ON") );
2085     a->setEnabled(false);
2086   }
2087 }