Salome HOME
Replace deprecated WNT macro definition by WIN32.
[modules/geom.git] / src / RepairGUI / RepairGUI.cxx
1 // Copyright (C) 2007-2013  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 //  File   : RepairGUI.cxx
23 //  Author : Damien COQUERET, Open CASCADE S.A.S.
24
25 #include "RepairGUI.h"
26
27 #include <GeometryGUI.h>
28 #include "GeometryGUI_Operations.h"
29
30 #include <SUIT_Desktop.h>
31 #include <SUIT_Session.h>
32 #include <SalomeApp_Application.h>
33
34 #include "RepairGUI_SewingDlg.h"        // Method SEWING
35 #include "RepairGUI_SuppressFacesDlg.h" // Method SUPPRESS FACES
36 #include "RepairGUI_RemoveHolesDlg.h"   // Method SUPPRESS HOLE
37 #include "RepairGUI_ShapeProcessDlg.h"  // Method PROCESS SHAPE
38 #include "RepairGUI_CloseContourDlg.h"  // Method CLOSE CONTOUR
39 #include "RepairGUI_RemoveIntWiresDlg.h"// Method REMOVE INTERNAL WIRES
40 #include "RepairGUI_DivideEdgeDlg.h"    // Method DEVIDE EDGE
41 #include "RepairGUI_FreeBoundDlg.h"     // Method FREE BOUNDARIES
42 #include "RepairGUI_FreeFacesDlg.h"     // Method FREE FACES
43 #include "RepairGUI_GlueDlg.h"          // Method GLUE FACES
44 #include "RepairGUI_LimitToleranceDlg.h"    // Method LIMIT TOLERANCE
45 #include "RepairGUI_ChangeOrientationDlg.h" // Method CHANGE ORIENTATION
46 #include "RepairGUI_RemoveWebsDlg.h"        // Method REMOVE INTERNAL FACES
47 #include "RepairGUI_RemoveExtraEdgesDlg.h"  // Method REMOVE EXTRA EDGES
48 #include "RepairGUI_FuseEdgesDlg.h"         // Method FUSE COLLINEAR EDGES
49 #include "RepairGUI_UnionFacesDlg.h"        // Method UNION FACES
50
51 //=======================================================================
52 // function : RepairGUI()
53 // purpose  : Constructor
54 //=======================================================================
55 RepairGUI::RepairGUI( GeometryGUI* parent )
56   : GEOMGUI( parent )
57 {
58 }
59
60 //=======================================================================
61 // function : ~RepairGUI()
62 // purpose  : Destructor
63 //=======================================================================
64 RepairGUI::~RepairGUI()
65 {
66 }
67
68
69 //=======================================================================
70 // function : OnGUIEvent()
71 // purpose  :
72 //=======================================================================
73 bool RepairGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
74 {
75   SalomeApp_Application* app = getGeometryGUI()->getApp();
76   if ( !app ) return false;
77
78   getGeometryGUI()->EmitSignalDeactivateDialog();
79
80   QDialog* aDlg = NULL;
81   switch (theCommandID) {
82   case GEOMOp::OpSewing:           aDlg = new RepairGUI_SewingDlg            (getGeometryGUI(), parent); break;
83   case GEOMOp::OpGlueFaces: aDlg = new RepairGUI_GlueDlg (getGeometryGUI(), parent, false, TopAbs_FACE); break;
84   case GEOMOp::OpGlueEdges: aDlg = new RepairGUI_GlueDlg (getGeometryGUI(), parent, false, TopAbs_EDGE); break;
85   case GEOMOp::OpLimitTolerance:   aDlg = new RepairGUI_LimitToleranceDlg    (getGeometryGUI(), parent); break;
86   case GEOMOp::OpSuppressFaces:    aDlg = new RepairGUI_SuppressFacesDlg     (getGeometryGUI(), parent); break;
87   case GEOMOp::OpSuppressHoles:    aDlg = new RepairGUI_RemoveHolesDlg       (getGeometryGUI(), parent); break;
88   case GEOMOp::OpShapeProcess:     aDlg = new RepairGUI_ShapeProcessDlg      (getGeometryGUI(), parent); break;
89   case GEOMOp::OpCloseContour:     aDlg = new RepairGUI_CloseContourDlg      (getGeometryGUI(), parent); break;
90   case GEOMOp::OpRemoveIntWires:   aDlg = new RepairGUI_RemoveIntWiresDlg    (getGeometryGUI(), parent); break;
91   case GEOMOp::OpAddPointOnEdge:   aDlg = new RepairGUI_DivideEdgeDlg        (getGeometryGUI(), parent); break;
92   case GEOMOp::OpFreeBoundaries:   aDlg = new RepairGUI_FreeBoundDlg         (getGeometryGUI(), parent); break;
93   case GEOMOp::OpFreeFaces:        aDlg = new RepairGUI_FreeFacesDlg         (getGeometryGUI(), parent); break;
94   case GEOMOp::OpOrientation:      aDlg = new RepairGUI_ChangeOrientationDlg (getGeometryGUI(), parent); break;
95   case GEOMOp::OpRemoveWebs:       aDlg = new RepairGUI_RemoveWebsDlg        (getGeometryGUI(), parent); break;
96   case GEOMOp::OpRemoveExtraEdges: aDlg = new RepairGUI_RemoveExtraEdgesDlg  (getGeometryGUI(), parent); break;
97   case GEOMOp::OpFuseEdges:        aDlg = new RepairGUI_FuseEdgesDlg         (getGeometryGUI(), parent); break;
98   case GEOMOp::OpUnionFaces:       aDlg = new RepairGUI_UnionFacesDlg        (getGeometryGUI(), parent); break;
99   default:
100     app->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
101     break;
102   }
103
104   if (aDlg)
105     aDlg->show();
106
107   return true;
108 }
109
110
111 //=====================================================================================
112 // EXPORTED METHODS
113 //=====================================================================================
114 extern "C"
115 {
116 #ifdef WIN32
117   __declspec( dllexport )
118 #endif
119   GEOMGUI* GetLibGUI( GeometryGUI* parent )
120   {
121     return new RepairGUI( parent );
122   }
123 }