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