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