Salome HOME
a3d1796f025ced2bdab973dabe35190c981cf865
[modules/geom.git] / src / GEOMGUI / GeometryGUI.cxx
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : GeometryGUI.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "GeometryGUI.h"
30 #include "GEOMGUI_OCCSelector.h"
31 #include "GEOMGUI_Selection.h"
32 #include "GEOM_Displayer.h"
33
34 #include <SUIT_MessageBox.h>
35 #include <SUIT_ResourceMgr.h>
36 #include <SUIT_Session.h>
37 #include <SUIT_ViewManager.h>
38
39 #include <OCCViewer_ViewWindow.h>
40 #include <OCCViewer_ViewPort3d.h>
41 #include <OCCViewer_ViewModel.h>
42 #include <OCCViewer_ViewManager.h>
43
44 #include <SVTK_ViewWindow.h>
45 #include <SVTK_RenderWindowInteractor.h>
46 #include <SVTK_InteractorStyle.h>
47 #include <SVTK_ViewModel.h>
48 #include <SVTK_ViewManager.h>
49
50 #include <SalomeApp_Application.h>
51 #include <LightApp_SelectionMgr.h>
52 #include <LightApp_VTKSelector.h>
53 #include <SalomeApp_Study.h>
54 #include <LightApp_Preferences.h>
55 #include <SALOME_LifeCycleCORBA.hxx>
56 #include <SALOME_ListIO.hxx>
57
58 // External includes
59 #include <qfileinfo.h>
60 #include <qpainter.h>
61
62 #include <Prs3d_Drawer.hxx>
63 #include <Prs3d_IsoAspect.hxx>
64 #include <OSD_SharedLibrary.hxx>
65
66 #include <utilities.h>
67
68 #include <vtkCamera.h>
69 #include <vtkRenderer.h>
70
71
72 extern "C" {
73   Standard_EXPORT CAM_Module* createModule() {
74     return new GeometryGUI();
75   }
76 }
77
78
79
80 GEOM::GEOM_Gen_var GeometryGUI::myComponentGeom = GEOM::GEOM_Gen::_nil();
81
82 GEOM::GEOM_Gen_var GeometryGUI::GetGeomGen()
83 {
84   // Bug 12290: exception in Mesh GUI on GEOMBase::GetShape() if Geometry GUI hasn't been loaded
85   if (CORBA::is_nil(myComponentGeom))
86     InitGeomGen();
87   return GeometryGUI::myComponentGeom;
88 }
89
90 bool GeometryGUI::InitGeomGen()
91 {
92   GeometryGUI aGG;
93   if( CORBA::is_nil( myComponentGeom ) ) return false;
94   return true;
95 }
96
97 //=======================================================================
98 // function : ClientSObjectToObject
99 // purpose  : 
100 //=======================================================================
101 CORBA::Object_var GeometryGUI::ClientSObjectToObject (_PTR(SObject) theSObject)
102 {
103   _PTR(GenericAttribute) anAttr;
104   CORBA::Object_var anObj;
105   try {
106     std::string aValue = theSObject->GetIOR();
107     if (strcmp(aValue.c_str(), "") != 0) {
108       CORBA::ORB_ptr anORB = SalomeApp_Application::orb();
109       anObj = anORB->string_to_object(aValue.c_str());
110     }
111   } catch(...) {
112     INFOS("ClientSObjectToObject - Unknown exception was occured!!!");
113   }
114   return anObj._retn();
115 }
116
117 //=======================================================================
118 // function : ClientStudyToStudy
119 // purpose  : 
120 //=======================================================================
121 SALOMEDS::Study_var GeometryGUI::ClientStudyToStudy (_PTR(Study) theStudy)
122 {
123   SALOME_NamingService *aNamingService = SalomeApp_Application::namingService();
124   CORBA::Object_var aSMObject = aNamingService->Resolve("/myStudyManager");
125   SALOMEDS::StudyManager_var aStudyManager = SALOMEDS::StudyManager::_narrow(aSMObject);
126   int aStudyID = theStudy->StudyId();
127   SALOMEDS::Study_var aDSStudy = aStudyManager->GetStudyByID(aStudyID);
128   return aDSStudy._retn();
129 }
130
131 //=================================================================================
132 // class   : CustomItem
133 // purpose : Set Font to a text.
134 //=================================================================================
135 class CustomItem : public QCustomMenuItem
136 {
137 public:
138   CustomItem(const QString& s, const QFont& f) : myString(s), myFont(f) {}
139   ~CustomItem() {}
140
141   void paint(QPainter* p, const QColorGroup& cg, bool act, bool /*enabled*/, int x, int y, int w, int h)
142   {
143     p->save();
144     p->fillRect( x, y, w, h, act ? cg.highlight() : cg.mid() );
145     p->setPen( act ? cg.highlightedText() : cg.buttonText() );
146     p->setFont( myFont );
147     p->drawText( x, y, w, h, AlignHCenter | AlignVCenter | ShowPrefix | DontClip | SingleLine, myString );
148     p->restore();
149   }
150
151   QSize sizeHint()
152   {
153     return QFontMetrics( myFont ).size( AlignHCenter | AlignVCenter | ShowPrefix | DontClip | SingleLine, myString );
154   }
155
156   bool fullSpan() const
157   {
158     return true;
159   }
160
161 private:
162   QString myString;
163   QFont   myFont;
164 };
165
166 //=======================================================================
167 // function : GeometryGUI::GeometryGUI()
168 // purpose  : Constructor
169 //=======================================================================
170 GeometryGUI::GeometryGUI() :
171   SalomeApp_Module( "GEOM" )
172 {
173   if ( CORBA::is_nil( myComponentGeom ) )
174   { 
175     SALOME_LifeCycleCORBA* ls = new SALOME_LifeCycleCORBA( getApp()->namingService() );
176     Engines::Component_var comp = ls->FindOrLoad_Component( "FactoryServer", "GEOM" );
177     myComponentGeom  = GEOM::GEOM_Gen::_narrow( comp );
178   }
179   
180   myState           = -1;
181   myActiveDialogBox = 0;
182   myFatherior       = "";
183
184   gp_Pnt origin = gp_Pnt(0., 0., 0.);
185   gp_Dir direction = gp_Dir(0., 0., 1.);
186   myWorkingPlane = gp_Ax3(origin, direction);
187
188   myOCCSelectors.setAutoDelete( true );
189   myVTKSelectors.setAutoDelete( true );
190
191   myDisplayer = 0;
192 }
193
194 //=======================================================================
195 // function : GeometryGUI::~GeometryGUI()
196 // purpose  : Destructor
197 //=======================================================================
198 GeometryGUI::~GeometryGUI()
199 {
200 }
201
202 //=======================================================================
203 // function : GeometryGUI::getLibrary()
204 // purpose  : get or load GUI library by name [ internal ]
205 //=======================================================================
206 typedef GEOMGUI* (*LibraryGUI)( GeometryGUI* );
207 GEOMGUI* GeometryGUI::getLibrary( const QString& libraryName )
208 {
209   if ( !myGUIMap.contains( libraryName ) ) {
210     // try to load library if it is not loaded yet
211     QCString libs;
212 #ifndef WNT
213     if( ( libs = getenv( "LD_LIBRARY_PATH" ) ) ) {
214           QStringList dirList = QStringList::split( ":", libs, false ); // skip empty entries
215 #else
216         if( ( libs = getenv( "PATH" ) ) ) {
217           QStringList dirList = QStringList::split( ";", libs, false ); // 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( (char*)fi.fileName().latin1() );
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::error1( 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 == 31   ||  // MENU EDIT - COPY
372       id == 33   ||  // MENU EDIT - DELETE
373       id == 411  ||  // MENU SETTINGS - ADD IN STUDY
374       id == 412  ||  // MENU SETTINGS - SHADING COLOR
375       id == 413  ||  // MENU SETTINGS - ISOS
376       id == 414  ||  // MENU SETTINGS - STEP VALUE FOR SPIN BOXES
377       id == 5103 ||  // MENU TOOLS - CHECK GEOMETRY
378       id == 8032 ||  // POPUP VIEWER - COLOR
379       id == 8033 ||  // POPUP VIEWER - TRANSPARENCY
380       id == 8034 ||  // POPUP VIEWER - ISOS
381       id == 804  ||  // POPUP VIEWER - ADD IN STUDY
382       id == 901  ||  // OBJECT BROWSER - RENAME
383       id == 9024 ) { // OBJECT BROWSER - OPEN
384     //cout << "id " << id << " received" << endl;
385 #ifndef WNT
386         library = getLibrary( "libGEOMToolsGUI.so" );
387 #else
388         library = getLibrary( "GEOMToolsGUI.dll" );
389 #endif
390   }
391   else if( id == 211  ||  // MENU VIEW - WIREFRAME/SHADING
392            id == 212  ||  // MENU VIEW - DISPLAY ALL
393            id == 213  ||  // MENU VIEW - DISPLAY ONLY
394            id == 214  ||  // MENU VIEW - ERASE ALL
395            id == 215  ||  // MENU VIEW - ERASE
396            id == 216  ||  // MENU VIEW - DISPLAY
397            id == 80311 ||  // POPUP VIEWER - WIREFRAME
398            id == 80312 ) { // POPUP VIEWER - SHADING
399 #ifndef WNT
400         library = getLibrary( "libDisplayGUI.so" );
401 #else
402         library = getLibrary( "DisplayGUI.dll" );
403 #endif
404   }
405   else if( id == 4011 ||  // MENU BASIC - POINT
406            id == 4012 ||  // MENU BASIC - LINE
407            id == 4013 ||  // MENU BASIC - CIRCLE
408            id == 4014 ||  // MENU BASIC - ELLIPSE
409            id == 4015 ||  // MENU BASIC - ARC
410            id == 4016 ||  // MENU BASIC - VECTOR
411            id == 4017 ||  // MENU BASIC - PLANE
412            id == 4018 ||  // MENU BASIC - WPLANE
413            id == 4019 ||  // MENU BASIC - CURVE
414            id == 4020 ) { // MENU BASIC - REPAIR
415 #ifndef WNT
416         library = getLibrary( "libBasicGUI.so" );
417 #else
418         library = getLibrary( "BasicGUI.dll" );
419 #endif
420   }
421   else if( id == 4021 ||  // MENU PRIMITIVE - BOX
422            id == 4022 ||  // MENU PRIMITIVE - CYLINDER
423            id == 4023 ||  // MENU PRIMITIVE - SPHERE
424            id == 4024 ||  // MENU PRIMITIVE - TORUS
425            id == 4025 ) { // MENU PRIMITIVE - CONE
426 #ifndef WNT
427         library = getLibrary( "libPrimitiveGUI.so" );
428 #else
429         library = getLibrary( "PrimitiveGUI.dll" );
430 #endif
431   }
432   else if( id == 4031 ||  // MENU GENERATION - PRISM
433            id == 4032 ||  // MENU GENERATION - REVOLUTION
434            id == 4033 ||  // MENU GENERATION - FILLING
435            id == 4034 ) { // MENU GENERATION - PIPE
436 #ifndef WNT
437         library = getLibrary( "libGenerationGUI.so" );
438 #else
439         library = getLibrary( "GenerationGUI.dll" );
440 #endif
441   }
442   else if( id == 404 ||   // MENU ENTITY - SKETCHER
443            id == 407 ) {  // MENU ENTITY - EXPLODE
444 #ifndef WNT
445         library = getLibrary( "libEntityGUI.so" );
446 #else
447         library = getLibrary( "EntityGUI.dll" );
448 #endif
449   }
450   else if( id == 4081 ||  // MENU BUILD - EDGE
451            id == 4082 ||  // MENU BUILD - WIRE
452            id == 4083 ||  // MENU BUILD - FACE
453            id == 4084 ||  // MENU BUILD - SHELL
454            id == 4085 ||  // MENU BUILD - SOLID
455            id == 4086 ) { // MENU BUILD - COMPUND
456 #ifndef WNT
457         library = getLibrary( "libBuildGUI.so" );
458 #else
459         library = getLibrary( "BuildGUI.dll" );
460 #endif
461   }
462   else if( id == 5011 ||  // MENU BOOLEAN - FUSE
463            id == 5012 ||  // MENU BOOLEAN - COMMON
464            id == 5013 ||  // MENU BOOLEAN - CUT
465            id == 5014 ) { // MENU BOOLEAN - SECTION
466 #ifndef WNT
467         library = getLibrary( "libBooleanGUI.so" );
468 #else
469         library = getLibrary( "BooleanGUI.dll" );
470 #endif
471   }
472   else if( id == 5021 ||  // MENU TRANSFORMATION - TRANSLATION
473            id == 5022 ||  // MENU TRANSFORMATION - ROTATION
474            id == 5023 ||  // MENU TRANSFORMATION - LOCATION
475            id == 5024 ||  // MENU TRANSFORMATION - MIRROR
476            id == 5025 ||  // MENU TRANSFORMATION - SCALE
477            id == 5026 ||  // MENU TRANSFORMATION - OFFSET
478            id == 5027 ||  // MENU TRANSFORMATION - MULTI-TRANSLATION
479            id == 5028 ) { // MENU TRANSFORMATION - MULTI-ROTATION
480 #ifndef WNT
481         library = getLibrary( "libTransformationGUI.so" );
482 #else
483         library = getLibrary( "TransformationGUI.dll" );
484 #endif
485   }
486   else if( id == 503 ||   // MENU OPERATION - PARTITION
487            id == 504 ||   // MENU OPERATION - ARCHIMEDE
488            id == 505 ||   // MENU OPERATION - FILLET
489            id == 506 ||   // MENU OPERATION - CHAMFER  
490            id == 507 ) {  // MENU OPERATION - CLIPPING RANGE
491 #ifndef WNT
492         library = getLibrary( "libOperationGUI.so" );
493 #else
494         library = getLibrary( "OperationGUI.dll" );
495 #endif
496   }
497   else if( id == 601 ||   // MENU REPAIR - SEWING
498            id == 603 ||   // MENU REPAIR - SUPPRESS FACES
499            id == 604 ||   // MENU REPAIR - SUPPRESS HOLE
500            id == 605 ||   // MENU REPAIR - SHAPE PROCESSING
501            id == 606 ||   // MENU REPAIR - CLOSE CONTOUR
502            id == 607 ||   // MENU REPAIR - REMOVE INTERNAL WIRES
503            id == 608 ||   // MENU REPAIR - ADD POINT ON EDGE
504            id == 609 ||   // MENU REPAIR - FREE BOUNDARIES
505            id == 610 ||   // MENU REPAIR - FREE FACES
506            id == 602 ) {  // MENU REPAIR - GLUE FACES
507 #ifndef WNT
508         library = getLibrary( "libRepairGUI.so" );
509 #else
510         library = getLibrary( "RepairGUI.dll" );
511 #endif
512   }
513   else if( id == 701   ||  // MENU MEASURE - PROPERTIES
514            id == 702   ||  // MENU MEASURE - CDG
515            id == 703   ||  // MENU MEASURE - INERTIA
516            id == 7041  ||  // MENU MEASURE - BOUNDING BOX
517            id == 7042  ||  // MENU MEASURE - MIN DISTANCE
518            id == 705   ||  // MENU MEASURE - TOLERANCE
519            id == 706   ||  // MENU MEASURE - WHATIS
520            id == 707   ||  // MENU MEASURE - CHECK
521            id == 7072  ||  // MENU MEASURE - CHECK COMPOUND OF BLOCKS
522            id == 708 ) {  // MENU MEASURE - POINT COORDINATES
523 #ifndef WNT
524         library = getLibrary( "libMeasureGUI.so" );
525 #else
526         library = getLibrary( "MeasureGUI.dll" );
527 #endif
528   }
529   else if( id == 800  ||  // MENU GROUP - CREATE
530            id == 8001 ||  // POPUP MENU - CREATE GROUP
531            id == 801 ) {  // MENU GROUP - EDIT
532 #ifndef WNT
533         library = getLibrary( "libGroupGUI.so" );
534 #else
535         library = getLibrary( "GroupGUI.dll" );
536 #endif
537   }
538   else if( id == 9999  ||  // MENU BLOCKS - HEXAHEDRAL SOLID
539            id == 9998  ||  // MENU BLOCKS - MULTI-TRANSFORMATION
540            id == 9997  ||  // MENU BLOCKS - QUADRANGLE FACE
541            id == 99991 ||  // MENU BLOCKS - PROPAGATE
542            id == 9995 ) { // MENU BLOCKS - EXPLODE ON BLOCKS
543 #ifndef WNT
544         library = getLibrary( "libBlocksGUI.so" );
545 #else
546         library = getLibrary( "BlocksGUI.dll" );
547 #endif
548   }
549
550   // call method of corresponding GUI library
551   if ( library ) 
552     library->OnGUIEvent( id, desk );
553   else 
554     SUIT_MessageBox::error1( desk, tr( "GEOM_ERROR" ), tr( "GEOM_ERR_LIB_NOT_FOUND" ), tr( "GEOM_BUT_OK" ) );
555 }
556
557
558 //=================================================================================
559 // function : GeometryGUI::OnKeyPress()
560 // purpose  : Called when any key is pressed by user [static]
561 //=================================================================================
562 void GeometryGUI::OnKeyPress( SUIT_ViewWindow* win, QKeyEvent* pe )
563 {
564   GUIMap::Iterator it;
565   bool bOk = true;
566   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
567     SUIT_Application* anApp = application();
568     if (!anApp) return;
569     bOk = bOk && it.data()->OnKeyPress( pe, anApp->desktop(), win );
570   }
571 //  return bOk;
572 }
573
574
575 //=================================================================================
576 // function : GeometryGUI::OnMouseMove()
577 // purpose  : Manages mouse move events [static]
578 //=================================================================================
579 void GeometryGUI::OnMouseMove( SUIT_ViewWindow* win, QMouseEvent* pe )
580 {  
581   GUIMap::Iterator it;
582   bool bOk = true;
583   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
584     SUIT_Application* anApp = application();
585     if (!anApp) return;
586     bOk = bOk && it.data()->OnMouseMove( pe, anApp->desktop(), win );
587   }
588 //  return bOk;
589 }
590
591
592 //=================================================================================
593 // function : GeometryGUI::0nMousePress()
594 // purpose  : Manage mouse press events [static]
595 //=================================================================================
596 void GeometryGUI::OnMousePress( SUIT_ViewWindow* win, QMouseEvent* pe )
597 {
598   GUIMap::Iterator it;
599   // OnMousePress() should return false if this event should be processed further
600   // (see OCCViewer_Viewer3d::onMousePress() for explanation)
601   bool processed = false;
602   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
603     SUIT_Application* anApp = application();
604     if (!anApp) return;
605     processed = processed || it.data()->OnMousePress( pe, anApp->desktop(), win );
606   }
607 //  return processed;
608 }
609
610 /*
611 static void UpdateVtkSelection()
612 {
613   QPtrList<SUIT_ViewWindow> winList = application()->desktop()->windows();
614   SUIT_ViewWindow* win = 0;
615   for ( win = winList.first(); win; win = winList.next() ) {
616     if ( win->getViewManager()->getTypeView() == VIEW_VTK ) {
617       SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
618       if ( vw ) {
619         SVTK_RenderWindowInteractor* anInteractor = vw->getRWInteractor();
620         anInteractor->SetSelectionProp();
621         anInteractor->SetSelectionTolerance();
622         SVTK_InteractorStyleSALOME* aStyle = anInteractor->GetInteractorStyleSALOME();
623         if (aStyle) {
624           aStyle->setPreselectionProp();
625         }
626       }
627     }
628   }
629 }
630
631 //=================================================================================
632 // function : GeometryGUI::SetSettings()
633 // purpose  : Called when GEOM module is activated [static]
634 //=================================================================================
635 bool GeometryGUI::SetSettings()
636 {
637   QMenuBar*     Mb = parent->getMainMenuBar();
638   SUIT_Study*   ActiveStudy = application()->activeStudy();
639     
640 // Wireframe or Shading
641   int DisplayMode = 0;
642   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
643   bool ViewOCC = ( window && window->getViewManager()->getType() == VIEW_OCC );
644   bool ViewVTK = ( window && window->getViewManager()->getType() == VIEW_VTK );
645   if ( ViewOCC ) {
646     OCCViewer_ViewManager* vm = dynamic_cast<OCCViewer_ViewManager*>( window->getViewManager() );
647     if ( vm ) {
648       Handle(AIS_InteractiveContext) ic = vm->getOCCViewer()->getAISContext();
649       DisplayMode = ic->DisplayMode();
650     }
651   }
652   else if ( ViewVTK ) {
653     SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
654     if ( vw ) {
655       SVTK_RenderWindowInteractor* myRenderInter = vw->getRWInteractor();
656       DisplayMode = myRenderInter->GetDisplayMode();
657     }
658   }
659
660   if( DisplayMode == 1 )
661     getApp()->
662     Mb->changeItem( 211, tr( "GEOM_MEN_WIREFRAME" ) );
663   else
664     Mb->changeItem( 211, tr( "GEOM_MEN_SHADING" ) );
665
666
667   // Add in Study  - !!!ALWAYS TRUE!!! /////// VSR : TO BE REMOVED
668   QString AddInStudy = QAD_CONFIG->getSetting("Geometry:SettingsAddInStudy");
669   int Settings_AddInStudy;
670   //  if(!AddInStudy.isEmpty())
671   //    Settings_AddInStudy = AddInStudy.toInt();
672   //  else
673   
674   Settings_AddInStudy = 1;
675   Mb->setItemChecked(411, Settings_AddInStudy);
676
677   // step value 
678   QString S = QAD_CONFIG->getSetting("Geometry:SettingsGeomStep");
679   if(S.isEmpty())
680     QAD_CONFIG->addSetting("Geometry:SettingsGeomStep", "100");
681
682   // isos 
683   int count = ActiveStudy->getStudyFramesCount();
684   for(int i = 0; i < count; i++) {
685     if(ActiveStudy->getStudyFrame(i)->getTypeView() == VIEW_OCC) {
686       OCCViewer_Viewer3d* v3d = ((OCCViewer_ViewFrame*)ActiveStudy->getStudyFrame(i)->getRightFrame()->getViewFrame())->getViewer();
687       Handle (AIS_InteractiveContext) ic = v3d->getAISContext();
688
689       QString IsoU = QAD_CONFIG->getSetting("Geometry:SettingsIsoU");
690       QString IsoV = QAD_CONFIG->getSetting("Geometry:SettingsIsoV");
691       if(!IsoU.isEmpty())
692         ic->DefaultDrawer()->UIsoAspect()->SetNumber(IsoU.toInt());
693       if(!IsoV.isEmpty())
694         ic->DefaultDrawer()->VIsoAspect()->SetNumber(IsoV.toInt());
695     }
696   }
697
698   setActionsEnabled();
699
700   // PAL5356: update VTK selection
701   ::UpdateVtkSelection();
702   bool bOk = true;
703   GUIMap::Iterator it;
704   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
705     bOk = bOk && it.data()->SetSettings( parent );
706     
707   // MZN: Enable/disable "Clipping range" menu item(from GEOM_CLIPPING variable)        
708   if (getenv( "GEOM_CLIPPING" ) == NULL)
709     {
710       QMenuItem* mi = Mb->findItem(50);
711       if (mi && mi->popup())
712       mi->popup()->removeItem(507);     
713     } 
714     
715   return bOk;
716 }
717 */
718
719 //=======================================================================
720 // function : createGeomAction
721 // purpose  : 
722 //=======================================================================
723 void GeometryGUI::createGeomAction( const int id, const QString& po_id, const QString& icon_id, const int key, const bool toggle  )
724 {
725   QIconSet icon;
726   QWidget* parent = application()->desktop();
727   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
728   QPixmap pix;
729   if ( icon_id.length() ) 
730     pix = resMgr->loadPixmap( "GEOM", tr( icon_id ) );
731   else
732     pix = resMgr->loadPixmap( "GEOM", tr( QString( "ICO_" )+po_id ), false );
733   if ( !pix.isNull() )
734     icon = QIconSet( pix );
735
736   QString tooltip    = tr( QString( "TOP_" )+po_id ),
737           menu       = tr( QString( "MEN_" )+po_id ),
738           status_bar = tr( QString( "STB_" )+po_id );
739
740   createAction( id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT( OnGUIEvent() )  );
741 }
742
743
744
745 //=======================================================================
746 // function : GeometryGUI::initialize()
747 // purpose  : Called when GEOM module is created
748 //=======================================================================
749 void GeometryGUI::initialize( CAM_Application* app )
750 {
751   SalomeApp_Module::initialize( app );
752
753   // ----- create actions --------------
754
755   createGeomAction( 111, "IMPORT", "", (CTRL + Key_I) );
756   createGeomAction( 121, "EXPORT", "", (CTRL + Key_E) );
757
758   createGeomAction( 33, "DELETE" );
759
760   createGeomAction( 4011, "POINT" );
761   createGeomAction( 4012, "LINE" );
762   createGeomAction( 4013, "CIRCLE" );
763   createGeomAction( 4014, "ELLIPSE" );
764   createGeomAction( 4015, "ARC" );
765   createGeomAction( 4019, "CURVE" );
766   createGeomAction( 4016, "VECTOR" );
767   createGeomAction( 4017, "PLANE" );
768   createGeomAction( 4018, "WORK_PLANE" );
769   createGeomAction( 4020, "LOCAL_CS" );
770
771   createGeomAction( 4021, "BOX" );
772   createGeomAction( 4022, "CYLINDER" );
773   createGeomAction( 4023, "SPHERE" );
774   createGeomAction( 4024, "TORUS" );
775   createGeomAction( 4025, "CONE" );
776
777   createGeomAction( 4031, "EXTRUSION" );
778   createGeomAction( 4032, "REVOLUTION" );
779   createGeomAction( 4033, "FILLING" );
780   createGeomAction( 4034, "PIPE" );
781
782   createGeomAction( 800, "GROUP_CREATE" );
783   createGeomAction( 801, "GROUP_EDIT" );
784
785   createGeomAction( 9997, "Q_FACE" );
786   createGeomAction( 9999, "HEX_SOLID" );
787
788   createGeomAction( 404, "SKETCH" );
789   createGeomAction( 407, "EXPLODE" );
790
791   createGeomAction( 4081, "EDGE" );
792   createGeomAction( 4082, "WIRE" );
793   createGeomAction( 4083, "FACE" );
794   createGeomAction( 4084, "SHELL" );
795   createGeomAction( 4085, "SOLID" );
796   createGeomAction( 4086, "COMPOUND" );
797
798   createGeomAction( 5011, "FUSE" );
799   createGeomAction( 5012, "COMMON" );
800   createGeomAction( 5013, "CUT" );
801   createGeomAction( 5014, "SECTION" );
802
803   createGeomAction( 5021, "TRANSLATION" );
804   createGeomAction( 5022, "ROTATION" );
805   createGeomAction( 5023, "MODIFY_LOCATION" );
806   createGeomAction( 5024, "MIRROR" );
807   createGeomAction( 5025, "SCALE" );
808   createGeomAction( 5026, "OFFSET" );
809   createGeomAction( 5027, "MUL_TRANSLATION" );
810   createGeomAction( 5028, "MUL_ROTATION" );
811
812   createGeomAction( 503, "PARTITION" );
813   createGeomAction( 504, "ARCHIMEDE" );
814   createGeomAction( 505, "FILLET" );
815   createGeomAction( 506, "CHAMFER" );
816   //createGeomAction( 507, "CLIPPING" );
817
818   createGeomAction( 9998, "MUL_TRANSFORM" );
819   createGeomAction( 9995, "EXPLODE_BLOCKS" );
820   createGeomAction( 99991, "PROPAGATE" );
821
822   createGeomAction( 601, "SEWING" );
823   createGeomAction( 602, "GLUE_FACES" );
824   createGeomAction( 603, "SUPPRESS_FACES" );
825   createGeomAction( 604, "SUPPERSS_HOLES" );
826   createGeomAction( 605, "SHAPE_PROCESS" );
827   createGeomAction( 606, "CLOSE_CONTOUR" );
828   createGeomAction( 607, "SUPPRESS_INT_WIRES" );
829   createGeomAction( 608, "POINT_ON_EDGE" );
830   createGeomAction( 609, "CHECK_FREE_BNDS" );
831   createGeomAction( 610, "CHECK_FREE_FACES" );
832   
833   createGeomAction( 708, "POINT_COORDS" );
834   createGeomAction( 701, "BASIC_PROPS" );
835   createGeomAction( 702, "MASS_CENTER" );
836   createGeomAction( 703, "INERTIA" );
837   createGeomAction( 7041, "BND_BOX" );
838   createGeomAction( 7042, "MIN_DIST" );
839
840   createGeomAction( 705, "TOLERANCE" );
841   createGeomAction( 706, "WHAT_IS" );
842   createGeomAction( 707, "CHECK" );
843   createGeomAction( 7072, "CHECK_COMPOUND" );
844
845   createGeomAction( 5103, "CHECK_GEOMETRY" );
846   
847   createGeomAction( 412, "SHADING_COLOR" );
848   createGeomAction( 413, "ISOS" );
849   createGeomAction( 414, "STEP_VALUE" );
850
851   createGeomAction( 211, "SHADING" );
852   createGeomAction( 212, "DISPLAY_ALL" );
853   createGeomAction( 214, "ERASE_ALL" );
854   createGeomAction( 216, "DISPLAY" );
855   createGeomAction( 213, "DISPLAY_ONLY" );
856   createGeomAction( 215, "ERASE" );
857
858   createGeomAction( 901, "POP_RENAME" );
859   createGeomAction( 80311, "POP_WIREFRAME", "", 0, true );
860   createGeomAction( 80312, "POP_SHADING", "", 0, true );
861   createGeomAction( 8032, "POP_COLOR" );
862   createGeomAction( 8033, "POP_TRANSPARENCY" );
863   createGeomAction( 8034, "POP_ISOS" );
864   createGeomAction( 8001, "POP_CREATE_GROUP" );
865
866   // make wireframe-shading items to be exclusive (only one at a time is selected)
867   //QActionGroup* dispModeGr = new QActionGroup( this, "", true );
868   //dispModeGr->add( action( 80311 ) );
869   //dispModeGr->add( action( 80312 ) );
870   // ---- create menu --------------------------
871
872   int fileId = createMenu( tr( "MEN_FILE" ), -1, -1 );
873   createMenu( separator(), fileId, 10 );
874   createMenu( 111, fileId, 10 );
875   createMenu( 121, fileId, 10 );
876   createMenu( separator(), fileId, -1 );
877
878   int editId = createMenu( tr( "MEN_EDIT" ), -1, -1 );
879   createMenu( 33, editId, -1 );
880
881   int newEntId = createMenu( tr( "MEN_NEW_ENTITY" ), -1, -1, 10 );
882
883   int basicId = createMenu( tr( "MEN_BASIC" ), newEntId, -1 );
884   createMenu( 4011, basicId, -1 );
885   createMenu( 4012, basicId, -1 );
886   createMenu( 4013, basicId, -1 );
887   createMenu( 4014, basicId, -1 );
888   createMenu( 4015, basicId, -1 );
889   createMenu( 4019, basicId, -1 );
890   createMenu( separator(), basicId, -1 );
891   createMenu( 4016, basicId, -1 );
892   createMenu( 4017, basicId, -1 );
893   createMenu( 4018, basicId, -1 );
894   createMenu( 4020, basicId, -1 );
895
896   int primId = createMenu( tr( "MEN_PRIMITIVES" ), newEntId, -1 );
897   createMenu( 4021, primId, -1 );  
898   createMenu( 4022, primId, -1 );  
899   createMenu( 4023, primId, -1 );  
900   createMenu( 4024, primId, -1 );  
901   createMenu( 4025, primId, -1 );  
902
903   int genId = createMenu( tr( "MEN_GENERATION" ), newEntId, -1 );
904   createMenu( 4031, genId, -1 );  
905   createMenu( 4032, genId, -1 );  
906   createMenu( 4033, genId, -1 );  
907   createMenu( 4034, genId, -1 );  
908   createMenu( separator(), newEntId, -1 );
909
910   int groupId = createMenu( tr( "MEN_GROUP" ), newEntId, -1 );
911   createMenu( 800, groupId, -1 );  
912   createMenu( 801, groupId, -1 );  
913   createMenu( separator(), newEntId, -1 );
914
915   int blocksId = createMenu( tr( "MEN_BLOCKS" ), newEntId, -1 );
916   createMenu( 9997, blocksId, -1 );  
917   createMenu( 9999, blocksId, -1 );  
918
919   createMenu( separator(), newEntId, -1 );
920   createMenu( 404, newEntId, -1 );  
921   createMenu( separator(), newEntId, -1 );
922   createMenu( 407, newEntId, -1 );  
923
924   int buildId = createMenu( tr( "MEN_BUILD" ), newEntId, -1 );
925   createMenu( 4081, buildId, -1 );  
926   createMenu( 4082, buildId, -1 );  
927   createMenu( 4083, buildId, -1 );  
928   createMenu( 4084, buildId, -1 );  
929   createMenu( 4085, buildId, -1 );  
930   createMenu( 4086, buildId, -1 );  
931
932   int operId = createMenu( tr( "MEN_OPERATIONS" ), -1, -1, 10 );
933
934   int boolId = createMenu( tr( "MEN_BOOLEAN" ), operId, -1 );
935   createMenu( 5011, boolId, -1 );  
936   createMenu( 5012, boolId, -1 );  
937   createMenu( 5013, boolId, -1 );  
938   createMenu( 5014, boolId, -1 );  
939
940   int transId = createMenu( tr( "MEN_TRANSFORMATION" ), operId, -1 );
941   createMenu( 5021, transId, -1 );  
942   createMenu( 5022, transId, -1 );  
943   createMenu( 5023, transId, -1 );  
944   createMenu( 5024, transId, -1 );  
945   createMenu( 5025, transId, -1 );  
946   createMenu( 5026, transId, -1 );  
947   createMenu( separator(), transId, -1 );
948   createMenu( 5027, transId, -1 );  
949   createMenu( 5028, transId, -1 );  
950
951   createMenu( 503, operId, -1 );  
952   createMenu( 504, operId, -1 );  
953   createMenu( separator(), operId, -1 );
954   createMenu( 505, transId, -1 );  
955   createMenu( 506, transId, -1 );  
956   //createMenu( 507, transId, -1 );  
957
958   int blockId = createMenu( tr( "MEN_BLOCKS" ), operId, -1 );
959   createMenu( 9998, blockId, -1 );  
960   createMenu( 9995, blockId, -1 );  
961   createMenu( 99991, blockId, -1 );  
962
963   int repairId = createMenu( tr( "MEN_REPAIR" ), -1, -1, 10 );
964   createMenu( 605, repairId, -1 );  
965   createMenu( 603, repairId, -1 );  
966   createMenu( 606, repairId, -1 );  
967   createMenu( 607, repairId, -1 );  
968   createMenu( 604, repairId, -1 );  
969   createMenu( 601, repairId, -1 );  
970   createMenu( 602, repairId, -1 );  
971   createMenu( 608, repairId, -1 );  
972   createMenu( 609, repairId, -1 );  
973   createMenu( 610, repairId, -1 );  
974
975   int measurId = createMenu( tr( "MEN_MEASURES" ), -1, -1, 10 );
976   createMenu( 708, measurId, -1 );  
977   createMenu( 701, measurId, -1 );  
978   createMenu( separator(), measurId, -1 );
979   createMenu( 702, measurId, -1 );  
980   createMenu( 703, measurId, -1 );  
981   createMenu( separator(), measurId, -1 );
982
983   int dimId = createMenu( tr( "MEN_DIMENSIONS" ), measurId, -1 );
984   createMenu( 7041, dimId, -1 );  
985   createMenu( 7042, dimId, -1 );
986   createMenu( separator(), measurId, -1 );
987   
988   createMenu( 705, measurId, -1 );  
989   createMenu( separator(), measurId, -1 );
990   createMenu( 706, measurId, -1 );  
991   createMenu( 707, measurId, -1 );  
992   createMenu( 7072, measurId, -1 );  
993
994   int toolsId = createMenu( tr( "MEN_TOOLS" ), -1, -1, 50 );
995   createMenu( separator(), toolsId, -1 );
996   createMenu( 5103, toolsId, -1 );  
997   
998   //int prefId = createMenu( tr( "MEN_PREFERENCES" ), -1, -1, 50 );
999   //createMenu( separator(), prefId, -1 );
1000   //int geomId = createMenu( tr( "MEN_PREFERENCES_GEOM" ), prefId, -1 );
1001   //createMenu( 412, geomId, -1 );  
1002   //createMenu( 413, geomId, -1 );  
1003   //createMenu( 414, geomId, -1 );  
1004   //createMenu( separator(), prefId, -1 );
1005
1006   int viewId = createMenu( tr( "MEN_VIEW" ), -1, -1 );
1007   createMenu( separator(), viewId, -1 );
1008
1009   int dispmodeId = createMenu( tr( "MEN_DISPLAY_MODE" ), viewId, -1 );
1010   createMenu( 211, dispmodeId, -1 );  
1011   
1012   createMenu( separator(), viewId, -1 );
1013   createMenu( 212, viewId, -1 );  
1014   createMenu( 214, viewId, -1 );  
1015   createMenu( separator(), viewId, -1 );
1016
1017 /*
1018   PAL9111:
1019   because of these items are accessible through object browser and viewers
1020   we have removed they from main menu
1021
1022   createMenu( 216, viewId, -1 );  
1023   createMenu( 213, viewId, -1 );  
1024   createMenu( 215, viewId, -1 );
1025 */
1026
1027   // ---- create toolbars --------------------------
1028
1029   int basicTbId = createTool( tr( "TOOL_BASIC" ) );
1030   createTool( 4011, basicTbId );
1031   createTool( 4012, basicTbId );
1032   createTool( 4013, basicTbId );
1033   createTool( 4014, basicTbId );
1034   createTool( 4015, basicTbId );
1035   createTool( 4019, basicTbId );
1036   createTool( 4016, basicTbId );
1037   createTool( 4017, basicTbId );
1038   createTool( 4018, basicTbId );
1039   createTool( 4020, basicTbId );
1040
1041   int primTbId = createTool( tr( "TOOL_PRIMITIVES" ) );
1042   createTool( 4021, primTbId );  
1043   createTool( 4022, primTbId );  
1044   createTool( 4023, primTbId );  
1045   createTool( 4024, primTbId );  
1046   createTool( 4025, primTbId );  
1047
1048   int boolTbId = createTool( tr( "TOOL_BOOLEAN" ) );
1049   createTool( 5011, boolTbId );  
1050   createTool( 5012, boolTbId );  
1051   createTool( 5013, boolTbId );  
1052   createTool( 5014, boolTbId );  
1053
1054   int genTbId = createTool( tr( "TOOL_GENERATION" ) );
1055   createTool( 4031, genTbId );  
1056   createTool( 4032, genTbId );  
1057   createTool( 4033, genTbId );  
1058   createTool( 4034, genTbId );  
1059
1060   int transTbId = createTool( tr( "TOOL_TRANSFORMATION" ) );
1061   createTool( 5021, transTbId );  
1062   createTool( 5022, transTbId );  
1063   createTool( 5023, transTbId );  
1064   createTool( 5024, transTbId );  
1065   createTool( 5025, transTbId );  
1066   createTool( 5026, transTbId );  
1067   createTool( separator(), transTbId );
1068   createTool( 5027, transTbId );  
1069   createTool( 5028, transTbId );
1070
1071   QtxPopupMgr* mgr = popupMgr();
1072   mgr->insert( action(  901 ), -1, -1 ); // rename
1073   mgr->setRule( action( 901 ), "$type in {'Shape' 'Group'} and selcount=1", true );
1074   mgr->insert( action(  8001 ), -1, -1 ); // create group
1075   mgr->setRule( action( 8001 ), "client='ObjectBrowser' and type='Shape' and selcount=1 and isOCC=true", true );
1076   mgr->insert( action(  801 ), -1, -1 ); // edit group
1077   mgr->setRule( action( 801 ),  "client='ObjectBrowser' and type='Group' and selcount=1 and isOCC=true", true );
1078   mgr->insert( separator(), -1, -1 );        // -----------
1079   dispmodeId = mgr->insert(  tr( "MEN_DISPLAY_MODE" ), -1, -1 ); // display mode menu
1080   mgr->insert( action(  80311 ), dispmodeId, -1 ); // wireframe
1081   mgr->setRule( action( 80311 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
1082   mgr->setRule( action( 80311 ), "(client='OCCViewer' or client='VTKViewer') and displaymode='Wireframe'", false );
1083   mgr->insert( action(  80312 ), dispmodeId, -1 ); // shading
1084   mgr->setRule( action( 80312 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
1085   mgr->setRule( action( 80312 ), "(client='OCCViewer' or client='VTKViewer') and displaymode='Shading'", false );
1086   mgr->insert( separator(), -1, -1 );        // -----------
1087   mgr->insert( action(  8032 ), -1, -1 ); // color
1088   mgr->setRule( action( 8032 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
1089   mgr->insert( action(  8033 ), -1, -1 ); // transparency
1090   mgr->setRule( action( 8033 ), "(client='OCCViewer' or client='VTKViewer') and selcount>0 and isVisible", true );
1091   mgr->insert( action(  8034 ), -1, -1 ); // isos
1092   mgr->setRule( action( 8034 ), "client='OCCViewer' and selcount>0 and isVisible", true );
1093   mgr->insert( separator(), -1, -1 );        // -----------
1094   
1095
1096
1097   QString canDisplay = "($component={'GEOM'}) and (selcount>0) and ({true} in $canBeDisplayed) ",
1098           onlyComponent = "((type='Component') and selcount=1)",
1099           rule = canDisplay + "and ((($type in {%1}) and( %2 )) or " + onlyComponent + ")",
1100           types = "'Shape' 'Group'";
1101
1102   mgr->insert( action(  216 ), -1, -1 ); // display
1103   mgr->setRule( action( 216 ), rule.arg( types ).arg( "not isVisible" ), true );
1104
1105   mgr->insert( action(  215 ), -1, -1 ); // erase
1106   mgr->setRule( action( 215 ), rule.arg( types ).arg( "isVisible" ), true );
1107
1108   mgr->insert( action(  214 ), -1, -1 ); // erase All
1109   mgr->setRule( action( 214 ), "client='OCCViewer' or client='VTKViewer'", true );
1110
1111   mgr->insert( action(  213 ), -1, -1 ); // display only
1112   mgr->setRule( action( 213 ), rule.arg( types ).arg( "true" ), true );
1113   mgr->insert( separator(), -1, -1 );
1114
1115   mgr->hide( mgr->actionId( action( myEraseAll ) ) );
1116 }
1117
1118 //=======================================================================
1119 // function : GeometryGUI::activateModule()
1120 // purpose  : Called when GEOM module is activated
1121 //=======================================================================
1122 bool GeometryGUI::activateModule( SUIT_Study* study )
1123 {
1124   if ( CORBA::is_nil( myComponentGeom ) )
1125     return false;
1126
1127   bool res = SalomeApp_Module::activateModule( study );
1128
1129   if ( !res )
1130     return false;
1131
1132   setMenuShown( true );
1133   setToolShown( true );
1134
1135   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1136           this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1137
1138   // Reset actions accelerator keys
1139   //action(111)->setAccel(QKeySequence(CTRL + Key_I)); // Import
1140   //action(121)->setAccel(QKeySequence(CTRL + Key_E)); // Export
1141   action(111)->setEnabled(true); // Import
1142   action(121)->setEnabled(true); // Export
1143
1144   GUIMap::Iterator it;
1145   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1146     it.data()->activate( application()->desktop() );
1147
1148   LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1149   SUIT_ViewManager* vm;
1150   ViewManagerList OCCViewManagers, VTKViewManagers;
1151   application()->viewManagers( OCCViewer_Viewer::Type(), OCCViewManagers );
1152   for ( vm = OCCViewManagers.first(); vm; vm = OCCViewManagers.next() )
1153     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1154   application()->viewManagers( SVTK_Viewer::Type(), VTKViewManagers );
1155   for ( vm = VTKViewManagers.first(); vm; vm = VTKViewManagers.next() )
1156     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1157
1158   // disable OCC selectors
1159   getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1160   for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1161     sr->setEnabled(true);
1162
1163   // disable VTK selectors
1164   getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1165   for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1166     sr->setEnabled(true);
1167
1168   return true;
1169 }
1170
1171
1172 //=======================================================================
1173 // function : GeometryGUI::deactivateModule()
1174 // purpose  : Called when GEOM module is deactivated
1175 //=======================================================================
1176 bool GeometryGUI::deactivateModule( SUIT_Study* study )
1177 {
1178   setMenuShown( false );
1179   setToolShown( false );
1180
1181   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ), 
1182              this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1183
1184   EmitSignalCloseAllDialogs();
1185
1186   GUIMap::Iterator it;
1187   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1188     it.data()->deactivate();  
1189
1190   // Unset actions accelerator keys
1191   //action(111)->setAccel(QKeySequence()); // Import
1192   //action(121)->setAccel(QKeySequence()); // Export
1193   action(111)->setEnabled(false); // Import
1194   action(121)->setEnabled(false); // Export
1195
1196   myOCCSelectors.clear();
1197   getApp()->selectionMgr()->setEnabled( true, OCCViewer_Viewer::Type() );
1198
1199   myVTKSelectors.clear();
1200   getApp()->selectionMgr()->setEnabled( true, SVTK_Viewer::Type() );
1201
1202   return SalomeApp_Module::deactivateModule( study );
1203 }
1204
1205 //=================================================================================
1206 // function : GeometryGUI::DefinePopup()
1207 // purpose  : Called from desktop to define popup menu [static]
1208 //=================================================================================
1209 /*
1210 void GeometryGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject)
1211 {
1212   QAD_Study* ActiveStudy = QAD_Application::getDesktop()->getActiveStudy();
1213   SALOME_Selection* Sel  = SALOME_Selection::Selection(ActiveStudy->getSelection());
1214
1215   theObject  = "";
1216   theContext = "";
1217
1218   if ( theParent == "Viewer" ) {
1219     if ( Sel->IObjectCount() == 0 )
1220       theContext = "NothingSelected";
1221   }
1222
1223   if ( Sel->IObjectCount() == 1 ) {
1224     Handle(SALOME_InteractiveObject) IO = Sel->firstIObject();
1225     if( IO->hasEntry() ) {
1226       SALOMEDS::SObject_var sobj = ActiveStudy->getStudyDocument()->FindObjectID( IO->getEntry() );
1227       if ( !sobj->_is_nil() ) {
1228         SALOMEDS::SComponent_var scomp = sobj->GetFatherComponent();
1229         if ( !strcmp(scomp->GetID(), IO->getEntry() ) ) {
1230           // component is selected
1231           theObject = "Component";
1232         }
1233         else {
1234           GEOM::GEOM_Object_var aGObj = GEOM::GEOM_Object::_narrow( sobj->GetObject() );
1235           if ( !CORBA::is_nil( aGObj ) ) {
1236             switch( aGObj->GetType() ) {
1237             case GEOM_GROUP:
1238               theObject = "Group";
1239               break;
1240             default:
1241               theObject = "Shape";
1242               break;
1243             }
1244           }
1245         }
1246       }
1247     }
1248   }
1249 }
1250
1251 //=================================================================================
1252 // function : GeometryGUI::CustomPopup()
1253 // purpose  : Called from desktop to create popup menu [static]
1254 //=================================================================================
1255 bool GeometryGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
1256                               const QString& theParent, const QString& theObject)
1257 {
1258   GeometryGUI* geomGUI = GetGeomGUI();
1259
1260   // Deactivate any non modal dialog box to get the neutral point
1261   geomGUI->EmitSignalDeactivateDialog();
1262   QAD_Study* anActiveStudy    = parent->getActiveStudy();
1263   QAD_StudyFrame* aStudyFrame = anActiveStudy->getActiveStudyFrame();
1264   QAD_ViewFrame* aViewFrame   = aStudyFrame->getRightFrame()->getViewFrame();
1265   SALOME_Selection* Sel       = SALOME_Selection::Selection(anActiveStudy->getSelection());
1266   QString parentComponent     = ((SALOMEGUI_Desktop*)parent)->getComponentFromSelection();
1267   bool isOCCViewer            = aViewFrame->getTypeView() == VIEW_OCC;
1268   bool isVTKViewer            = aViewFrame->getTypeView() == VIEW_VTK;
1269   int aDisplayMode            = 0;
1270   QString objectName;
1271
1272   if ( aViewFrame->getTypeView() == VIEW_OCC )
1273     aDisplayMode = ((OCCViewer_ViewFrame*)aViewFrame)->getViewer()->getAISContext()->DisplayMode();
1274   else if ( aViewFrame->getTypeView() == VIEW_VTK )
1275     aDisplayMode = (dynamic_cast<SVTK_ViewFrame*>( aViewFrame )->getRWInteractor()->GetDisplayMode();
1276
1277   int nbSel = Sel->IObjectCount();
1278
1279   if( nbSel == 0 ) {
1280     ////// NOTHING SELECTED
1281     popup->clear();
1282   } 
1283   else if ( nbSel == 1 ) {
1284     ////// SINGLE OBJECT SELECTION
1285     if ( parentComponent != parent->getActiveComponent() )  {
1286       ////// selected object does not belong to GEOM module:
1287       // remove all commands except Display/Erase...
1288       while ( 1 ) {
1289         int id = popup->idAt( 0 );
1290         if ( id <= QAD_TopLabel_Popup_ID )
1291           popup->removeItemAt( 0 );
1292         else
1293           break;
1294       }
1295     }
1296     else {
1297       ////// selected object belong to the GEOM module
1298       // get interactive object
1299       Handle(SALOME_InteractiveObject) IObject = Sel->firstIObject();
1300       objectName = IObject->getName();
1301       // if object has entry get SObject
1302       SALOMEDS::SObject_var SO;
1303       if ( IObject->hasEntry() )
1304         SO = anActiveStudy->getStudyDocument()->FindObjectID( IObject->getEntry() );
1305
1306       if ( theObject == "Component" ) {
1307         ////// menu for component
1308         if ( !isOCCViewer && !isVTKViewer ) {
1309           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1310           popup->removeItem( QAD_Display_Popup_ID );
1311           popup->removeItem( QAD_Erase_Popup_ID );
1312         }
1313       }
1314       else {
1315         ////// not component (should be shape)
1316         if ( IObject->hasEntry() )  /////// VSR : TO BE REMOVED
1317           popup->removeItem( 804 ); // "Add in Study"
1318
1319         // Here could be analysis of the geom shape's type
1320         // ... //
1321
1322         SALOMEDS::GenericAttribute_var aTmpAttr;
1323         if( SO->_is_nil() || SO->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR") )
1324           popup->removeItem( 9024 ); // "Open" /////// VSR : TO BE REMOVED
1325
1326         if ( !isOCCViewer && theParent == "ObjectBrowser" ) {
1327           if ( theObject == "Shape" )
1328             popup->removeItem( 800 ); // Create Group
1329           else if ( theObject == "Group" )
1330             popup->removeItem( 801 ); // Edit Group
1331         }
1332
1333         if ( isOCCViewer || isVTKViewer ) {
1334           ////// current viewer is OCC or VTK
1335           SALOME_Prs* prs = aViewFrame->CreatePrs( IObject->getEntry() );
1336           if ( aViewFrame->isVisible( IObject ) ) {
1337             ////// object is already displayed in the viewer
1338             popup->removeItem( QAD_Display_Popup_ID );
1339             if ( isOCCViewer ) {
1340               ////// OCC viewer only
1341               OCCViewer_Prs* occPrs = dynamic_cast<OCCViewer_Prs*>( prs );
1342               if ( occPrs && !occPrs->IsNull() ) {
1343                 AIS_ListOfInteractive ioList;
1344                 occPrs->GetObjects( ioList );
1345                 QMenuItem* mi = popup->findItem( 803 );
1346                 if ( mi && mi->popup() ) {
1347                   if ( ioList.First()->DisplayMode() == 0 )
1348                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1349                   else if ( ioList.First()->DisplayMode() == 1 )
1350                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1351                   else if ( ioList.First()->DisplayMode() < 0 )
1352                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1353                 }
1354               }
1355             }
1356             else {
1357               ////// VTK viewer only
1358               popup->removeItem( 8034 ); // "Isos"
1359               SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
1360               if ( vtkPrs && !vtkPrs->IsNull() ) {
1361                 vtkActorCollection* actorList = vtkPrs->GetObjects();
1362                 actorList->InitTraversal();
1363                 SALOME_Actor* ac = SALOME_Actor::SafeDownCast( actorList->GetNextActor() );
1364                 QMenuItem* mi = popup->findItem( 803 );
1365                 if ( ac && mi && mi->popup() ) {
1366                   if ( ac->getDisplayMode() == 0 )
1367                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1368                   else if ( ac->getDisplayMode() == 1 )
1369                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1370                   else
1371                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1372                 }
1373               }
1374             }
1375           }
1376           else {
1377             ////// object is not yet displayed in the viewer
1378             popup->removeItem( 803 );  // "Display Mode"
1379             popup->removeItem( 8032 ); // "Color"
1380             popup->removeItem( 8033 ); // "Transparency"
1381             popup->removeItem( 8034 ); // "Isos"
1382             popup->removeItem( QAD_Erase_Popup_ID );
1383           }
1384           delete prs;
1385         }
1386         else {
1387           ////// other viewer type (neither OCC nor VTK)
1388           popup->removeItem( 803 );  // "Display Mode"
1389           popup->removeItem( 8032 ); // "Color"
1390           popup->removeItem( 8033 ); // "Transparency"
1391           popup->removeItem( 8034 ); // "Isos"
1392           popup->removeItem( QAD_Display_Popup_ID );
1393           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1394           popup->removeItem( QAD_Erase_Popup_ID );
1395         }
1396       }
1397     }
1398   }
1399   else {
1400     ////// MULTIPLE SELECTION
1401     if ( parentComponent != parent->getActiveComponent() )  {
1402       ////// not GEOM module objects or objects belong to different modules
1403       // remove all commands except Display/Erase...
1404       while ( 1 ) {
1405         int id = popup->idAt( 0 );
1406         if ( id <= QAD_TopLabel_Popup_ID )
1407           popup->removeItemAt( 0 );
1408         else
1409           break;
1410       }
1411       if ( parentComponent.isNull() )  {
1412         ////// objects belong to different modules
1413         popup->removeItem(QAD_Display_Popup_ID);
1414         popup->removeItem(QAD_DisplayOnly_Popup_ID);
1415         popup->removeItem(QAD_Erase_Popup_ID);
1416       }
1417       else {
1418         objectName = tr( "GEOM_MEN_POPUP_NAME" ).arg( nbSel );
1419       }
1420     }
1421     else {
1422       ////// all selected objects belong to GEOM module
1423       popup->removeItem( 901 ); // "Rename"
1424
1425       SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
1426       bool isComponent  = false;
1427       bool needOpen     = false;
1428       bool needDisplay  = false;
1429       bool needErase    = false;
1430       int needToPublish = 0;
1431
1432       for( ;It.More();It.Next() ) {
1433         Handle(SALOME_InteractiveObject) anIObject = It.Value();
1434
1435         if ( aViewFrame->isVisible( anIObject ) )
1436           needErase   = true;
1437         else
1438           needDisplay = true;
1439
1440         if( anIObject->hasEntry() ) {
1441           needToPublish = -1; /////// VSR : TO BE REMOVED
1442           SALOMEDS::SObject_var obj = anActiveStudy->getStudyDocument()->FindObjectID( anIObject->getEntry() );
1443           SALOMEDS::GenericAttribute_var aTmpAttr;
1444           if ( !obj->_is_nil() && !obj->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR" ) )
1445             needOpen = true;  /////// VSR : TO BE REMOVED
1446           if ( !obj->_is_nil() && QString( obj->GetID() ) == QString( obj->GetFatherComponent()->GetID() ) )
1447             isComponent = true;
1448         }
1449         else {
1450           if ( needToPublish != -1 ) needToPublish = 1;
1451         }
1452       }
1453       if( needOpen || ( !isOCCViewer && !isVTKViewer ) ) {
1454         ////// Data is not loaded yet or current viewer is neither OCC nor VTK
1455         popup->removeItem( 803 );  // "Display Mode"
1456         popup->removeItem( 8032 ); // "Color"
1457         popup->removeItem( 8033 ); // "Transparency"
1458         popup->removeItem( 8034 ); // "Isos"
1459         popup->removeItem( 804 );  // "Add in Study"
1460         popup->removeItem( QAD_DisplayOnly_Popup_ID );
1461         popup->removeItem( QAD_Display_Popup_ID );
1462         popup->removeItem( QAD_Erase_Popup_ID );
1463       }
1464       else {
1465         popup->removeItem( 9024 );   // "Open"
1466         if ( needToPublish <= 0 )
1467           popup->removeItem( 804 );  // "Add in Study"
1468
1469         if( isComponent ) {
1470           popup->removeItem( 803 );  // "Display Mode"
1471           popup->removeItem( 8032 ); // "Color"
1472           popup->removeItem( 8033 ); // "Transparency"
1473           popup->removeItem( 8034 ); // "Isos"
1474           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1475         }
1476
1477         if ( !needDisplay )
1478           popup->removeItem( QAD_Display_Popup_ID );
1479         if ( !needErase )
1480           popup->removeItem( QAD_Erase_Popup_ID );
1481         if ( !isOCCViewer )
1482           popup->removeItem( 8034 ); // "Isos"
1483       }
1484     }
1485   }
1486
1487   // check popup for unnecessary separators
1488   QAD_Tools::checkPopup( popup );
1489   // find popup menu's TopLabel item (with title)
1490   int topItem = popup->indexOf( QAD_TopLabel_Popup_ID );
1491   if ( topItem >= 0 ) {
1492     // remove popup menu's title item
1493     popup->removeItem( QAD_TopLabel_Popup_ID );
1494     if ( theParent == "Viewer" && !objectName.isEmpty() && popup->count() > 0 ) {
1495       // set bold font for popup menu's title
1496       QFont f = popup->font(); f.setBold( TRUE );
1497       popup->removeItem( QAD_TopLabel_Popup_ID );
1498       popup->insertItem( new CustomItem( objectName, f ), QAD_TopLabel_Popup_ID, topItem );
1499     }
1500   }
1501
1502   return false;
1503 }
1504
1505 */
1506
1507 //=======================================================================
1508 // function : GeometryGUI::BuildPresentation()
1509 // purpose  : 
1510 //=======================================================================
1511 void GeometryGUI::BuildPresentation( const Handle(SALOME_InteractiveObject)& io, SUIT_ViewWindow* win )
1512 {
1513   //GEOM_Displayer().Display( io, false, win );
1514 }
1515
1516 //=======================================================================
1517 // function : onWindowActivated()
1518 // purpose  : update menu items' status - disable non-OCC-viewer-compatible actions
1519 //=======================================================================
1520 void GeometryGUI::onWindowActivated( SUIT_ViewWindow* win )
1521 {
1522   if ( !win )
1523     return;
1524
1525   const bool ViewOCC = ( win->getViewManager()->getType() == OCCViewer_Viewer::Type() );
1526 //  const bool ViewVTK = ( win->getViewManager()->getType() == SVTK_Viewer::Type() );
1527   
1528   // disable non-OCC viewframe menu commands
1529 //  action( 404 )->setEnabled( ViewOCC ); // SKETCHER
1530   action( 603 )->setEnabled( ViewOCC ); // SuppressFace
1531   action( 604 )->setEnabled( ViewOCC ); // SuppressHole
1532   action( 606 )->setEnabled( ViewOCC ); // CloseContour
1533   action( 607 )->setEnabled( ViewOCC ); // RemoveInternalWires
1534   action( 608 )->setEnabled( ViewOCC ); // AddPointOnEdge
1535 //  action( 609 )->setEnabled( ViewOCC ); // Free boundaries
1536   action( 413 )->setEnabled( ViewOCC ); // Isos Settings
1537
1538   action( 800 )->setEnabled( ViewOCC ); // Create Group
1539   action( 801 )->setEnabled( ViewOCC ); // Edit Group
1540
1541   action( 9998 )->setEnabled( ViewOCC ); // MENU BLOCKS - MULTI-TRANSFORMATION
1542 }
1543
1544 void GeometryGUI::windows( QMap<int, int>& mappa ) const
1545 {
1546   mappa.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::DockLeft );
1547   mappa.insert( SalomeApp_Application::WT_PyConsole, Qt::DockBottom );
1548 }
1549
1550 void GeometryGUI::viewManagers( QStringList& lst ) const
1551 {
1552   lst.append( OCCViewer_Viewer::Type() );
1553 }
1554
1555 void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
1556 {
1557   if ( vm->getType() == OCCViewer_Viewer::Type() )
1558   {
1559     qDebug( "connect" );
1560     connect( vm, SIGNAL( keyPress  ( SUIT_ViewWindow*, QKeyEvent* ) ),
1561              this, SLOT( OnKeyPress( SUIT_ViewWindow*, QKeyEvent* ) ) );
1562     connect( vm, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
1563              this, SLOT( OnMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
1564     connect( vm, SIGNAL( mouseMove ( SUIT_ViewWindow*, QMouseEvent* ) ),
1565              this, SLOT( OnMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1566
1567
1568     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1569     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1570
1571     // disable OCC selectors
1572     getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1573     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1574       sr->setEnabled(true);
1575   }
1576   else if ( vm->getType() == SVTK_Viewer::Type() )
1577   {
1578     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1579     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1580
1581     // disable VTK selectors
1582     getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1583     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1584       sr->setEnabled(true);
1585   }
1586 }
1587
1588 void GeometryGUI::onViewManagerRemoved( SUIT_ViewManager* vm )
1589 {
1590   SUIT_ViewModel* viewer = vm->getViewModel();
1591   if ( vm->getType() == OCCViewer_Viewer::Type() )
1592   {
1593     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1594       if ( sr->viewer() == viewer )
1595       {
1596         myOCCSelectors.remove( sr );
1597         break;
1598       }
1599   }
1600   if ( vm->getType() == SVTK_Viewer::Type() )
1601   {
1602     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1603       if ( sr->viewer() == viewer )
1604       {
1605         myVTKSelectors.remove( sr );
1606         break;
1607       }
1608   }
1609 }
1610
1611 QString GeometryGUI::engineIOR() const
1612 {
1613   if ( !CORBA::is_nil( GetGeomGen() ) )
1614     return QString( getApp()->orb()->object_to_string( GetGeomGen() ) );
1615   return QString( "" );
1616 }
1617
1618 LightApp_Selection* GeometryGUI::createSelection() const
1619 {
1620   return new GEOMGUI_Selection();
1621 }
1622
1623 void GeometryGUI::contextMenuPopup( const QString& client, QPopupMenu* menu, QString& title )
1624 {
1625   SalomeApp_Module::contextMenuPopup( client, menu, title );
1626   SALOME_ListIO lst;
1627   getApp()->selectionMgr()->selectedObjects( lst );
1628   if ( ( client == "OCCViewer" || client == "VTKViewer" ) && lst.Extent() == 1 ) {
1629     Handle(SALOME_InteractiveObject) io = lst.First();
1630     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( application()->activeStudy() );
1631     _PTR(Study) study = appStudy->studyDS();
1632     _PTR(SObject) obj = study->FindObjectID( io->getEntry() );
1633     if ( obj )
1634       title = QString( obj->GetName().c_str() );
1635   }
1636 }
1637
1638 void GeometryGUI::createPreferences()
1639 {
1640   int tabId = addPreference( tr( "PREF_TAB_SETTINGS" ) );
1641
1642   int genGroup = addPreference( tr( "PREF_GROUP_GENERAL" ), tabId );
1643   addPreference( tr( "PREF_SHADING_COLOR" ), genGroup,
1644                  LightApp_Preferences::Color, "Geometry", "shading_color" );
1645   int step = addPreference( tr( "PREF_STEP_VALUE" ), genGroup,
1646                             LightApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
1647   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), genGroup,
1648                             LightApp_Preferences::Selector, "Geometry", "display_mode" );
1649
1650   setPreferenceProperty( genGroup, "columns", 1 );
1651
1652   setPreferenceProperty( step, "min", 0.001 );
1653   setPreferenceProperty( step, "max", 10000 );
1654   setPreferenceProperty( step, "precision", 3 );
1655
1656   // Set property for default display mode
1657   QStringList aModesList;
1658   aModesList.append( tr("MEN_WIREFRAME") );
1659   aModesList.append( tr("MEN_SHADING") );
1660   
1661   QValueList<QVariant> anIndexesList;
1662   anIndexesList.append(0);
1663   anIndexesList.append(1);
1664   
1665   setPreferenceProperty( dispmode, "strings", aModesList );
1666   setPreferenceProperty( dispmode, "indexes", anIndexesList );
1667 }
1668
1669 void GeometryGUI::preferencesChanged( const QString& section, const QString& param )
1670 {
1671 }
1672
1673 LightApp_Displayer* GeometryGUI::displayer()
1674 {
1675   if( !myDisplayer )
1676     myDisplayer = new GEOM_Displayer( dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
1677   return myDisplayer;
1678 }