Salome HOME
NPAL18352: Selection bug in GEOM GUI.
[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 <Aspect_TypeOfMarker.hxx>
65 #include <OSD_SharedLibrary.hxx>
66
67 #include <utilities.h>
68
69 #include <vtkCamera.h>
70 #include <vtkRenderer.h>
71
72
73 extern "C" {
74   Standard_EXPORT CAM_Module* createModule() {
75     return new GeometryGUI();
76   }
77 }
78
79
80
81 GEOM::GEOM_Gen_var GeometryGUI::myComponentGeom = GEOM::GEOM_Gen::_nil();
82
83 GEOM::GEOM_Gen_var GeometryGUI::GetGeomGen()
84 {
85   // Bug 12290: exception in Mesh GUI on GEOMBase::GetShape() if Geometry GUI hasn't been loaded
86   if (CORBA::is_nil(myComponentGeom))
87     InitGeomGen();
88   return GeometryGUI::myComponentGeom;
89 }
90
91 bool GeometryGUI::InitGeomGen()
92 {
93   GeometryGUI aGG;
94   if( CORBA::is_nil( myComponentGeom ) ) return false;
95   return true;
96 }
97
98 //=======================================================================
99 // function : ClientSObjectToObject
100 // purpose  :
101 //=======================================================================
102 CORBA::Object_var GeometryGUI::ClientSObjectToObject (_PTR(SObject) theSObject)
103 {
104   _PTR(GenericAttribute) anAttr;
105   CORBA::Object_var anObj;
106   try {
107     std::string aValue = theSObject->GetIOR();
108     if (strcmp(aValue.c_str(), "") != 0) {
109       CORBA::ORB_ptr anORB = SalomeApp_Application::orb();
110       anObj = anORB->string_to_object(aValue.c_str());
111     }
112   } catch(...) {
113     INFOS("ClientSObjectToObject - Unknown exception was occured!!!");
114   }
115   return anObj._retn();
116 }
117
118 //=======================================================================
119 // function : ClientStudyToStudy
120 // purpose  :
121 //=======================================================================
122 SALOMEDS::Study_var GeometryGUI::ClientStudyToStudy (_PTR(Study) theStudy)
123 {
124   SALOME_NamingService *aNamingService = SalomeApp_Application::namingService();
125   CORBA::Object_var aSMObject = aNamingService->Resolve("/myStudyManager");
126   SALOMEDS::StudyManager_var aStudyManager = SALOMEDS::StudyManager::_narrow(aSMObject);
127   int aStudyID = theStudy->StudyId();
128   SALOMEDS::Study_var aDSStudy = aStudyManager->GetStudyByID(aStudyID);
129   return aDSStudy._retn();
130 }
131
132 //=================================================================================
133 // class   : CustomItem
134 // purpose : Set Font to a text.
135 //=================================================================================
136 class CustomItem : public QCustomMenuItem
137 {
138 public:
139   CustomItem(const QString& s, const QFont& f) : myString(s), myFont(f) {}
140   ~CustomItem() {}
141
142   void paint(QPainter* p, const QColorGroup& cg, bool act, bool /*enabled*/, int x, int y, int w, int h)
143   {
144     p->save();
145     p->fillRect( x, y, w, h, act ? cg.highlight() : cg.mid() );
146     p->setPen( act ? cg.highlightedText() : cg.buttonText() );
147     p->setFont( myFont );
148     p->drawText( x, y, w, h, AlignHCenter | AlignVCenter | ShowPrefix | DontClip | SingleLine, myString );
149     p->restore();
150   }
151
152   QSize sizeHint()
153   {
154     return QFontMetrics( myFont ).size( AlignHCenter | AlignVCenter | ShowPrefix | DontClip | SingleLine, myString );
155   }
156
157   bool fullSpan() const
158   {
159     return true;
160   }
161
162 private:
163   QString myString;
164   QFont   myFont;
165 };
166
167 //=======================================================================
168 // function : GeometryGUI::GeometryGUI()
169 // purpose  : Constructor
170 //=======================================================================
171 GeometryGUI::GeometryGUI() :
172   SalomeApp_Module( "GEOM" )
173 {
174   if ( CORBA::is_nil( myComponentGeom ) )
175   {
176     SALOME_LifeCycleCORBA* ls = new SALOME_LifeCycleCORBA( getApp()->namingService() );
177     Engines::Component_var comp = ls->FindOrLoad_Component( "FactoryServer", "GEOM" );
178     myComponentGeom  = GEOM::GEOM_Gen::_narrow( comp );
179   }
180
181   myState           = -1;
182   myActiveDialogBox = 0;
183   myFatherior       = "";
184
185   gp_Pnt origin = gp_Pnt(0., 0., 0.);
186   gp_Dir direction = gp_Dir(0., 0., 1.);
187   myWorkingPlane = gp_Ax3(origin, direction);
188
189   myOCCSelectors.setAutoDelete( true );
190   myVTKSelectors.setAutoDelete( true );
191
192   myDisplayer = 0;
193   myLocalSelectionMode = GEOM_ALLOBJECTS;
194 }
195
196 //=======================================================================
197 // function : GeometryGUI::~GeometryGUI()
198 // purpose  : Destructor
199 //=======================================================================
200 GeometryGUI::~GeometryGUI()
201 {
202 }
203
204 //=======================================================================
205 // function : GeometryGUI::getLibrary()
206 // purpose  : get or load GUI library by name [ internal ]
207 //=======================================================================
208 typedef GEOMGUI* (*LibraryGUI)( GeometryGUI* );
209 GEOMGUI* GeometryGUI::getLibrary( const QString& libraryName )
210 {
211   if ( !myGUIMap.contains( libraryName ) ) {
212     // try to load library if it is not loaded yet
213     QCString libs;
214 #ifndef WNT
215     if ( (libs = getenv( "LD_LIBRARY_PATH" )) ) {
216       QStringList dirList = QStringList::split( ":", libs, false ); // skip empty entries
217 #else
218       if ( (libs = getenv( "PATH" )) ) {
219         QStringList dirList = QStringList::split( ";", libs, false ); // skip empty entries
220 #endif
221       for( int i = dirList.count()-1; i >= 0; i-- ) {
222         QString dir = dirList[ i ];
223         QFileInfo fi( Qtx::addSlash( dirList[ i ] ) + libraryName );
224         if( fi.exists() ) {
225           OSD_SharedLibrary aSharedLibrary( (char*)fi.fileName().latin1() );
226           bool res = aSharedLibrary.DlOpen( OSD_RTLD_LAZY );
227           if( !res ) {
228             MESSAGE( "Can't open library : " << aSharedLibrary.DlError() );
229             continue; // continue search further
230           }
231           OSD_Function osdF = aSharedLibrary.DlSymb( "GetLibGUI" );
232           if ( osdF != NULL ) {
233             LibraryGUI func = (GEOMGUI* (*) (GeometryGUI*))osdF;
234             GEOMGUI* libGUI = (*func)(this);
235             if ( libGUI ) {
236               myGUIMap[ libraryName ] = libGUI;
237               break; // found and loaded!
238             }
239           }
240         }
241       }
242     }
243   }
244   if ( myGUIMap.contains( libraryName ) )
245     // library is successfully loaded
246     return myGUIMap[ libraryName ];
247   return 0;
248 }
249
250 //=======================================================================
251 // function : GeometryGUI::ActiveWorkingPlane()
252 // purpose  : Activate Working Plane View
253 //=======================================================================
254 void GeometryGUI::ActiveWorkingPlane()
255 {
256   gp_Dir DZ = myWorkingPlane.Direction();
257   gp_Dir DY = myWorkingPlane.YDirection();
258
259   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
260   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
261   bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
262
263   if( ViewOCC ) {
264     OCCViewer_ViewWindow* vw = dynamic_cast<OCCViewer_ViewWindow*>( window );
265     if ( vw ) {
266       Handle(V3d_View) view3d =  vw->getViewPort()->getView();
267
268       view3d->SetProj(DZ.X(), DZ.Y(), DZ.Z());
269       view3d->SetUp(DY.X(), DY.Y(), DY.Z());
270
271       vw->onViewFitAll();
272     }
273   }
274   else if( ViewVTK ) {
275     SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
276     if ( vw ) {
277       vtkCamera* camera = vw->getRenderer()->GetActiveCamera();
278
279       camera->SetPosition(DZ.X(), DZ.Y(), DZ.Z());
280       camera->SetViewUp(DY.X(), DY.Y(), DY.Z());
281       camera->SetFocalPoint(0,0,0);
282
283       vw->onFitAll();
284     }
285   }
286 }
287
288 //=======================================================================
289 // function : GeometryGUI::SetActiveDialogBox()
290 // purpose  : Set active dialog box
291 //=======================================================================
292 void GeometryGUI::SetActiveDialogBox( QDialog* aDlg )
293 {
294   myActiveDialogBox = (QDialog*)aDlg;
295 }
296
297 //=======================================================================
298 // function : GeometryGUI::EmitSignalDeactivateDialog()
299 // purpose  : Emit a signal to deactivate the active dialog Box
300 //=======================================================================
301 void GeometryGUI::EmitSignalDeactivateDialog()
302 {
303   emit SignalDeactivateActiveDialog();
304 }
305
306 //=======================================================================
307 // function : GeometryGUI::EmitSignalCloseAllDialogs()
308 // purpose  : Emit a signal to close all non modal dialogs box
309 //=======================================================================
310 void GeometryGUI::EmitSignalCloseAllDialogs()
311 {
312   emit SignalCloseAllDialogs();
313 }
314
315 //=======================================================================
316 // function : GeometryGUI::EmitSignalDefaultStepValueChanged()
317 // purpose  : Emit a signal to inform that default real spin box step has
318 //            been changed
319 //=======================================================================
320 void GeometryGUI::EmitSignalDefaultStepValueChanged(double newVal)
321 {
322   emit SignalDefaultStepValueChanged(newVal);
323 }
324
325 //=======================================================================
326 // function : GeometryGUI::OnGUIEvent()
327 // purpose  : common slot for all menu/toolbar actions
328 //=======================================================================
329 void GeometryGUI::OnGUIEvent()
330 {
331   const QObject* obj = sender();
332   if ( !obj || !obj->inherits( "QAction" ) )
333     return;
334   int id = actionId((QAction*)obj);
335   if ( id != -1 )
336     OnGUIEvent( id );
337 }
338
339 //=======================================================================
340 // function : GeometryGUI::OnGUIEvent()
341 // purpose  : manage all events on GUI [static]
342 //=======================================================================
343 void GeometryGUI::OnGUIEvent( int id )
344 {
345   SUIT_Application* anApp = application();
346   if (!anApp) return;
347   SUIT_Desktop* desk = anApp->desktop();
348
349   // check type of the active viewframe
350   SUIT_ViewWindow* window = desk->activeWindow();
351   bool ViewOCC = ( window && window->getViewManager()->getType() == OCCViewer_Viewer::Type() );
352   bool ViewVTK = ( window && window->getViewManager()->getType() == SVTK_Viewer::Type() );
353   // if current viewframe is not of OCC and not of VTK type - return immediately
354   // fix for IPAL8958 - allow some commands to execute even when NO viewer is active (rename for example)
355   bool NotViewerDependentCommand = ( id == 901 || id == 216 || id == 213 );
356   if ( !ViewOCC && !ViewVTK && !NotViewerDependentCommand )
357       return;
358
359   // fix for IPAL9103, point 2
360   if ( CORBA::is_nil( GetGeomGen() ) ) {
361     SUIT_MessageBox::error1( desk, tr( "GEOM_ERROR" ), tr( "GEOM_ERR_GET_ENGINE" ), tr( "GEOM_BUT_OK" ) );
362     return;
363   }
364
365   GEOMGUI* library = 0;
366   // try to get-or-load corresponding GUI library
367   if( id == 111  ||  // MENU FILE - IMPORT BREP
368       id == 112  ||  // MENU FILE - IMPORT IGES
369       id == 113  ||  // MENU FILE - IMPORT STEP
370       id == 121  ||  // MENU FILE - EXPORT BREP
371       id == 122  ||  // MENU FILE - EXPORT IGES
372       id == 123  ||  // MENU FILE - EXPORT STEP
373       id == 2171 ||  // POPUP VIEWER - SELECT ONLY - VERTEX
374       id == 2172 ||  // POPUP VIEWER - SELECT ONLY - EDGE
375       id == 2173 ||  // POPUP VIEWER - SELECT ONLY - WIRE
376       id == 2174 ||  // POPUP VIEWER - SELECT ONLY - FACE
377       id == 2175 ||  // POPUP VIEWER - SELECT ONLY - SHELL
378       id == 2176 ||  // POPUP VIEWER - SELECT ONLY - SOLID
379       id == 2177 ||  // POPUP VIEWER - SELECT ONLY - COMPOUND
380       id == 2178 ||  // POPUP VIEWER - SELECT ONLY - SELECT ALL
381       id == 31   ||  // MENU EDIT - COPY
382       id == 33   ||  // MENU EDIT - DELETE
383       id == 411  ||  // MENU SETTINGS - ADD IN STUDY
384       id == 412  ||  // MENU SETTINGS - SHADING COLOR
385       id == 413  ||  // MENU SETTINGS - ISOS
386       id == 414  ||  // MENU SETTINGS - STEP VALUE FOR SPIN BOXES
387       id == 5103 ||  // MENU TOOLS - CHECK GEOMETRY
388       id == 8032 ||  // POPUP VIEWER - COLOR
389       id == 8033 ||  // POPUP VIEWER - TRANSPARENCY
390       id == 8034 ||  // POPUP VIEWER - ISOS
391       id == 804  ||  // POPUP VIEWER - ADD IN STUDY
392       id == 901  ||  // OBJECT BROWSER - RENAME
393       id == 9024 ) { // OBJECT BROWSER - OPEN
394     //cout << "id " << id << " received" << endl;
395 #ifndef WNT
396         library = getLibrary( "libGEOMToolsGUI.so" );
397 #else
398         library = getLibrary( "GEOMToolsGUI.dll" );
399 #endif
400   }
401   else if( id == 211  ||  // MENU VIEW - WIREFRAME/SHADING
402            id == 212  ||  // MENU VIEW - DISPLAY ALL
403            id == 213  ||  // MENU VIEW - DISPLAY ONLY
404            id == 214  ||  // MENU VIEW - ERASE ALL
405            id == 215  ||  // MENU VIEW - ERASE
406            id == 216  ||  // MENU VIEW - DISPLAY
407            id == 80311 ||  // POPUP VIEWER - WIREFRAME
408            id == 80312 ) { // POPUP VIEWER - SHADING
409 #ifndef WNT
410         library = getLibrary( "libDisplayGUI.so" );
411 #else
412         library = getLibrary( "DisplayGUI.dll" );
413 #endif
414   }
415   else if( id == 4011 ||  // MENU BASIC - POINT
416            id == 4012 ||  // MENU BASIC - LINE
417            id == 4013 ||  // MENU BASIC - CIRCLE
418            id == 4014 ||  // MENU BASIC - ELLIPSE
419            id == 4015 ||  // MENU BASIC - ARC
420            id == 4016 ||  // MENU BASIC - VECTOR
421            id == 4017 ||  // MENU BASIC - PLANE
422            id == 4018 ||  // MENU BASIC - WPLANE
423            id == 4019 ||  // MENU BASIC - CURVE
424            id == 4020 ) { // MENU BASIC - REPAIR
425 #ifndef WNT
426         library = getLibrary( "libBasicGUI.so" );
427 #else
428         library = getLibrary( "BasicGUI.dll" );
429 #endif
430   }
431   else if( id == 4021 ||  // MENU PRIMITIVE - BOX
432            id == 4022 ||  // MENU PRIMITIVE - CYLINDER
433            id == 4023 ||  // MENU PRIMITIVE - SPHERE
434            id == 4024 ||  // MENU PRIMITIVE - TORUS
435            id == 4025 ) { // MENU PRIMITIVE - CONE
436 #ifndef WNT
437         library = getLibrary( "libPrimitiveGUI.so" );
438 #else
439         library = getLibrary( "PrimitiveGUI.dll" );
440 #endif
441   }
442   else if( id == 4031 ||  // MENU GENERATION - PRISM
443            id == 4032 ||  // MENU GENERATION - REVOLUTION
444            id == 4033 ||  // MENU GENERATION - FILLING
445            id == 4034 ) { // MENU GENERATION - PIPE
446 #ifndef WNT
447         library = getLibrary( "libGenerationGUI.so" );
448 #else
449         library = getLibrary( "GenerationGUI.dll" );
450 #endif
451   }
452   else if( id == 404 ||   // MENU ENTITY - SKETCHER
453            id == 407 ) {  // MENU ENTITY - EXPLODE
454 #ifndef WNT
455         library = getLibrary( "libEntityGUI.so" );
456 #else
457         library = getLibrary( "EntityGUI.dll" );
458 #endif
459   }
460   else if( id == 4081 ||  // MENU BUILD - EDGE
461            id == 4082 ||  // MENU BUILD - WIRE
462            id == 4083 ||  // MENU BUILD - FACE
463            id == 4084 ||  // MENU BUILD - SHELL
464            id == 4085 ||  // MENU BUILD - SOLID
465            id == 4086 ) { // MENU BUILD - COMPUND
466 #ifndef WNT
467         library = getLibrary( "libBuildGUI.so" );
468 #else
469         library = getLibrary( "BuildGUI.dll" );
470 #endif
471   }
472   else if( id == 5011 ||  // MENU BOOLEAN - FUSE
473            id == 5012 ||  // MENU BOOLEAN - COMMON
474            id == 5013 ||  // MENU BOOLEAN - CUT
475            id == 5014 ) { // MENU BOOLEAN - SECTION
476 #ifndef WNT
477         library = getLibrary( "libBooleanGUI.so" );
478 #else
479         library = getLibrary( "BooleanGUI.dll" );
480 #endif
481   }
482   else if( id == 5021 ||  // MENU TRANSFORMATION - TRANSLATION
483            id == 5022 ||  // MENU TRANSFORMATION - ROTATION
484            id == 5023 ||  // MENU TRANSFORMATION - LOCATION
485            id == 5024 ||  // MENU TRANSFORMATION - MIRROR
486            id == 5025 ||  // MENU TRANSFORMATION - SCALE
487            id == 5026 ||  // MENU TRANSFORMATION - OFFSET
488            id == 5027 ||  // MENU TRANSFORMATION - MULTI-TRANSLATION
489            id == 5028 ) { // MENU TRANSFORMATION - MULTI-ROTATION
490 #ifndef WNT
491         library = getLibrary( "libTransformationGUI.so" );
492 #else
493         library = getLibrary( "TransformationGUI.dll" );
494 #endif
495   }
496   else if( id == 503 ||   // MENU OPERATION - PARTITION
497            id == 504 ||   // MENU OPERATION - ARCHIMEDE
498            id == 505 ||   // MENU OPERATION - FILLET
499            id == 506 ||   // MENU OPERATION - CHAMFER
500            id == 507 ) {  // MENU OPERATION - CLIPPING RANGE
501 #ifndef WNT
502         library = getLibrary( "libOperationGUI.so" );
503 #else
504         library = getLibrary( "OperationGUI.dll" );
505 #endif
506   }
507   else if( id == 601 ||   // MENU REPAIR - SEWING
508            id == 603 ||   // MENU REPAIR - SUPPRESS FACES
509            id == 604 ||   // MENU REPAIR - SUPPRESS HOLE
510            id == 605 ||   // MENU REPAIR - SHAPE PROCESSING
511            id == 606 ||   // MENU REPAIR - CLOSE CONTOUR
512            id == 607 ||   // MENU REPAIR - REMOVE INTERNAL WIRES
513            id == 608 ||   // MENU REPAIR - ADD POINT ON EDGE
514            id == 609 ||   // MENU MEASURE - FREE BOUNDARIES
515            id == 610 ||   // MENU MEASURE - FREE FACES
516            id == 611 ||   // MENU REPAIR - CHANGE ORIENTATION
517            id == 602 ) {  // MENU REPAIR - GLUE FACES
518 #ifndef WNT
519         library = getLibrary( "libRepairGUI.so" );
520 #else
521         library = getLibrary( "RepairGUI.dll" );
522 #endif
523   }
524   else if( id == 701   ||  // MENU MEASURE - PROPERTIES
525            id == 702   ||  // MENU MEASURE - CDG
526            id == 703   ||  // MENU MEASURE - INERTIA
527            id == 704   ||  // MENU MEASURE - NORMALE
528            id == 7041  ||  // MENU MEASURE - BOUNDING BOX
529            id == 7042  ||  // MENU MEASURE - MIN DISTANCE
530            id == 7043  ||  // MENU MEASURE - ANGLE
531            id == 705   ||  // MENU MEASURE - TOLERANCE
532            id == 706   ||  // MENU MEASURE - WHATIS
533            id == 707   ||  // MENU MEASURE - CHECK
534            id == 7072  ||  // MENU MEASURE - CHECK COMPOUND OF BLOCKS
535            id == 708 ) {  // MENU MEASURE - POINT COORDINATES
536 #ifndef WNT
537         library = getLibrary( "libMeasureGUI.so" );
538 #else
539         library = getLibrary( "MeasureGUI.dll" );
540 #endif
541   }
542   else if( id == 800  ||  // MENU GROUP - CREATE
543            id == 8001 ||  // POPUP MENU - CREATE GROUP
544            id == 801 ) {  // MENU GROUP - EDIT
545 #ifndef WNT
546         library = getLibrary( "libGroupGUI.so" );
547 #else
548         library = getLibrary( "GroupGUI.dll" );
549 #endif
550   }
551   else if( id == 9999  ||  // MENU BLOCKS - HEXAHEDRAL SOLID
552            id == 9998  ||  // MENU BLOCKS - MULTI-TRANSFORMATION
553            id == 9997  ||  // MENU BLOCKS - QUADRANGLE FACE
554            id == 99991 ||  // MENU BLOCKS - PROPAGATE
555            id == 9995 ) { // MENU BLOCKS - EXPLODE ON BLOCKS
556 #ifndef WNT
557         library = getLibrary( "libBlocksGUI.so" );
558 #else
559         library = getLibrary( "BlocksGUI.dll" );
560 #endif
561   }
562
563   // call method of corresponding GUI library
564   if ( library )
565     library->OnGUIEvent( id, desk );
566   else
567     SUIT_MessageBox::error1( desk, tr( "GEOM_ERROR" ), tr( "GEOM_ERR_LIB_NOT_FOUND" ), tr( "GEOM_BUT_OK" ) );
568 }
569
570
571 //=================================================================================
572 // function : GeometryGUI::OnKeyPress()
573 // purpose  : Called when any key is pressed by user [static]
574 //=================================================================================
575 void GeometryGUI::OnKeyPress( SUIT_ViewWindow* win, QKeyEvent* pe )
576 {
577   GUIMap::Iterator it;
578   bool bOk = true;
579   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
580     SUIT_Application* anApp = application();
581     if (!anApp) return;
582     bOk = bOk && it.data()->OnKeyPress( pe, anApp->desktop(), win );
583   }
584 //  return bOk;
585 }
586
587
588 //=================================================================================
589 // function : GeometryGUI::OnMouseMove()
590 // purpose  : Manages mouse move events [static]
591 //=================================================================================
592 void GeometryGUI::OnMouseMove( SUIT_ViewWindow* win, QMouseEvent* pe )
593 {
594   GUIMap::Iterator it;
595   bool bOk = true;
596   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
597     SUIT_Application* anApp = application();
598     if (!anApp) return;
599     bOk = bOk && it.data()->OnMouseMove( pe, anApp->desktop(), win );
600   }
601 //  return bOk;
602 }
603
604
605 //=================================================================================
606 // function : GeometryGUI::0nMousePress()
607 // purpose  : Manage mouse press events [static]
608 //=================================================================================
609 void GeometryGUI::OnMousePress( SUIT_ViewWindow* win, QMouseEvent* pe )
610 {
611   GUIMap::Iterator it;
612   // OnMousePress() should return false if this event should be processed further
613   // (see OCCViewer_Viewer3d::onMousePress() for explanation)
614   bool processed = false;
615   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it ) {
616     SUIT_Application* anApp = application();
617     if (!anApp) return;
618     processed = processed || it.data()->OnMousePress( pe, anApp->desktop(), win );
619   }
620 //  return processed;
621 }
622
623 /*
624 static void UpdateVtkSelection()
625 {
626   QPtrList<SUIT_ViewWindow> winList = application()->desktop()->windows();
627   SUIT_ViewWindow* win = 0;
628   for ( win = winList.first(); win; win = winList.next() ) {
629     if ( win->getViewManager()->getTypeView() == VIEW_VTK ) {
630       SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
631       if ( vw ) {
632         SVTK_RenderWindowInteractor* anInteractor = vw->getRWInteractor();
633         anInteractor->SetSelectionProp();
634         anInteractor->SetSelectionTolerance();
635         SVTK_InteractorStyleSALOME* aStyle = anInteractor->GetInteractorStyleSALOME();
636         if (aStyle) {
637           aStyle->setPreselectionProp();
638         }
639       }
640     }
641   }
642 }
643
644 //=================================================================================
645 // function : GeometryGUI::SetSettings()
646 // purpose  : Called when GEOM module is activated [static]
647 //=================================================================================
648 bool GeometryGUI::SetSettings()
649 {
650   QMenuBar*     Mb = parent->getMainMenuBar();
651   SUIT_Study*   ActiveStudy = application()->activeStudy();
652
653 // Wireframe or Shading
654   int DisplayMode = 0;
655   SUIT_ViewWindow* window = application()->desktop()->activeWindow();
656   bool ViewOCC = ( window && window->getViewManager()->getType() == VIEW_OCC );
657   bool ViewVTK = ( window && window->getViewManager()->getType() == VIEW_VTK );
658   if ( ViewOCC ) {
659     OCCViewer_ViewManager* vm = dynamic_cast<OCCViewer_ViewManager*>( window->getViewManager() );
660     if ( vm ) {
661       Handle(AIS_InteractiveContext) ic = vm->getOCCViewer()->getAISContext();
662       DisplayMode = ic->DisplayMode();
663     }
664   }
665   else if ( ViewVTK ) {
666     SVTK_ViewWindow* vw = dynamic_cast<SVTK_ViewWindow*>( window );
667     if ( vw ) {
668       SVTK_RenderWindowInteractor* myRenderInter = vw->getRWInteractor();
669       DisplayMode = myRenderInter->GetDisplayMode();
670     }
671   }
672
673   if( DisplayMode == 1 )
674     getApp()->
675     Mb->changeItem( 211, tr( "GEOM_MEN_WIREFRAME" ) );
676   else
677     Mb->changeItem( 211, tr( "GEOM_MEN_SHADING" ) );
678
679
680   // Add in Study  - !!!ALWAYS TRUE!!! /////// VSR : TO BE REMOVED
681   QString AddInStudy = QAD_CONFIG->getSetting("Geometry:SettingsAddInStudy");
682   int Settings_AddInStudy;
683   //  if(!AddInStudy.isEmpty())
684   //    Settings_AddInStudy = AddInStudy.toInt();
685   //  else
686
687   Settings_AddInStudy = 1;
688   Mb->setItemChecked(411, Settings_AddInStudy);
689
690   // step value
691   QString S = QAD_CONFIG->getSetting("Geometry:SettingsGeomStep");
692   if(S.isEmpty())
693     QAD_CONFIG->addSetting("Geometry:SettingsGeomStep", "100");
694
695   // isos
696   int count = ActiveStudy->getStudyFramesCount();
697   for(int i = 0; i < count; i++) {
698     if(ActiveStudy->getStudyFrame(i)->getTypeView() == VIEW_OCC) {
699       OCCViewer_Viewer3d* v3d = ((OCCViewer_ViewFrame*)ActiveStudy->getStudyFrame(i)->getRightFrame()->getViewFrame())->getViewer();
700       Handle (AIS_InteractiveContext) ic = v3d->getAISContext();
701
702       QString IsoU = QAD_CONFIG->getSetting("Geometry:SettingsIsoU");
703       QString IsoV = QAD_CONFIG->getSetting("Geometry:SettingsIsoV");
704       if(!IsoU.isEmpty())
705         ic->DefaultDrawer()->UIsoAspect()->SetNumber(IsoU.toInt());
706       if(!IsoV.isEmpty())
707         ic->DefaultDrawer()->VIsoAspect()->SetNumber(IsoV.toInt());
708     }
709   }
710
711   setActionsEnabled();
712
713   // PAL5356: update VTK selection
714   ::UpdateVtkSelection();
715   bool bOk = true;
716   GUIMap::Iterator it;
717   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
718     bOk = bOk && it.data()->SetSettings( parent );
719
720   // MZN: Enable/disable "Clipping range" menu item(from GEOM_CLIPPING variable)
721   if (getenv( "GEOM_CLIPPING" ) == NULL)
722     {
723       QMenuItem* mi = Mb->findItem(50);
724       if (mi && mi->popup())
725       mi->popup()->removeItem(507);
726     }
727
728   return bOk;
729 }
730 */
731
732 //=======================================================================
733 // function : createGeomAction
734 // purpose  :
735 //=======================================================================
736 void GeometryGUI::createGeomAction( const int id, const QString& po_id, const QString& icon_id, const int key, const bool toggle  )
737 {
738   QIconSet icon;
739   QWidget* parent = application()->desktop();
740   SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr();
741   QPixmap pix;
742   if ( icon_id.length() )
743     pix = resMgr->loadPixmap( "GEOM", tr( icon_id ) );
744   else
745     pix = resMgr->loadPixmap( "GEOM", tr( QString( "ICO_" )+po_id ), false );
746   if ( !pix.isNull() )
747     icon = QIconSet( pix );
748
749   QString tooltip    = tr( QString( "TOP_" )+po_id ),
750           menu       = tr( QString( "MEN_" )+po_id ),
751           status_bar = tr( QString( "STB_" )+po_id );
752
753   createAction( id, tooltip, icon, menu, status_bar, key, parent, toggle, this, SLOT( OnGUIEvent() )  );
754 }
755
756
757
758 //=======================================================================
759 // function : GeometryGUI::initialize()
760 // purpose  : Called when GEOM module is created
761 //=======================================================================
762 void GeometryGUI::initialize( CAM_Application* app )
763 {
764   SalomeApp_Module::initialize( app );
765
766   // ----- create actions --------------
767
768   createGeomAction( 111, "IMPORT", "", (CTRL + Key_I) );
769   createGeomAction( 121, "EXPORT", "", (CTRL + Key_E) );
770
771   createGeomAction( 33, "DELETE", "", Key_Delete );
772
773   createGeomAction( 4011, "POINT" );
774   createGeomAction( 4012, "LINE" );
775   createGeomAction( 4013, "CIRCLE" );
776   createGeomAction( 4014, "ELLIPSE" );
777   createGeomAction( 4015, "ARC" );
778   createGeomAction( 4019, "CURVE" );
779   createGeomAction( 4016, "VECTOR" );
780   createGeomAction( 4017, "PLANE" );
781   createGeomAction( 4018, "WORK_PLANE" );
782   createGeomAction( 4020, "LOCAL_CS" );
783
784   createGeomAction( 4021, "BOX" );
785   createGeomAction( 4022, "CYLINDER" );
786   createGeomAction( 4023, "SPHERE" );
787   createGeomAction( 4024, "TORUS" );
788   createGeomAction( 4025, "CONE" );
789
790   createGeomAction( 4031, "EXTRUSION" );
791   createGeomAction( 4032, "REVOLUTION" );
792   createGeomAction( 4033, "FILLING" );
793   createGeomAction( 4034, "PIPE" );
794
795   createGeomAction( 800, "GROUP_CREATE" );
796   createGeomAction( 801, "GROUP_EDIT" );
797
798   createGeomAction( 9997, "Q_FACE" );
799   createGeomAction( 9999, "HEX_SOLID" );
800
801   createGeomAction( 404, "SKETCH" );
802   createGeomAction( 407, "EXPLODE" );
803
804   createGeomAction( 4081, "EDGE" );
805   createGeomAction( 4082, "WIRE" );
806   createGeomAction( 4083, "FACE" );
807   createGeomAction( 4084, "SHELL" );
808   createGeomAction( 4085, "SOLID" );
809   createGeomAction( 4086, "COMPOUND" );
810
811   createGeomAction( 5011, "FUSE" );
812   createGeomAction( 5012, "COMMON" );
813   createGeomAction( 5013, "CUT" );
814   createGeomAction( 5014, "SECTION" );
815
816   createGeomAction( 5021, "TRANSLATION" );
817   createGeomAction( 5022, "ROTATION" );
818   createGeomAction( 5023, "MODIFY_LOCATION" );
819   createGeomAction( 5024, "MIRROR" );
820   createGeomAction( 5025, "SCALE" );
821   createGeomAction( 5026, "OFFSET" );
822   createGeomAction( 5027, "MUL_TRANSLATION" );
823   createGeomAction( 5028, "MUL_ROTATION" );
824
825   createGeomAction( 503, "PARTITION" );
826   createGeomAction( 504, "ARCHIMEDE" );
827   createGeomAction( 505, "FILLET" );
828   createGeomAction( 506, "CHAMFER" );
829   //createGeomAction( 507, "CLIPPING" );
830
831   createGeomAction( 9998, "MUL_TRANSFORM" );
832   createGeomAction( 9995, "EXPLODE_BLOCKS" );
833   createGeomAction( 99991, "PROPAGATE" );
834
835   createGeomAction( 601, "SEWING" );
836   createGeomAction( 602, "GLUE_FACES" );
837   createGeomAction( 603, "SUPPRESS_FACES" );
838   createGeomAction( 604, "SUPPERSS_HOLES" );
839   createGeomAction( 605, "SHAPE_PROCESS" );
840   createGeomAction( 606, "CLOSE_CONTOUR" );
841   createGeomAction( 607, "SUPPRESS_INT_WIRES" );
842   createGeomAction( 608, "POINT_ON_EDGE" );
843   createGeomAction( 609, "CHECK_FREE_BNDS" );
844   createGeomAction( 610, "CHECK_FREE_FACES" );
845   createGeomAction( 611, "CHANGE_ORIENTATION" );
846
847   createGeomAction( 708, "POINT_COORDS" );
848   createGeomAction( 701, "BASIC_PROPS" );
849   createGeomAction( 702, "MASS_CENTER" );
850   createGeomAction( 703, "INERTIA" );
851   createGeomAction( 704, "NORMALE" );
852   createGeomAction( 7041, "BND_BOX" );
853   createGeomAction( 7042, "MIN_DIST" );
854   createGeomAction( 7043, "MEASURE_ANGLE" );
855
856   createGeomAction( 705, "TOLERANCE" );
857   createGeomAction( 706, "WHAT_IS" );
858   createGeomAction( 707, "CHECK" );
859   createGeomAction( 7072, "CHECK_COMPOUND" );
860
861 #ifdef _DEBUG_ // PAL16821
862   createGeomAction( 5103, "CHECK_GEOMETRY" );
863 #endif
864   createGeomAction( 412, "SHADING_COLOR" );
865   createGeomAction( 413, "ISOS" );
866   createGeomAction( 414, "STEP_VALUE" );
867
868   createGeomAction( 211, "SHADING" );
869   createGeomAction( 212, "DISPLAY_ALL" );
870   createGeomAction( 214, "ERASE_ALL" );
871   createGeomAction( 216, "DISPLAY" );
872   createGeomAction( 2171, "VERTEX_SEL_ONLY" ,"", 0, true );
873   createGeomAction( 2172, "EDGE_SEL_ONLY", "", 0, true );
874   createGeomAction( 2173, "WIRE_SEL_ONLY", "",  0, true );
875   createGeomAction( 2174, "FACE_SEL_ONLY", "", 0, true );
876   createGeomAction( 2175, "SHELL_SEL_ONLY", "",  0, true );
877   createGeomAction( 2176, "SOLID_SEL_ONLY", "", 0, true );
878   createGeomAction( 2177, "COMPOUND_SEL_ONLY", "",  0, true );
879   createGeomAction( 2178, "ALL_SEL_ONLY", "",  0, true );
880   createGeomAction( 213, "DISPLAY_ONLY" );
881   createGeomAction( 215, "ERASE" );
882
883   createGeomAction( 901, "POP_RENAME", "", Key_F2 );
884   createGeomAction( 80311, "POP_WIREFRAME", "", 0, true );
885   createGeomAction( 80312, "POP_SHADING", "", 0, true );
886   createGeomAction( 8032, "POP_COLOR" );
887   createGeomAction( 8033, "POP_TRANSPARENCY" );
888   createGeomAction( 8034, "POP_ISOS" );
889   createGeomAction( 8001, "POP_CREATE_GROUP" );
890
891   // make wireframe-shading items to be exclusive (only one at a time is selected)
892   //QActionGroup* dispModeGr = new QActionGroup( this, "", true );
893   //dispModeGr->add( action( 80311 ) );
894   //dispModeGr->add( action( 80312 ) );
895   // ---- create menu --------------------------
896
897   int fileId = createMenu( tr( "MEN_FILE" ), -1, -1 );
898   createMenu( separator(), fileId, 10 );
899   createMenu( 111, fileId, 10 );
900   createMenu( 121, fileId, 10 );
901   createMenu( separator(), fileId, -1 );
902
903   int editId = createMenu( tr( "MEN_EDIT" ), -1, -1 );
904   createMenu( 33, editId, -1 );
905
906   int newEntId = createMenu( tr( "MEN_NEW_ENTITY" ), -1, -1, 10 );
907
908   int basicId = createMenu( tr( "MEN_BASIC" ), newEntId, -1 );
909   createMenu( 4011, basicId, -1 );
910   createMenu( 4012, basicId, -1 );
911   createMenu( 4013, basicId, -1 );
912   createMenu( 4014, basicId, -1 );
913   createMenu( 4015, basicId, -1 );
914   createMenu( 4019, basicId, -1 );
915   createMenu( separator(), basicId, -1 );
916   createMenu( 4016, basicId, -1 );
917   createMenu( 4017, basicId, -1 );
918   createMenu( 4018, basicId, -1 );
919   createMenu( 4020, basicId, -1 );
920
921   int primId = createMenu( tr( "MEN_PRIMITIVES" ), newEntId, -1 );
922   createMenu( 4021, primId, -1 );
923   createMenu( 4022, primId, -1 );
924   createMenu( 4023, primId, -1 );
925   createMenu( 4024, primId, -1 );
926   createMenu( 4025, primId, -1 );
927
928   int genId = createMenu( tr( "MEN_GENERATION" ), newEntId, -1 );
929   createMenu( 4031, genId, -1 );
930   createMenu( 4032, genId, -1 );
931   createMenu( 4033, genId, -1 );
932   createMenu( 4034, genId, -1 );
933   createMenu( separator(), newEntId, -1 );
934
935   int groupId = createMenu( tr( "MEN_GROUP" ), newEntId, -1 );
936   createMenu( 800, groupId, -1 );
937   createMenu( 801, groupId, -1 );
938   createMenu( separator(), newEntId, -1 );
939
940   int blocksId = createMenu( tr( "MEN_BLOCKS" ), newEntId, -1 );
941   createMenu( 9997, blocksId, -1 );
942   createMenu( 9999, blocksId, -1 );
943
944   createMenu( separator(), newEntId, -1 );
945   createMenu( 404, newEntId, -1 );
946   createMenu( separator(), newEntId, -1 );
947   createMenu( 407, newEntId, -1 );
948
949   int buildId = createMenu( tr( "MEN_BUILD" ), newEntId, -1 );
950   createMenu( 4081, buildId, -1 );
951   createMenu( 4082, buildId, -1 );
952   createMenu( 4083, buildId, -1 );
953   createMenu( 4084, buildId, -1 );
954   createMenu( 4085, buildId, -1 );
955   createMenu( 4086, buildId, -1 );
956
957   int operId = createMenu( tr( "MEN_OPERATIONS" ), -1, -1, 10 );
958
959   int boolId = createMenu( tr( "MEN_BOOLEAN" ), operId, -1 );
960   createMenu( 5011, boolId, -1 );
961   createMenu( 5012, boolId, -1 );
962   createMenu( 5013, boolId, -1 );
963   createMenu( 5014, boolId, -1 );
964
965   int transId = createMenu( tr( "MEN_TRANSFORMATION" ), operId, -1 );
966   createMenu( 5021, transId, -1 );
967   createMenu( 5022, transId, -1 );
968   createMenu( 5023, transId, -1 );
969   createMenu( 5024, transId, -1 );
970   createMenu( 5025, transId, -1 );
971   createMenu( 5026, transId, -1 );
972   createMenu( separator(), transId, -1 );
973   createMenu( 5027, transId, -1 );
974   createMenu( 5028, transId, -1 );
975
976   createMenu( 503, operId, -1 );
977   createMenu( 504, operId, -1 );
978   createMenu( separator(), operId, -1 );
979   createMenu( 505, transId, -1 );
980   createMenu( 506, transId, -1 );
981   //createMenu( 507, transId, -1 );
982
983   int blockId = createMenu( tr( "MEN_BLOCKS" ), operId, -1 );
984   createMenu( 9998, blockId, -1 );
985   createMenu( 9995, blockId, -1 );
986   createMenu( 99991, blockId, -1 );
987
988   int repairId = createMenu( tr( "MEN_REPAIR" ), -1, -1, 10 );
989   createMenu( 605, repairId, -1 );
990   createMenu( 603, repairId, -1 );
991   createMenu( 606, repairId, -1 );
992   createMenu( 607, repairId, -1 );
993   createMenu( 604, repairId, -1 );
994   createMenu( 601, repairId, -1 );
995   createMenu( 602, repairId, -1 );
996   createMenu( 608, repairId, -1 );
997   //createMenu( 609, repairId, -1 );
998   //createMenu( 610, repairId, -1 );
999   createMenu( 611, repairId, -1 );
1000
1001   int measurId = createMenu( tr( "MEN_MEASURES" ), -1, -1, 10 );
1002   createMenu( 708, measurId, -1 );
1003   createMenu( 701, measurId, -1 );
1004   createMenu( separator(), measurId, -1 );
1005   createMenu( 702, measurId, -1 );
1006   createMenu( 703, measurId, -1 );
1007   createMenu( 704, measurId, -1 );
1008   // NPAL16572: move "Check free boundaries" and "Check free faces" from "Repair" to "Measure"
1009   createMenu( separator(), measurId, -1 );
1010   createMenu( 609, measurId, -1 );
1011   createMenu( 610, measurId, -1 );
1012   // NPAL16572 END
1013   createMenu( separator(), measurId, -1 );
1014
1015   int dimId = createMenu( tr( "MEN_DIMENSIONS" ), measurId, -1 );
1016   createMenu( 7041, dimId, -1 );
1017   createMenu( 7042, dimId, -1 );
1018   createMenu( 7043, dimId, -1 );
1019   createMenu( separator(), measurId, -1 );
1020
1021   createMenu( 705, measurId, -1 );
1022   createMenu( separator(), measurId, -1 );
1023   createMenu( 706, measurId, -1 );
1024   createMenu( 707, measurId, -1 );
1025   createMenu( 7072, measurId, -1 );
1026
1027 #ifdef _DEBUG_ // PAL16821
1028   int toolsId = createMenu( tr( "MEN_TOOLS" ), -1, -1, 50 );
1029   createMenu( separator(), toolsId, -1 );
1030   createMenu( 5103, toolsId, -1 );
1031 #endif
1032   //int prefId = createMenu( tr( "MEN_PREFERENCES" ), -1, -1, 50 );
1033   //createMenu( separator(), prefId, -1 );
1034   //int geomId = createMenu( tr( "MEN_PREFERENCES_GEOM" ), prefId, -1 );
1035   //createMenu( 412, geomId, -1 );
1036   //createMenu( 413, geomId, -1 );
1037   //createMenu( 414, geomId, -1 );
1038   //createMenu( separator(), prefId, -1 );
1039
1040   int viewId = createMenu( tr( "MEN_VIEW" ), -1, -1 );
1041   createMenu( separator(), viewId, -1 );
1042
1043   int dispmodeId = createMenu( tr( "MEN_DISPLAY_MODE" ), viewId, -1 );
1044   createMenu( 211, dispmodeId, -1 );
1045
1046   createMenu( separator(), viewId, -1 );
1047   createMenu( 212, viewId, -1 );
1048   createMenu( 214, viewId, -1 );
1049   createMenu( separator(), viewId, -1 );
1050
1051 /*
1052   PAL9111:
1053   because of these items are accessible through object browser and viewers
1054   we have removed they from main menu
1055
1056   createMenu( 216, viewId, -1 );
1057   createMenu( 213, viewId, -1 );
1058   createMenu( 215, viewId, -1 );
1059 */
1060
1061   // ---- create toolbars --------------------------
1062
1063   int basicTbId = createTool( tr( "TOOL_BASIC" ) );
1064   createTool( 4011, basicTbId );
1065   createTool( 4012, basicTbId );
1066   createTool( 4013, basicTbId );
1067   createTool( 4014, basicTbId );
1068   createTool( 4015, basicTbId );
1069   createTool( 4019, basicTbId );
1070   createTool( 4016, basicTbId );
1071   createTool( 4017, basicTbId );
1072   createTool( 4018, basicTbId );
1073   createTool( 4020, basicTbId );
1074
1075   int primTbId = createTool( tr( "TOOL_PRIMITIVES" ) );
1076   createTool( 4021, primTbId );
1077   createTool( 4022, primTbId );
1078   createTool( 4023, primTbId );
1079   createTool( 4024, primTbId );
1080   createTool( 4025, primTbId );
1081
1082   int boolTbId = createTool( tr( "TOOL_BOOLEAN" ) );
1083   createTool( 5011, boolTbId );
1084   createTool( 5012, boolTbId );
1085   createTool( 5013, boolTbId );
1086   createTool( 5014, boolTbId );
1087
1088   int genTbId = createTool( tr( "TOOL_GENERATION" ) );
1089   createTool( 4031, genTbId );
1090   createTool( 4032, genTbId );
1091   createTool( 4033, genTbId );
1092   createTool( 4034, genTbId );
1093
1094   int transTbId = createTool( tr( "TOOL_TRANSFORMATION" ) );
1095   createTool( 5021, transTbId );
1096   createTool( 5022, transTbId );
1097   createTool( 5023, transTbId );
1098   createTool( 5024, transTbId );
1099   createTool( 5025, transTbId );
1100   createTool( 5026, transTbId );
1101   createTool( separator(), transTbId );
1102   createTool( 5027, transTbId );
1103   createTool( 5028, transTbId );
1104
1105   // ---- create popup menus --------------------------
1106
1107   QString clientOCCorVTK = "(client='OCCViewer' or client='VTKViewer')";
1108   QString clientOCCorVTK_AndSomeVisible = clientOCCorVTK + " and selcount>0 and isVisible";
1109
1110   QtxPopupMgr* mgr = popupMgr();
1111   mgr->insert( action(  901 ), -1, -1 );  // rename
1112   mgr->setRule( action( 901 ), "$type in {'Shape' 'Group'} and selcount=1", true );
1113   mgr->insert( action(   33 ), -1, -1 );  // delete
1114   mgr->setRule( action(  33 ), "$type in {'Shape' 'Group'} and selcount>0", true );
1115   mgr->insert( action(  8001 ), -1, -1 ); // create group
1116   mgr->setRule( action( 8001 ), "client='ObjectBrowser' and type='Shape' and selcount=1 and isOCC=true", true );
1117   mgr->insert( action(  801 ), -1, -1 );  // edit group
1118   mgr->setRule( action( 801 ),  "client='ObjectBrowser' and type='Group' and selcount=1 and isOCC=true", true );
1119   mgr->insert( separator(), -1, -1 );     // -----------
1120   dispmodeId = mgr->insert(  tr( "MEN_DISPLAY_MODE" ), -1, -1 ); // display mode menu
1121   mgr->insert( action(  80311 ), dispmodeId, -1 ); // wireframe
1122   mgr->setRule( action( 80311 ), clientOCCorVTK_AndSomeVisible, true );
1123   mgr->setRule( action( 80311 ), clientOCCorVTK + " and displaymode='Wireframe'", false );
1124   mgr->insert( action(  80312 ), dispmodeId, -1 ); // shading
1125   mgr->setRule( action( 80312 ), clientOCCorVTK_AndSomeVisible, true );
1126   mgr->setRule( action( 80312 ), clientOCCorVTK + " and displaymode='Shading'", false );
1127   mgr->insert( separator(), -1, -1 );     // -----------
1128   mgr->insert( action(  8032 ), -1, -1 ); // color
1129   mgr->setRule( action( 8032 ), clientOCCorVTK_AndSomeVisible + " and ($component={'GEOM'})", true );
1130   mgr->insert( action(  8033 ), -1, -1 ); // transparency
1131   mgr->setRule( action( 8033 ), clientOCCorVTK_AndSomeVisible, true );
1132   mgr->insert( action(  8034 ), -1, -1 ); // isos
1133   mgr->setRule( action( 8034 ), "client='OCCViewer' and selcount>0 and isVisible", true );
1134   mgr->insert( separator(), -1, -1 );     // -----------
1135
1136
1137   QString canDisplay = "($component={'GEOM'}) and (selcount>0) and ({true} in $canBeDisplayed) ",
1138           onlyComponent = "((type='Component') and selcount=1)",
1139           rule = canDisplay + "and ((($type in {%1}) and( %2 )) or " + onlyComponent + ")",
1140           types = "'Shape' 'Group'";
1141
1142   mgr->insert( action(  216 ), -1, -1 ); // display
1143   mgr->setRule( action( 216 ), rule.arg( types ).arg( "not isVisible" ), true );
1144
1145   mgr->insert( action(  215 ), -1, -1 ); // erase
1146   mgr->setRule( action( 215 ), rule.arg( types ).arg( "isVisible" ), true );
1147
1148   mgr->insert( action(  214 ), -1, -1 ); // erase All
1149   mgr->setRule( action( 214 ), clientOCCorVTK, true );
1150
1151   QString selectOnly = "(client='OCCViewer' or client='VTKViewer') and (selcount=0)";
1152
1153   int selectolnyId = mgr->insert( tr("MEN_SELECT_ONLY"), -1, -1);                //select only menu
1154   mgr->insert( action(2171), selectolnyId, -1);                                  //Vertex
1155   mgr->setRule(action(2171), selectOnly, true);
1156   mgr->setRule(action(2171), selectOnly + " and selectionmode='VERTEX'", false);
1157   mgr->insert( action(2172), selectolnyId, -1);                                  //Edge
1158   mgr->setRule(action(2172), selectOnly, true);
1159   mgr->setRule(action(2172), selectOnly + " and selectionmode='EDGE'", false);
1160   mgr->insert( action(2173), selectolnyId, -1);                                  //Wire
1161   mgr->setRule(action(2173), selectOnly, true);
1162   mgr->setRule(action(2173), selectOnly + " and selectionmode='WIRE'", false);
1163   mgr->insert( action(2174), selectolnyId, -1);                                  //Face
1164   mgr->setRule(action(2174), selectOnly, true);
1165   mgr->setRule(action(2174), selectOnly + " and selectionmode='FACE'", false);
1166   mgr->insert( action(2175), selectolnyId, -1);                                  //Shell
1167   mgr->setRule(action(2175), selectOnly, true);
1168   mgr->setRule(action(2175), selectOnly + " and selectionmode='SHELL'", false);
1169   mgr->insert( action(2176), selectolnyId, -1);                                  //Solid
1170   mgr->setRule(action(2176), selectOnly, true);
1171   mgr->setRule(action(2176), selectOnly + " and selectionmode='SOLID'", false);
1172   mgr->insert( action(2177), selectolnyId, -1);                                  //Compound
1173   mgr->setRule(action(2177), selectOnly, true);
1174   mgr->setRule(action(2177), selectOnly + " and selectionmode='COMPOUND'", false);
1175   mgr->insert( separator(), selectolnyId, -1);
1176   mgr->insert( action(2178), selectolnyId, -1);                                  //Clear selection filter
1177   mgr->setRule(action(2178), selectOnly, true);
1178   mgr->setRule(action(2178), selectOnly + " and selectionmode='ALL'", false);
1179
1180   mgr->insert( action(  213 ), -1, -1 ); // display only
1181   mgr->setRule( action( 213 ), rule.arg( types ).arg( "true" ), true );
1182   mgr->insert( separator(), -1, -1 );
1183
1184   mgr->hide( mgr->actionId( action( myEraseAll ) ) );
1185 }
1186
1187 //=======================================================================
1188 // function : GeometryGUI::activateModule()
1189 // purpose  : Called when GEOM module is activated
1190 //=======================================================================
1191 bool GeometryGUI::activateModule( SUIT_Study* study )
1192 {
1193   if ( CORBA::is_nil( myComponentGeom ) )
1194     return false;
1195
1196   bool res = SalomeApp_Module::activateModule( study );
1197
1198   if ( !res )
1199     return false;
1200
1201   setMenuShown( true );
1202   setToolShown( true );
1203
1204   connect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1205           this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1206
1207   // Reset actions accelerator keys
1208   //action(111)->setAccel(QKeySequence(CTRL + Key_I)); // Import
1209   //action(121)->setAccel(QKeySequence(CTRL + Key_E)); // Export
1210   action(111)->setEnabled(true); // Import
1211   action(121)->setEnabled(true); // Export
1212
1213   GUIMap::Iterator it;
1214   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1215     it.data()->activate( application()->desktop() );
1216
1217   LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1218   SUIT_ViewManager* vm;
1219   ViewManagerList OCCViewManagers, VTKViewManagers;
1220   application()->viewManagers( OCCViewer_Viewer::Type(), OCCViewManagers );
1221   for ( vm = OCCViewManagers.first(); vm; vm = OCCViewManagers.next() )
1222     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1223   application()->viewManagers( SVTK_Viewer::Type(), VTKViewManagers );
1224   for ( vm = VTKViewManagers.first(); vm; vm = VTKViewManagers.next() )
1225     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1226
1227   // disable OCC selectors
1228   //getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1229   for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1230     sr->setEnabled(true);
1231
1232   // disable VTK selectors
1233   //getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1234   for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1235     sr->setEnabled(true);
1236
1237   return true;
1238 }
1239
1240
1241 //=======================================================================
1242 // function : GeometryGUI::deactivateModule()
1243 // purpose  : Called when GEOM module is deactivated
1244 //=======================================================================
1245 bool GeometryGUI::deactivateModule( SUIT_Study* study )
1246 {
1247   setMenuShown( false );
1248   setToolShown( false );
1249
1250   disconnect( application()->desktop(), SIGNAL( windowActivated( SUIT_ViewWindow* ) ),
1251              this, SLOT( onWindowActivated( SUIT_ViewWindow* ) ) );
1252
1253   EmitSignalCloseAllDialogs();
1254
1255   GUIMap::Iterator it;
1256   for ( it = myGUIMap.begin(); it != myGUIMap.end(); ++it )
1257     it.data()->deactivate();
1258
1259   // Unset actions accelerator keys
1260   //action(111)->setAccel(QKeySequence()); // Import
1261   //action(121)->setAccel(QKeySequence()); // Export
1262   action(111)->setEnabled(false); // Import
1263   action(121)->setEnabled(false); // Export
1264
1265   myOCCSelectors.clear();
1266   getApp()->selectionMgr()->setEnabled( true, OCCViewer_Viewer::Type() );
1267
1268   myVTKSelectors.clear();
1269   getApp()->selectionMgr()->setEnabled( true, SVTK_Viewer::Type() );
1270
1271   return SalomeApp_Module::deactivateModule( study );
1272 }
1273
1274 //=================================================================================
1275 // function : GeometryGUI::DefinePopup()
1276 // purpose  : Called from desktop to define popup menu [static]
1277 //=================================================================================
1278 /*
1279 void GeometryGUI::DefinePopup(QString& theContext, QString& theParent, QString& theObject)
1280 {
1281   QAD_Study* ActiveStudy = QAD_Application::getDesktop()->getActiveStudy();
1282   SALOME_Selection* Sel  = SALOME_Selection::Selection(ActiveStudy->getSelection());
1283
1284   theObject  = "";
1285   theContext = "";
1286
1287   if ( theParent == "Viewer" ) {
1288     if ( Sel->IObjectCount() == 0 )
1289       theContext = "NothingSelected";
1290   }
1291
1292   if ( Sel->IObjectCount() == 1 ) {
1293     Handle(SALOME_InteractiveObject) IO = Sel->firstIObject();
1294     if( IO->hasEntry() ) {
1295       SALOMEDS::SObject_var sobj = ActiveStudy->getStudyDocument()->FindObjectID( IO->getEntry() );
1296       if ( !sobj->_is_nil() ) {
1297         SALOMEDS::SComponent_var scomp = sobj->GetFatherComponent();
1298         if ( !strcmp(scomp->GetID(), IO->getEntry() ) ) {
1299           // component is selected
1300           theObject = "Component";
1301         }
1302         else {
1303           GEOM::GEOM_Object_var aGObj = GEOM::GEOM_Object::_narrow( sobj->GetObject() );
1304           if ( !CORBA::is_nil( aGObj ) ) {
1305             switch( aGObj->GetType() ) {
1306             case GEOM_GROUP:
1307               theObject = "Group";
1308               break;
1309             default:
1310               theObject = "Shape";
1311               break;
1312             }
1313           }
1314         }
1315       }
1316     }
1317   }
1318 }
1319
1320 //=================================================================================
1321 // function : GeometryGUI::CustomPopup()
1322 // purpose  : Called from desktop to create popup menu [static]
1323 //=================================================================================
1324 bool GeometryGUI::CustomPopup(QAD_Desktop* parent, QPopupMenu* popup, const QString& theContext,
1325                               const QString& theParent, const QString& theObject)
1326 {
1327   GeometryGUI* geomGUI = GetGeomGUI();
1328
1329   // Deactivate any non modal dialog box to get the neutral point
1330   geomGUI->EmitSignalDeactivateDialog();
1331   QAD_Study* anActiveStudy    = parent->getActiveStudy();
1332   QAD_StudyFrame* aStudyFrame = anActiveStudy->getActiveStudyFrame();
1333   QAD_ViewFrame* aViewFrame   = aStudyFrame->getRightFrame()->getViewFrame();
1334   SALOME_Selection* Sel       = SALOME_Selection::Selection(anActiveStudy->getSelection());
1335   QString parentComponent     = ((SALOMEGUI_Desktop*)parent)->getComponentFromSelection();
1336   bool isOCCViewer            = aViewFrame->getTypeView() == VIEW_OCC;
1337   bool isVTKViewer            = aViewFrame->getTypeView() == VIEW_VTK;
1338   int aDisplayMode            = 0;
1339   QString objectName;
1340
1341   if ( aViewFrame->getTypeView() == VIEW_OCC )
1342     aDisplayMode = ((OCCViewer_ViewFrame*)aViewFrame)->getViewer()->getAISContext()->DisplayMode();
1343   else if ( aViewFrame->getTypeView() == VIEW_VTK )
1344     aDisplayMode = (dynamic_cast<SVTK_ViewFrame*>( aViewFrame )->getRWInteractor()->GetDisplayMode();
1345
1346   int nbSel = Sel->IObjectCount();
1347
1348   if( nbSel == 0 ) {
1349     ////// NOTHING SELECTED
1350     popup->clear();
1351   }
1352   else if ( nbSel == 1 ) {
1353     ////// SINGLE OBJECT SELECTION
1354     if ( parentComponent != parent->getActiveComponent() )  {
1355       ////// selected object does not belong to GEOM module:
1356       // remove all commands except Display/Erase...
1357       while ( 1 ) {
1358         int id = popup->idAt( 0 );
1359         if ( id <= QAD_TopLabel_Popup_ID )
1360           popup->removeItemAt( 0 );
1361         else
1362           break;
1363       }
1364     }
1365     else {
1366       ////// selected object belong to the GEOM module
1367       // get interactive object
1368       Handle(SALOME_InteractiveObject) IObject = Sel->firstIObject();
1369       objectName = IObject->getName();
1370       // if object has entry get SObject
1371       SALOMEDS::SObject_var SO;
1372       if ( IObject->hasEntry() )
1373         SO = anActiveStudy->getStudyDocument()->FindObjectID( IObject->getEntry() );
1374
1375       if ( theObject == "Component" ) {
1376         ////// menu for component
1377         if ( !isOCCViewer && !isVTKViewer ) {
1378           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1379           popup->removeItem( QAD_Display_Popup_ID );
1380           popup->removeItem( QAD_Erase_Popup_ID );
1381         }
1382       }
1383       else {
1384         ////// not component (should be shape)
1385         if ( IObject->hasEntry() )  /////// VSR : TO BE REMOVED
1386           popup->removeItem( 804 ); // "Add in Study"
1387
1388         // Here could be analysis of the geom shape's type
1389         // ... //
1390
1391         SALOMEDS::GenericAttribute_var aTmpAttr;
1392         if( SO->_is_nil() || SO->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR") )
1393           popup->removeItem( 9024 ); // "Open" /////// VSR : TO BE REMOVED
1394
1395         if ( !isOCCViewer && theParent == "ObjectBrowser" ) {
1396           if ( theObject == "Shape" )
1397             popup->removeItem( 800 ); // Create Group
1398           else if ( theObject == "Group" )
1399             popup->removeItem( 801 ); // Edit Group
1400         }
1401
1402         if ( isOCCViewer || isVTKViewer ) {
1403           ////// current viewer is OCC or VTK
1404           SALOME_Prs* prs = aViewFrame->CreatePrs( IObject->getEntry() );
1405           if ( aViewFrame->isVisible( IObject ) ) {
1406             ////// object is already displayed in the viewer
1407             popup->removeItem( QAD_Display_Popup_ID );
1408             if ( isOCCViewer ) {
1409               ////// OCC viewer only
1410               OCCViewer_Prs* occPrs = dynamic_cast<OCCViewer_Prs*>( prs );
1411               if ( occPrs && !occPrs->IsNull() ) {
1412                 AIS_ListOfInteractive ioList;
1413                 occPrs->GetObjects( ioList );
1414                 QMenuItem* mi = popup->findItem( 803 );
1415                 if ( mi && mi->popup() ) {
1416                   if ( ioList.First()->DisplayMode() == 0 )
1417                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1418                   else if ( ioList.First()->DisplayMode() == 1 )
1419                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1420                   else if ( ioList.First()->DisplayMode() < 0 )
1421                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1422                 }
1423               }
1424             }
1425             else {
1426               ////// VTK viewer only
1427               popup->removeItem( 8034 ); // "Isos"
1428               SVTK_Prs* vtkPrs = dynamic_cast<SVTK_Prs*>( prs );
1429               if ( vtkPrs && !vtkPrs->IsNull() ) {
1430                 vtkActorCollection* actorList = vtkPrs->GetObjects();
1431                 actorList->InitTraversal();
1432                 SALOME_Actor* ac = SALOME_Actor::SafeDownCast( actorList->GetNextActor() );
1433                 QMenuItem* mi = popup->findItem( 803 );
1434                 if ( ac && mi && mi->popup() ) {
1435                   if ( ac->getDisplayMode() == 0 )
1436                     mi->popup()->setItemChecked( 80311, true ); // "Wireframe"
1437                   else if ( ac->getDisplayMode() == 1 )
1438                     mi->popup()->setItemChecked( 80312, true ); // "Shading"
1439                   else
1440                     mi->popup()->setItemChecked( aDisplayMode == 0 ? 80311 : 80312 , true ); // "Wireframe" or "Shading"
1441                 }
1442               }
1443             }
1444           }
1445           else {
1446             ////// object is not yet displayed in the viewer
1447             popup->removeItem( 803 );  // "Display Mode"
1448             popup->removeItem( 8032 ); // "Color"
1449             popup->removeItem( 8033 ); // "Transparency"
1450             popup->removeItem( 8034 ); // "Isos"
1451             popup->removeItem( QAD_Erase_Popup_ID );
1452           }
1453           delete prs;
1454         }
1455         else {
1456           ////// other viewer type (neither OCC nor VTK)
1457           popup->removeItem( 803 );  // "Display Mode"
1458           popup->removeItem( 8032 ); // "Color"
1459           popup->removeItem( 8033 ); // "Transparency"
1460           popup->removeItem( 8034 ); // "Isos"
1461           popup->removeItem( QAD_Display_Popup_ID );
1462           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1463           popup->removeItem( QAD_Erase_Popup_ID );
1464         }
1465       }
1466     }
1467   }
1468   else {
1469     ////// MULTIPLE SELECTION
1470     if ( parentComponent != parent->getActiveComponent() )  {
1471       ////// not GEOM module objects or objects belong to different modules
1472       // remove all commands except Display/Erase...
1473       while ( 1 ) {
1474         int id = popup->idAt( 0 );
1475         if ( id <= QAD_TopLabel_Popup_ID )
1476           popup->removeItemAt( 0 );
1477         else
1478           break;
1479       }
1480       if ( parentComponent.isNull() )  {
1481         ////// objects belong to different modules
1482         popup->removeItem(QAD_Display_Popup_ID);
1483         popup->removeItem(QAD_DisplayOnly_Popup_ID);
1484         popup->removeItem(QAD_Erase_Popup_ID);
1485       }
1486       else {
1487         objectName = tr( "GEOM_MEN_POPUP_NAME" ).arg( nbSel );
1488       }
1489     }
1490     else {
1491       ////// all selected objects belong to GEOM module
1492       popup->removeItem( 901 ); // "Rename"
1493
1494       SALOME_ListIteratorOfListIO It( Sel->StoredIObjects() );
1495       bool isComponent  = false;
1496       bool needOpen     = false;
1497       bool needDisplay  = false;
1498       bool needErase    = false;
1499       int needToPublish = 0;
1500
1501       for( ;It.More();It.Next() ) {
1502         Handle(SALOME_InteractiveObject) anIObject = It.Value();
1503
1504         if ( aViewFrame->isVisible( anIObject ) )
1505           needErase   = true;
1506         else
1507           needDisplay = true;
1508
1509         if( anIObject->hasEntry() ) {
1510           needToPublish = -1; /////// VSR : TO BE REMOVED
1511           SALOMEDS::SObject_var obj = anActiveStudy->getStudyDocument()->FindObjectID( anIObject->getEntry() );
1512           SALOMEDS::GenericAttribute_var aTmpAttr;
1513           if ( !obj->_is_nil() && !obj->GetFatherComponent()->FindAttribute( aTmpAttr, "AttributeIOR" ) )
1514             needOpen = true;  /////// VSR : TO BE REMOVED
1515           if ( !obj->_is_nil() && QString( obj->GetID() ) == QString( obj->GetFatherComponent()->GetID() ) )
1516             isComponent = true;
1517         }
1518         else {
1519           if ( needToPublish != -1 ) needToPublish = 1;
1520         }
1521       }
1522       if( needOpen || ( !isOCCViewer && !isVTKViewer ) ) {
1523         ////// Data is not loaded yet or current viewer is neither OCC nor VTK
1524         popup->removeItem( 803 );  // "Display Mode"
1525         popup->removeItem( 8032 ); // "Color"
1526         popup->removeItem( 8033 ); // "Transparency"
1527         popup->removeItem( 8034 ); // "Isos"
1528         popup->removeItem( 804 );  // "Add in Study"
1529         popup->removeItem( QAD_DisplayOnly_Popup_ID );
1530         popup->removeItem( QAD_Display_Popup_ID );
1531         popup->removeItem( QAD_Erase_Popup_ID );
1532       }
1533       else {
1534         popup->removeItem( 9024 );   // "Open"
1535         if ( needToPublish <= 0 )
1536           popup->removeItem( 804 );  // "Add in Study"
1537
1538         if( isComponent ) {
1539           popup->removeItem( 803 );  // "Display Mode"
1540           popup->removeItem( 8032 ); // "Color"
1541           popup->removeItem( 8033 ); // "Transparency"
1542           popup->removeItem( 8034 ); // "Isos"
1543           popup->removeItem( QAD_DisplayOnly_Popup_ID );
1544         }
1545
1546         if ( !needDisplay )
1547           popup->removeItem( QAD_Display_Popup_ID );
1548         if ( !needErase )
1549           popup->removeItem( QAD_Erase_Popup_ID );
1550         if ( !isOCCViewer )
1551           popup->removeItem( 8034 ); // "Isos"
1552       }
1553     }
1554   }
1555
1556   // check popup for unnecessary separators
1557   QAD_Tools::checkPopup( popup );
1558   // find popup menu's TopLabel item (with title)
1559   int topItem = popup->indexOf( QAD_TopLabel_Popup_ID );
1560   if ( topItem >= 0 ) {
1561     // remove popup menu's title item
1562     popup->removeItem( QAD_TopLabel_Popup_ID );
1563     if ( theParent == "Viewer" && !objectName.isEmpty() && popup->count() > 0 ) {
1564       // set bold font for popup menu's title
1565       QFont f = popup->font(); f.setBold( TRUE );
1566       popup->removeItem( QAD_TopLabel_Popup_ID );
1567       popup->insertItem( new CustomItem( objectName, f ), QAD_TopLabel_Popup_ID, topItem );
1568     }
1569   }
1570
1571   return false;
1572 }
1573
1574 */
1575
1576 //=======================================================================
1577 // function : GeometryGUI::BuildPresentation()
1578 // purpose  :
1579 //=======================================================================
1580 void GeometryGUI::BuildPresentation( const Handle(SALOME_InteractiveObject)& io, SUIT_ViewWindow* win )
1581 {
1582   //GEOM_Displayer().Display( io, false, win );
1583 }
1584
1585 //=======================================================================
1586 // function : onWindowActivated()
1587 // purpose  : update menu items' status - disable non-OCC-viewer-compatible actions
1588 //=======================================================================
1589 void GeometryGUI::onWindowActivated( SUIT_ViewWindow* win )
1590 {
1591   if ( !win )
1592     return;
1593
1594   const bool ViewOCC = ( win->getViewManager()->getType() == OCCViewer_Viewer::Type() );
1595 //  const bool ViewVTK = ( win->getViewManager()->getType() == SVTK_Viewer::Type() );
1596
1597   // disable non-OCC viewframe menu commands
1598 //  action( 404 )->setEnabled( ViewOCC ); // SKETCHER
1599   action( 603 )->setEnabled( ViewOCC ); // SuppressFace
1600   action( 604 )->setEnabled( ViewOCC ); // SuppressHole
1601   action( 606 )->setEnabled( ViewOCC ); // CloseContour
1602   action( 607 )->setEnabled( ViewOCC ); // RemoveInternalWires
1603   action( 608 )->setEnabled( ViewOCC ); // AddPointOnEdge
1604 //  action( 609 )->setEnabled( ViewOCC ); // Free boundaries
1605   action( 413 )->setEnabled( ViewOCC ); // Isos Settings
1606
1607   action( 800 )->setEnabled( ViewOCC ); // Create Group
1608   action( 801 )->setEnabled( ViewOCC ); // Edit Group
1609
1610   action( 9998 )->setEnabled( ViewOCC ); // MENU BLOCKS - MULTI-TRANSFORMATION
1611 }
1612
1613 void GeometryGUI::windows( QMap<int, int>& mappa ) const
1614 {
1615   mappa.insert( SalomeApp_Application::WT_ObjectBrowser, Qt::DockLeft );
1616   mappa.insert( SalomeApp_Application::WT_PyConsole, Qt::DockBottom );
1617 }
1618
1619 void GeometryGUI::viewManagers( QStringList& lst ) const
1620 {
1621   lst.append( OCCViewer_Viewer::Type() );
1622 }
1623
1624 void GeometryGUI::onViewManagerAdded( SUIT_ViewManager* vm )
1625 {
1626   if ( vm->getType() == OCCViewer_Viewer::Type() )
1627   {
1628     qDebug( "connect" );
1629     connect( vm, SIGNAL( keyPress  ( SUIT_ViewWindow*, QKeyEvent* ) ),
1630              this, SLOT( OnKeyPress( SUIT_ViewWindow*, QKeyEvent* ) ) );
1631     connect( vm, SIGNAL( mousePress( SUIT_ViewWindow*, QMouseEvent* ) ),
1632              this, SLOT( OnMousePress( SUIT_ViewWindow*, QMouseEvent* ) ) );
1633     connect( vm, SIGNAL( mouseMove ( SUIT_ViewWindow*, QMouseEvent* ) ),
1634              this, SLOT( OnMouseMove( SUIT_ViewWindow*, QMouseEvent* ) ) );
1635
1636
1637     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1638     myOCCSelectors.append( new GEOMGUI_OCCSelector( ((OCCViewer_ViewManager*)vm)->getOCCViewer(), sm ) );
1639
1640     // disable OCC selectors
1641     getApp()->selectionMgr()->setEnabled( false, OCCViewer_Viewer::Type() );
1642     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1643       sr->setEnabled(true);
1644   }
1645   else if ( vm->getType() == SVTK_Viewer::Type() )
1646   {
1647     LightApp_SelectionMgr* sm = getApp()->selectionMgr();
1648     myVTKSelectors.append( new LightApp_VTKSelector( dynamic_cast<SVTK_Viewer*>( vm->getViewModel() ), sm ) );
1649
1650     // disable VTK selectors
1651     getApp()->selectionMgr()->setEnabled( false, SVTK_Viewer::Type() );
1652     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1653       sr->setEnabled(true);
1654   }
1655 }
1656
1657 void GeometryGUI::onViewManagerRemoved( SUIT_ViewManager* vm )
1658 {
1659   SUIT_ViewModel* viewer = vm->getViewModel();
1660   if ( vm->getType() == OCCViewer_Viewer::Type() )
1661   {
1662     for ( GEOMGUI_OCCSelector* sr = myOCCSelectors.first(); sr; sr = myOCCSelectors.next() )
1663       if ( sr->viewer() == viewer )
1664       {
1665         myOCCSelectors.remove( sr );
1666         break;
1667       }
1668   }
1669   if ( vm->getType() == SVTK_Viewer::Type() )
1670   {
1671     for ( LightApp_VTKSelector* sr = myVTKSelectors.first(); sr; sr = myVTKSelectors.next() )
1672       if ( sr->viewer() == viewer )
1673       {
1674         myVTKSelectors.remove( sr );
1675         break;
1676       }
1677   }
1678 }
1679
1680 QString GeometryGUI::engineIOR() const
1681 {
1682   if ( !CORBA::is_nil( GetGeomGen() ) )
1683     return QString( getApp()->orb()->object_to_string( GetGeomGen() ) );
1684   return QString( "" );
1685 }
1686
1687 LightApp_Selection* GeometryGUI::createSelection() const
1688 {
1689   return new GEOMGUI_Selection();
1690 }
1691
1692 void GeometryGUI::contextMenuPopup( const QString& client, QPopupMenu* menu, QString& title )
1693 {
1694   SalomeApp_Module::contextMenuPopup( client, menu, title );
1695   SALOME_ListIO lst;
1696   getApp()->selectionMgr()->selectedObjects( lst );
1697   if ( ( client == "OCCViewer" || client == "VTKViewer" ) && lst.Extent() == 1 ) {
1698     Handle(SALOME_InteractiveObject) io = lst.First();
1699     SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>( application()->activeStudy() );
1700     _PTR(Study) study = appStudy->studyDS();
1701     _PTR(SObject) obj = study->FindObjectID( io->getEntry() );
1702     if ( obj )
1703       title = QString( obj->GetName().c_str() );
1704   }
1705 }
1706
1707 void GeometryGUI::createPreferences()
1708 {
1709   int tabId = addPreference( tr( "PREF_TAB_SETTINGS" ) );
1710
1711   int genGroup = addPreference( tr( "PREF_GROUP_GENERAL" ), tabId );
1712   setPreferenceProperty( genGroup, "columns", 1 );
1713
1714   int dispmode = addPreference( tr( "PREF_DISPLAY_MODE" ), genGroup,
1715                             LightApp_Preferences::Selector, "Geometry", "display_mode" );
1716
1717   addPreference( tr( "PREF_SHADING_COLOR" ), genGroup,
1718                  LightApp_Preferences::Color, "Geometry", "shading_color" );
1719
1720   addPreference( tr( "PREF_WIREFRAME_COLOR" ), genGroup,
1721                  LightApp_Preferences::Color, "Geometry", "wireframe_color" );
1722
1723   addPreference( tr( "PREF_FREE_BOUND_COLOR" ), genGroup,
1724                  LightApp_Preferences::Color, "Geometry", "free_bound_color" );
1725
1726   addPreference( tr( "PREF_LINE_COLOR"), genGroup,
1727                  LightApp_Preferences::Color, "Geometry", "line_color" );
1728
1729   addPreference( tr( "PREF_POINT_COLOR"), genGroup,
1730                  LightApp_Preferences::Color, "Geometry", "point_color" );
1731
1732   addPreference( tr( "PREF_ISOS_COLOR" ), genGroup,
1733                  LightApp_Preferences::Color, "Geometry", "isos_color" );
1734
1735   int step = addPreference( tr( "PREF_STEP_VALUE" ), genGroup,
1736                             LightApp_Preferences::IntSpin, "Geometry", "SettingsGeomStep" );
1737
1738   int VertexGroup = addPreference( tr( "PREF_GROUP_VERTEX" ), tabId );
1739
1740   int typeOfMarker = addPreference( tr( "PREF_TYPE_OF_MARKER" ), VertexGroup,
1741                                     LightApp_Preferences::Selector, "Geometry", "type_of_marker" );
1742
1743   int markerScale = addPreference( tr( "PREF_MARKER_SCALE" ), VertexGroup,
1744                                    LightApp_Preferences::DblSpin, "Geometry", "marker_scale" );
1745
1746   // Set property for default display mode
1747   QStringList aModesList;
1748   aModesList.append( tr("MEN_WIREFRAME") );
1749   aModesList.append( tr("MEN_SHADING") );
1750
1751   QValueList<QVariant> anIndexesList;
1752   anIndexesList.append(0);
1753   anIndexesList.append(1);
1754
1755   setPreferenceProperty( dispmode, "strings", aModesList );
1756   setPreferenceProperty( dispmode, "indexes", anIndexesList );
1757
1758   // Set property for step value for spinboxes
1759   setPreferenceProperty( step, "min", 0.001 );
1760   setPreferenceProperty( step, "max", 10000 );
1761   setPreferenceProperty( step, "precision", 3 );
1762
1763   // Set property for type of vertex marker
1764   QStringList aTypeOfMarkerList;
1765   QValueList<QVariant> anTypeOfMarkerIndexesList;
1766
1767   aTypeOfMarkerList.append( tr("TOM_PLUS") );
1768   anTypeOfMarkerIndexesList.append(Aspect_TOM_PLUS);
1769
1770   aTypeOfMarkerList.append( tr("TOM_POINT") );
1771   anTypeOfMarkerIndexesList.append(Aspect_TOM_POINT);
1772
1773   aTypeOfMarkerList.append( tr("TOM_STAR") );
1774   anTypeOfMarkerIndexesList.append(Aspect_TOM_STAR);
1775
1776   aTypeOfMarkerList.append( tr("TOM_O") );
1777   anTypeOfMarkerIndexesList.append(Aspect_TOM_O);
1778
1779   aTypeOfMarkerList.append( tr("TOM_X") );
1780   anTypeOfMarkerIndexesList.append(Aspect_TOM_X);
1781
1782   aTypeOfMarkerList.append( tr("TOM_O_POINT") );
1783   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_POINT);
1784
1785   aTypeOfMarkerList.append( tr("TOM_O_PLUS") );
1786   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_PLUS);
1787
1788   aTypeOfMarkerList.append( tr("TOM_O_STAR") );
1789   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_STAR);
1790
1791   aTypeOfMarkerList.append( tr("TOM_O_X") );
1792   anTypeOfMarkerIndexesList.append(Aspect_TOM_O_X);
1793
1794
1795   setPreferenceProperty( typeOfMarker, "strings", aTypeOfMarkerList );
1796   setPreferenceProperty( typeOfMarker, "indexes", anTypeOfMarkerIndexesList );
1797
1798   // Set property for Vertex Marker scale
1799   setPreferenceProperty( markerScale, "min", 1. );
1800   setPreferenceProperty( markerScale, "max", 7. );
1801   setPreferenceProperty( markerScale, "precision", 0.01 );
1802   setPreferenceProperty( markerScale, "step", 0.5 );
1803
1804 }
1805
1806 void GeometryGUI::preferencesChanged( const QString& section, const QString& param )
1807 {
1808   if (section == "Geometry") {
1809     SUIT_ResourceMgr* aResourceMgr = SUIT_Session::session()->resourceMgr();
1810     if (param == QString("SettingsGeomStep")) {
1811       double spin_step = aResourceMgr->doubleValue(section, param, 100.);
1812       EmitSignalDefaultStepValueChanged(spin_step);
1813     }
1814   }
1815 }
1816
1817 LightApp_Displayer* GeometryGUI::displayer()
1818 {
1819   if( !myDisplayer )
1820     myDisplayer = new GEOM_Displayer( dynamic_cast<SalomeApp_Study*>( getApp()->activeStudy() ) );
1821   return myDisplayer;
1822 }
1823
1824 void GeometryGUI::setLocalSelectionMode(const int mode)
1825 {
1826   myLocalSelectionMode = mode;
1827 }
1828 int GeometryGUI::getLocalSelectionMode() const
1829 {
1830   return myLocalSelectionMode;
1831 }