]> SALOME platform Git repositories - modules/geom.git/blob - src/TransformationGUI/TransformationGUI.cxx
Salome HOME
IMP 0021068 (Projection) and bug 0021110 (Low efficiency of the explode)
[modules/geom.git] / src / TransformationGUI / TransformationGUI.cxx
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : TransformationGUI.cxx
24 // Author : Damien COQUERET, Open CASCADE S.A.S.
25
26 #include "TransformationGUI.h"
27
28 #include <GEOMBase.h>
29 #include <GeometryGUI.h>
30 #include "GeometryGUI_Operations.h"
31
32 #include <SUIT_Desktop.h>
33 #include <SUIT_ViewModel.h>
34 #include <SUIT_ViewWindow.h>
35 #include <SUIT_ViewManager.h>
36 #include <LightApp_SelectionMgr.h>
37 #include <SalomeApp_Application.h>
38 #include <SalomeApp_Study.h>
39 #include <SALOME_ListIteratorOfListIO.hxx>
40
41 #include "TransformationGUI_MultiTranslationDlg.h"   // Method MULTI TRANSLATION
42 #include "TransformationGUI_MultiRotationDlg.h"      // Method MULTI ROTATION
43 #include "TransformationGUI_TranslationDlg.h"        // Method TRANSLATION
44 #include "TransformationGUI_RotationDlg.h"           // Method ROTATION
45 #include "TransformationGUI_MirrorDlg.h"             // Method MIRROR
46 #include "TransformationGUI_ScaleDlg.h"              // Method SCALE
47 #include "TransformationGUI_OffsetDlg.h"             // Method OFFSET
48 #include "TransformationGUI_ProjectionDlg.h"         // Method PROJECTION
49 #include "TransformationGUI_PositionDlg.h"           // Method POSITION
50
51 //=======================================================================
52 // function : TransformationGUI()
53 // purpose  : Constructor
54 //=======================================================================
55 TransformationGUI::TransformationGUI( GeometryGUI* parent )
56   : GEOMGUI( parent )
57 {
58 }
59
60 //=======================================================================
61 // function : ~TransformationGUI()
62 // purpose  : Destructor
63 //=======================================================================
64 TransformationGUI::~TransformationGUI()
65 {
66 }
67
68
69 //=======================================================================
70 // function : OnGUIEvent()
71 // purpose  : 
72 //=======================================================================
73 bool TransformationGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
74 {
75   SalomeApp_Application* app = getGeometryGUI()->getApp();
76   if ( !app ) return false;
77
78   getGeometryGUI()->EmitSignalDeactivateDialog();
79   QDialog* aDlg = NULL;
80
81   switch ( theCommandID ) {
82   case GEOMOp::OpTranslate:      // TRANSLATION
83     aDlg = new TransformationGUI_TranslationDlg( getGeometryGUI(), parent );
84     break;
85   case GEOMOp::OpRotate:         // ROTATION
86     aDlg = new TransformationGUI_RotationDlg( getGeometryGUI(), parent );
87     break;
88   case GEOMOp::OpChangeLoc:      // POSITION
89     aDlg = new TransformationGUI_PositionDlg( getGeometryGUI(), parent );
90     break;
91   case GEOMOp::OpMirror:         // MIRROR
92     aDlg = new TransformationGUI_MirrorDlg( getGeometryGUI(), parent );
93     break;
94   case GEOMOp::OpScale:          // SCALE
95     aDlg = new TransformationGUI_ScaleDlg( getGeometryGUI(), parent );
96     break;
97   case GEOMOp::OpOffset:         // OFFSET
98     aDlg = new TransformationGUI_OffsetDlg( getGeometryGUI(), parent );
99     break;
100   case GEOMOp::OpProjection:     // PROJECTION
101     aDlg = new TransformationGUI_ProjectionDlg( getGeometryGUI(), parent );
102     break;
103   case GEOMOp::OpMultiTranslate: // MULTI TRANSLATION
104     aDlg = new TransformationGUI_MultiTranslationDlg( getGeometryGUI(), parent );
105     break;
106   case GEOMOp::OpMultiRotate:    // MULTI ROTATION
107     aDlg = new TransformationGUI_MultiRotationDlg( getGeometryGUI(), parent );
108     break;
109   case GEOMOp::OpReimport:       // RELOAD IMPORTED SHAPE
110     {
111       SalomeApp_Study* anAppStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
112
113       GEOM::GEOM_ITransformOperations_var anOp =
114         GeometryGUI::GetGeomGen()->GetITransformOperations(anAppStudy->id());
115       if (anOp->_is_nil()) return false;
116
117       GEOM_Displayer aDisp (anAppStudy);
118       SUIT_Desktop* desk = app->desktop();
119       QList<SUIT_ViewWindow*> wnds = desk->windows();
120
121       LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
122       SALOME_ListIO aSelList;
123       aSelMgr->selectedObjects(aSelList);
124
125       SALOME_ListIteratorOfListIO aSelIt (aSelList);
126       for (; aSelIt.More(); aSelIt.Next()) {
127         Handle(SALOME_InteractiveObject) io = aSelIt.Value();
128         GEOM::GEOM_Object_var aGeomObj = GEOMBase::ConvertIOinGEOMObject( io );
129         if ( !CORBA::is_nil( aGeomObj ) ) {
130           anOp->RecomputeObject(aGeomObj);
131
132           SUIT_ViewWindow* wnd;
133           QListIterator<SUIT_ViewWindow*> it (wnds);
134           while (it.hasNext() && (wnd = it.next()))
135           {
136             if (SUIT_ViewManager* vman = wnd->getViewManager()) {
137               if (SUIT_ViewModel* vmodel = vman->getViewModel()) {
138                 if (SALOME_View* view = dynamic_cast<SALOME_View*>(vmodel)) {
139                   if (view->isVisible(io)) {
140                     aDisp.Erase(io, true, false, view);
141                     getGeometryGUI()->GetShapeReader().RemoveShapeFromBuffer( getGeometryGUI()->getApp()->orb()->object_to_string( aGeomObj.in() ) );
142                     aDisp.Display(io, true, view);
143                   }
144                   // ? Redisplay subshapes ?
145                 }
146               }
147             }
148           }
149         }
150       } // for (; aSelIt.More(); aSelIt.Next())
151     }
152     break;
153   default:
154     app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
155     break;
156   }
157
158   if ( aDlg != NULL )
159     aDlg->show();
160
161   return true;
162 }
163
164
165 //=====================================================================================
166 // EXPORTED METHODS
167 //=====================================================================================
168 extern "C"
169 {
170 #ifdef WNT
171   __declspec( dllexport )
172 #endif
173   GEOMGUI* GetLibGUI( GeometryGUI* parent )
174   {
175     return new TransformationGUI( parent );
176   }
177 }