]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI.cxx
Salome HOME
PAL1584, PAL1586: Exclude 'Color' item from popup-menu of SMESH and VISU objects...
[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   // ---- create popup menus --------------------------
1072
1073   QString clientOCCorVTK = "(client='OCCViewer' or client='VTKViewer')";
1074   QString clientOCCorVTK_AndSomeVisible = clientOCCorVTK + " and selcount>0 and isVisible";
1075
1076   QtxPopupMgr* mgr = popupMgr();
1077   mgr->insert( action(  901 ), -1, -1 );  // rename
1078   mgr->setRule( action( 901 ), "$type in {'Shape' 'Group'} and selcount=1", true );
1079   mgr->insert( action(  8001 ), -1, -1 ); // create group
1080   mgr->setRule( action( 8001 ), "client='ObjectBrowser' and type='Shape' and selcount=1 and isOCC=true", true );
1081   mgr->insert( action(  801 ), -1, -1 );  // edit group
1082   mgr->setRule( action( 801 ),  "client='ObjectBrowser' and type='Group' and selcount=1 and isOCC=true", true );
1083   mgr->insert( separator(), -1, -1 );     // -----------
1084   dispmodeId = mgr->insert(  tr( "MEN_DISPLAY_MODE" ), -1, -1 ); // display mode menu
1085   mgr->insert( action(  80311 ), dispmodeId, -1 ); // wireframe
1086   mgr->setRule( action( 80311 ), clientOCCorVTK_AndSomeVisible, true );
1087   mgr->setRule( action( 80311 ), clientOCCorVTK + " and displaymode='Wireframe'", false );
1088   mgr->insert( action(  80312 ), dispmodeId, -1 ); // shading
1089   mgr->setRule( action( 80312 ), clientOCCorVTK_AndSomeVisible, true );
1090   mgr->setRule( action( 80312 ), clientOCCorVTK + " and displaymode='Shading'", false );
1091   mgr->insert( separator(), -1, -1 );     // -----------
1092   mgr->insert( action(  8032 ), -1, -1 ); // color
1093   mgr->setRule( action( 8032 ), clientOCCorVTK_AndSomeVisible + " and ($component={'GEOM'})", true );
1094   mgr->insert( action(  8033 ), -1, -1 ); // transparency
1095   mgr->setRule( action( 8033 ), clientOCCorVTK_AndSomeVisible, true );
1096   mgr->insert( action(  8034 ), -1, -1 ); // isos
1097   mgr->setRule( action( 8034 ), "client='OCCViewer' and selcount>0 and isVisible", true );
1098   mgr->insert( separator(), -1, -1 );     // -----------
1099
1100
1101   QString canDisplay = "($component={'GEOM'}) and (selcount>0) and ({true} in $canBeDisplayed) ",
1102           onlyComponent = "((type='Component') and selcount=1)",
1103           rule = canDisplay + "and ((($type in {%1}) and( %2 )) or " + onlyComponent + ")",
1104           types = "'Shape' 'Group'";
1105
1106   mgr->insert( action(  216 ), -1, -1 ); // display
1107   mgr->setRule( action( 216 ), rule.arg( types ).arg( "not isVisible" ), true );
1108
1109   mgr->insert( action(  215 ), -1, -1 ); // erase
1110   mgr->setRule( action( 215 ), rule.arg( types ).arg( "isVisible" ), true );
1111
1112   mgr->insert( action(  214 ), -1, -1 ); // erase All
1113   mgr->setRule( action( 214 ), clientOCCorVTK, true );
1114
1115   mgr->insert( action(  213 ), -1, -1 ); // display only
1116   mgr->setRule( action( 213 ), rule.arg( types ).arg( "true" ), true );
1117   mgr->insert( separator(), -1, -1 );
1118
1119   mgr->hide( mgr->actionId( action( myEraseAll ) ) );
1120 }
1121
1122 //=======================================================================
1123 // function : GeometryGUI::activateModule()
1124 // purpose  : Called when GEOM module is activated
1125 //=======================================================================
1126 bool GeometryGUI::activateModule( SUIT_Study* study )
1127 {
1128   if ( CORBA::is_nil( myComponentGeom ) )
1129     return false;
1130
1131   bool res = SalomeApp_Module::activateModule( study );
1132
1133   if ( !res )
1134     return false;
1135
1136   setMenuShown( true );
1137   setToolShown( true );
1138
1139   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1140           this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1141
1142   // Reset actions accelerator keys
1143   //action(111)->setAccel(QKeySequence(CTRL + Key_I)); // Import
1144   //action(121)->setAccel(QKeySequence(CTRL + Key_E)); // Export
1145   action(111)->setEnabled(true); // Import
1146   action(121)->setEnabled(true); // Export
1147
1148   GUIMap::Iterator it;
1149   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1150     it.data()->activate( application()->desktop() );
1151
1152   LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1153   SUIT_ViewManager* vm;
1154   ViewManagerList OCCViewManagers, VTKViewManagers;
1155   application()->viewManagers( OCCViewer_Viewer::Type(), OCCViewManagers );
1156   for ( vm = OCCViewManagers.first(); vm; vm = OCCViewManagers.next() )
1157     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1158   application()->viewManagers( SVTK_Viewer::Type(), VTKViewManagers );
1159   for ( vm = VTKViewManagers.first(); vm; vm = VTKViewManagers.next() )
1160     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1161
1162   // disable OCC selectors
1163   getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1164   for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1165     sr->setEnabled(true);
1166
1167   // disable VTK selectors
1168   getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1169   for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1170     sr->setEnabled(true);
1171
1172   return true;
1173 }
1174
1175
1176 //=======================================================================
1177 // function : GeometryGUI::deactivateModule()
1178 // purpose  : Called when GEOM module is deactivated
1179 //=======================================================================
1180 bool GeometryGUI::deactivateModule( SUIT_Study* study )
1181 {
1182   setMenuShown( false );
1183   setToolShown( false );
1184
1185   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ), 
1186              this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1187
1188   EmitSignalCloseAllDialogs();
1189
1190   GUIMap::Iterator it;
1191   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1192     it.data()->deactivate();  
1193
1194   // Unset actions accelerator keys
1195   //action(111)->setAccel(QKeySequence()); // Import
1196   //action(121)->setAccel(QKeySequence()); // Export
1197   action(111)->setEnabled(false); // Import
1198   action(121)->setEnabled(false); // Export
1199
1200   myOCCSelectors.clear();
1201   getApp()->selectionMgr()->setEnabled( true, OCCViewer_Viewer::Type() );
1202
1203   myVTKSelectors.clear();
1204   getApp()->selectionMgr()->setEnabled( true, SVTK_Viewer::Type() );
1205
1206   return SalomeApp_Module::deactivateModule( study );
1207 }
1208
1209 //=================================================================================
1210 // function : GeometryGUI::DefinePopup()
1211 // purpose  : Called from desktop to define popup menu [static]
1212 //=================================================================================
1213 /*
1214 void GeometryGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject)
1215 {
1216   QAD_Study* ActiveStudy = QAD_Application::getDesktop()->getActiveStudy();
1217   SALOME_Selection* Sel  = SALOME_Selection::Selection(ActiveStudy->getSelection());
1218
1219   theObject  = "";
1220   theContext = "";
1221
1222   if ( theParent == "Viewer" ) {
1223     if ( Sel->IObjectCount() == 0 )
1224       theContext = "NothingSelected";
1225   }
1226
1227   if ( Sel->IObjectCount() == 1 ) {
1228     Handle(SALOME_InteractiveObject) IO = Sel->firstIObject();
1229     if( IO->hasEntry() ) {
1230       SALOMEDS::SObject_var sobj = ActiveStudy->getStudyDocument()->FindObjectID( IO->getEntry() );
1231       if ( !sobj->_is_nil() ) {
1232         SALOMEDS::SComponent_var scomp = sobj->GetFatherComponent();
1233         if ( !strcmp(scomp->GetID(), IO->getEntry() ) ) {
1234           // component is selected
1235           theObject = "Component";
1236         }
1237         else {
1238           GEOM::GEOM_Object_var aGObj = GEOM::GEOM_Object::_narrow( sobj->GetObject() );
1239           if ( !CORBA::is_nil( aGObj ) ) {
1240             switch( aGObj->GetType() ) {
1241             case GEOM_GROUP:
1242               theObject = "Group";
1243               break;
1244             default:
1245               theObject = "Shape";
1246               break;
1247             }
1248           }
1249         }
1250       }
1251     }
1252   }
1253 }
1254
1255 //=================================================================================
1256 // function : GeometryGUI::CustomPopup()
1257 // purpose  : Called from desktop to create popup menu [static]
1258 //=================================================================================
1259 bool GeometryGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
1260                               const QString& theParent, const QString& theObject)
1261 {
1262   GeometryGUI* geomGUI = GetGeomGUI();
1263
1264   // Deactivate any non modal dialog box to get the neutral point
1265   geomGUI->EmitSignalDeactivateDialog();
1266   QAD_Study* anActiveStudy    = parent->getActiveStudy();
1267   QAD_StudyFrame* aStudyFrame = anActiveStudy->getActiveStudyFrame();
1268   QAD_ViewFrame* aViewFrame   = aStudyFrame->getRightFrame()->getViewFrame();
1269   SALOME_Selection* Sel       = SALOME_Selection::Selection(anActiveStudy->getSelection());
1270   QString parentComponent     = ((SALOMEGUI_Desktop*)parent)->getComponentFromSelection();
1271   bool isOCCViewer            = aViewFrame->getTypeView() == VIEW_OCC;
1272   bool isVTKViewer            = aViewFrame->getTypeView() == VIEW_VTK;
1273   int aDisplayMode            = 0;
1274   QString objectName;
1275
1276   if ( aViewFrame->getTypeView() == VIEW_OCC )
1277     aDisplayMode = ((OCCViewer_ViewFrame*)aViewFrame)->getViewer()->getAISContext()->DisplayMode();
1278   else if ( aViewFrame->getTypeView() == VIEW_VTK )
1279     aDisplayMode = (dynamic_cast<SVTK_ViewFrame*>( aViewFrame )->getRWInteractor()->GetDisplayMode();
1280
1281   int nbSel = Sel->IObjectCount();
1282
1283   if( nbSel == 0 ) {
1284     ////// NOTHING SELECTED
1285     popup->clear();
1286   } 
1287   else if ( nbSel == 1 ) {
1288     ////// SINGLE OBJECT SELECTION
1289     if ( parentComponent != parent->getActiveComponent() )  {
1290       ////// selected object does not belong to GEOM module:
1291       // remove all commands except Display/Erase...
1292       while ( 1 ) {
1293         int id = popup->idAt( 0 );
1294         if ( id <= QAD_TopLabel_Popup_ID )
1295           popup->removeItemAt( 0 );
1296         else
1297           break;
1298       }
1299     }
1300     else {
1301       ////// selected object belong to the GEOM module
1302       // get interactive object
1303       Handle(SALOME_InteractiveObject) IObject = Sel->firstIObject();
1304       objectName = IObject->getName();
1305       // if object has entry get SObject
1306       SALOMEDS::SObject_var SO;
1307       if ( IObject->hasEntry() )
1308         SO = anActiveStudy->getStudyDocument()->FindObjectID( IObject->getEntry() );
1309
1310       if ( theObject == "Component" ) {
1311         ////// menu for component
1312         if ( !isOCCViewer && !isVTKViewer ) {
1313           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1314           popup->removeItem( QAD_Display_Popup_ID );
1315           popup->removeItem( QAD_Erase_Popup_ID );
1316         }
1317       }
1318       else {
1319         ////// not component (should be shape)
1320         if ( IObject->hasEntry() )  /////// VSR : TO BE REMOVED
1321           popup->removeItem( 804 ); // "Add in Study"
1322
1323         // Here could be analysis of the geom shape's type
1324         // ... //
1325
1326         SALOMEDS::GenericAttribute_var aTmpAttr;
1327         if( SO->_is_nil() || SO->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR") )
1328           popup->removeItem( 9024 ); // "Open" /////// VSR : TO BE REMOVED
1329
1330         if ( !isOCCViewer && theParent == "ObjectBrowser" ) {
1331           if ( theObject == "Shape" )
1332             popup->removeItem( 800 ); // Create Group
1333           else if ( theObject == "Group" )
1334             popup->removeItem( 801 ); // Edit Group
1335         }
1336
1337         if ( isOCCViewer || isVTKViewer ) {
1338           ////// current viewer is OCC or VTK
1339           SALOME_Prs* prs = aViewFrame->CreatePrs( IObject->getEntry() );
1340           if ( aViewFrame->isVisible( IObject ) ) {
1341             ////// object is already displayed in the viewer
1342             popup->removeItem( QAD_Display_Popup_ID );
1343             if ( isOCCViewer ) {
1344               ////// OCC viewer only
1345               OCCViewer_Prs* occPrs = dynamic_cast<OCCViewer_Prs*>( prs );
1346               if ( occPrs && !occPrs->IsNull() ) {
1347                 AIS_ListOfInteractive ioList;
1348                 occPrs->GetObjects( ioList );
1349                 QMenuItem* mi = popup->findItem( 803 );
1350                 if ( mi && mi->popup() ) {
1351                   if ( ioList.First()->DisplayMode() == 0 )
1352                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1353                   else if ( ioList.First()->DisplayMode() == 1 )
1354                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1355                   else if ( ioList.First()->DisplayMode() < 0 )
1356                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1357                 }
1358               }
1359             }
1360             else {
1361               ////// VTK viewer only
1362               popup->removeItem( 8034 ); // "Isos"
1363               SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
1364               if ( vtkPrs && !vtkPrs->IsNull() ) {
1365                 vtkActorCollection* actorList = vtkPrs->GetObjects();
1366                 actorList->InitTraversal();
1367                 SALOME_Actor* ac = SALOME_Actor::SafeDownCast( actorList->GetNextActor() );
1368                 QMenuItem* mi = popup->findItem( 803 );
1369                 if ( ac && mi && mi->popup() ) {
1370                   if ( ac->getDisplayMode() == 0 )
1371                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1372                   else if ( ac->getDisplayMode() == 1 )
1373                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1374                   else
1375                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1376                 }
1377               }
1378             }
1379           }
1380           else {
1381             ////// object is not yet displayed in the viewer
1382             popup->removeItem( 803 );  // "Display Mode"
1383             popup->removeItem( 8032 ); // "Color"
1384             popup->removeItem( 8033 ); // "Transparency"
1385             popup->removeItem( 8034 ); // "Isos"
1386             popup->removeItem( QAD_Erase_Popup_ID );
1387           }
1388           delete prs;
1389         }
1390         else {
1391           ////// other viewer type (neither OCC nor VTK)
1392           popup->removeItem( 803 );  // "Display Mode"
1393           popup->removeItem( 8032 ); // "Color"
1394           popup->removeItem( 8033 ); // "Transparency"
1395           popup->removeItem( 8034 ); // "Isos"
1396           popup->removeItem( QAD_Display_Popup_ID );
1397           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1398           popup->removeItem( QAD_Erase_Popup_ID );
1399         }
1400       }
1401     }
1402   }
1403   else {
1404     ////// MULTIPLE SELECTION
1405     if ( parentComponent != parent->getActiveComponent() )  {
1406       ////// not GEOM module objects or objects belong to different modules
1407       // remove all commands except Display/Erase...
1408       while ( 1 ) {
1409         int id = popup->idAt( 0 );
1410         if ( id <= QAD_TopLabel_Popup_ID )
1411           popup->removeItemAt( 0 );
1412         else
1413           break;
1414       }
1415       if ( parentComponent.isNull() )  {
1416         ////// objects belong to different modules
1417         popup->removeItem(QAD_Display_Popup_ID);
1418         popup->removeItem(QAD_DisplayOnly_Popup_ID);
1419         popup->removeItem(QAD_Erase_Popup_ID);
1420       }
1421       else {
1422         objectName = tr( "GEOM_MEN_POPUP_NAME" ).arg( nbSel );
1423       }
1424     }
1425     else {
1426       ////// all selected objects belong to GEOM module
1427       popup->removeItem( 901 ); // "Rename"
1428
1429       SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
1430       bool isComponent  = false;
1431       bool needOpen     = false;
1432       bool needDisplay  = false;
1433       bool needErase    = false;
1434       int needToPublish = 0;
1435
1436       for( ;It.More();It.Next() ) {
1437         Handle(SALOME_InteractiveObject) anIObject = It.Value();
1438
1439         if ( aViewFrame->isVisible( anIObject ) )
1440           needErase   = true;
1441         else
1442           needDisplay = true;
1443
1444         if( anIObject->hasEntry() ) {
1445           needToPublish = -1; /////// VSR : TO BE REMOVED
1446           SALOMEDS::SObject_var obj = anActiveStudy->getStudyDocument()->FindObjectID( anIObject->getEntry() );
1447           SALOMEDS::GenericAttribute_var aTmpAttr;
1448           if ( !obj->_is_nil() && !obj->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR" ) )
1449             needOpen = true;  /////// VSR : TO BE REMOVED
1450           if ( !obj->_is_nil() && QString( obj->GetID() ) == QString( obj->GetFatherComponent()->GetID() ) )
1451             isComponent = true;
1452         }
1453         else {
1454           if ( needToPublish != -1 ) needToPublish = 1;
1455         }
1456       }
1457       if( needOpen || ( !isOCCViewer && !isVTKViewer ) ) {
1458         ////// Data is not loaded yet or current viewer is neither OCC nor VTK
1459         popup->removeItem( 803 );  // "Display Mode"
1460         popup->removeItem( 8032 ); // "Color"
1461         popup->removeItem( 8033 ); // "Transparency"
1462         popup->removeItem( 8034 ); // "Isos"
1463         popup->removeItem( 804 );  // "Add in Study"
1464         popup->removeItem( QAD_DisplayOnly_Popup_ID );
1465         popup->removeItem( QAD_Display_Popup_ID );
1466         popup->removeItem( QAD_Erase_Popup_ID );
1467       }
1468       else {
1469         popup->removeItem( 9024 );   // "Open"
1470         if ( needToPublish <= 0 )
1471           popup->removeItem( 804 );  // "Add in Study"
1472
1473         if( isComponent ) {
1474           popup->removeItem( 803 );  // "Display Mode"
1475           popup->removeItem( 8032 ); // "Color"
1476           popup->removeItem( 8033 ); // "Transparency"
1477           popup->removeItem( 8034 ); // "Isos"
1478           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1479         }
1480
1481         if ( !needDisplay )
1482           popup->removeItem( QAD_Display_Popup_ID );
1483         if ( !needErase )
1484           popup->removeItem( QAD_Erase_Popup_ID );
1485         if ( !isOCCViewer )
1486           popup->removeItem( 8034 ); // "Isos"
1487       }
1488     }
1489   }
1490
1491   // check popup for unnecessary separators
1492   QAD_Tools::checkPopup( popup );
1493   // find popup menu's TopLabel item (with title)
1494   int topItem = popup->indexOf( QAD_TopLabel_Popup_ID );
1495   if ( topItem >= 0 ) {
1496     // remove popup menu's title item
1497     popup->removeItem( QAD_TopLabel_Popup_ID );
1498     if ( theParent == "Viewer" && !objectName.isEmpty() && popup->count() > 0 ) {
1499       // set bold font for popup menu's title
1500       QFont f = popup->font(); f.setBold( TRUE );
1501       popup->removeItem( QAD_TopLabel_Popup_ID );
1502       popup->insertItem( new CustomItem( objectName, f ), QAD_TopLabel_Popup_ID, topItem );
1503     }
1504   }
1505
1506   return false;
1507 }
1508
1509 */
1510
1511 //=======================================================================
1512 // function : GeometryGUI::BuildPresentation()
1513 // purpose  : 
1514 //=======================================================================
1515 void GeometryGUI::BuildPresentation( const Handle(SALOME_InteractiveObject)& io, SUIT_ViewWindow* win )
1516 {
1517   //GEOM_Displayer().Display( io, false, win );
1518 }
1519
1520 //=======================================================================
1521 // function : onWindowActivated()
1522 // purpose  : update menu items' status - disable non-OCC-viewer-compatible actions
1523 //=======================================================================
1524 void GeometryGUI::onWindowActivated( SUIT_ViewWindow* win )
1525 {
1526   if ( !win )
1527     return;
1528
1529   const bool ViewOCC = ( win->getViewManager()->getType() == OCCViewer_Viewer::Type() );
1530 //  const bool ViewVTK = ( win->getViewManager()->getType() == SVTK_Viewer::Type() );
1531   
1532   // disable non-OCC viewframe menu commands
1533 //  action( 404 )->setEnabled( ViewOCC ); // SKETCHER
1534   action( 603 )->setEnabled( ViewOCC ); // SuppressFace
1535   action( 604 )->setEnabled( ViewOCC ); // SuppressHole
1536   action( 606 )->setEnabled( ViewOCC ); // CloseContour
1537   action( 607 )->setEnabled( ViewOCC ); // RemoveInternalWires
1538   action( 608 )->setEnabled( ViewOCC ); // AddPointOnEdge
1539 //  action( 609 )->setEnabled( ViewOCC ); // Free boundaries
1540   action( 413 )->setEnabled( ViewOCC ); // Isos Settings
1541
1542   action( 800 )->setEnabled( ViewOCC ); // Create Group
1543   action( 801 )->setEnabled( ViewOCC ); // Edit Group
1544
1545   action( 9998 )->setEnabled( ViewOCC ); // MENU BLOCKS - MULTI-TRANSFORMATION
1546 }
1547
1548 void GeometryGUI::windows( QMap<int, int>& mappa ) const
1549 {
1550   mappa.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::DockLeft );
1551   mappa.insert( SalomeApp_Application::WT_PyConsole, Qt::DockBottom );
1552 }
1553
1554 void GeometryGUI::viewManagers( QStringList& lst ) const
1555 {
1556   lst.append( OCCViewer_Viewer::Type() );
1557 }
1558
1559 void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
1560 {
1561   if ( vm->getType() == OCCViewer_Viewer::Type() )
1562   {
1563     qDebug( "connect" );
1564     connect( vm, SIGNAL( keyPress  ( SUIT_ViewWindow*, QKeyEvent* ) ),
1565              this, SLOT( OnKeyPress( SUIT_ViewWindow*, QKeyEvent* ) ) );
1566     connect( vm, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
1567              this, SLOT( OnMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
1568     connect( vm, SIGNAL( mouseMove ( SUIT_ViewWindow*, QMouseEvent* ) ),
1569              this, SLOT( OnMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1570
1571
1572     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1573     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1574
1575     // disable OCC selectors
1576     getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1577     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1578       sr->setEnabled(true);
1579   }
1580   else if ( vm->getType() == SVTK_Viewer::Type() )
1581   {
1582     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1583     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1584
1585     // disable VTK selectors
1586     getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1587     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1588       sr->setEnabled(true);
1589   }
1590 }
1591
1592 void GeometryGUI::onViewManagerRemoved( SUIT_ViewManager* vm )
1593 {
1594   SUIT_ViewModel* viewer = vm->getViewModel();
1595   if ( vm->getType() == OCCViewer_Viewer::Type() )
1596   {
1597     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1598       if ( sr->viewer() == viewer )
1599       {
1600         myOCCSelectors.remove( sr );
1601         break;
1602       }
1603   }
1604   if ( vm->getType() == SVTK_Viewer::Type() )
1605   {
1606     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1607       if ( sr->viewer() == viewer )
1608       {
1609         myVTKSelectors.remove( sr );
1610         break;
1611       }
1612   }
1613 }
1614
1615 QString GeometryGUI::engineIOR() const
1616 {
1617   if ( !CORBA::is_nil( GetGeomGen() ) )
1618     return QString( getApp()->orb()->object_to_string( GetGeomGen() ) );
1619   return QString( "" );
1620 }
1621
1622 LightApp_Selection* GeometryGUI::createSelection() const
1623 {
1624   return new GEOMGUI_Selection();
1625 }
1626
1627 void GeometryGUI::contextMenuPopup( const QString& client, QPopupMenu* menu, QString& title )
1628 {
1629   SalomeApp_Module::contextMenuPopup( client, menu, title );
1630   SALOME_ListIO lst;
1631   getApp()->selectionMgr()->selectedObjects( lst );
1632   if ( ( client == "OCCViewer" || client == "VTKViewer" ) && lst.Extent() == 1 ) {
1633     Handle(SALOME_InteractiveObject) io = lst.First();
1634     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( application()->activeStudy() );
1635     _PTR(Study) study = appStudy->studyDS();
1636     _PTR(SObject) obj = study->FindObjectID( io->getEntry() );
1637     if ( obj )
1638       title = QString( obj->GetName().c_str() );
1639   }
1640 }
1641
1642 void GeometryGUI::createPreferences()
1643 {
1644   int tabId = addPreference( tr( "PREF_TAB_SETTINGS" ) );
1645
1646   int genGroup = addPreference( tr( "PREF_GROUP_GENERAL" ), tabId );
1647   addPreference( tr( "PREF_SHADING_COLOR" ), genGroup,
1648                  LightApp_Preferences::Color, "Geometry", "shading_color" );
1649   int step = addPreference( tr( "PREF_STEP_VALUE" ), genGroup,
1650                             LightApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
1651   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), genGroup,
1652                             LightApp_Preferences::Selector, "Geometry", "display_mode" );
1653
1654   setPreferenceProperty( genGroup, "columns", 1 );
1655
1656   setPreferenceProperty( step, "min", 0.001 );
1657   setPreferenceProperty( step, "max", 10000 );
1658   setPreferenceProperty( step, "precision", 3 );
1659
1660   // Set property for default display mode
1661   QStringList aModesList;
1662   aModesList.append( tr("MEN_WIREFRAME") );
1663   aModesList.append( tr("MEN_SHADING") );
1664   
1665   QValueList<QVariant> anIndexesList;
1666   anIndexesList.append(0);
1667   anIndexesList.append(1);
1668   
1669   setPreferenceProperty( dispmode, "strings", aModesList );
1670   setPreferenceProperty( dispmode, "indexes", anIndexesList );
1671 }
1672
1673 void GeometryGUI::preferencesChanged( const QString& section, const QString& param )
1674 {
1675 }
1676
1677 LightApp_Displayer* GeometryGUI::displayer()
1678 {
1679   if( !myDisplayer )
1680     myDisplayer = new GEOM_Displayer( dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
1681   return myDisplayer;
1682 }