]> SALOME platform Git repositories - modules/geom.git/blob - src/RepairGUI/RepairGUI.cxx
Salome HOME
f9a5789f9737ed96be50a1fa85617eb76911bf24
[modules/geom.git] / src / RepairGUI / RepairGUI.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : RepairGUI.cxx
25 //  Author : Damien COQUERET
26 //  Module : GEOM
27 //  $Header$
28
29 #include "RepairGUI.h"
30
31 #include "QAD_RightFrame.h"
32 #include "QAD_Desktop.h"
33 #include "OCCViewer_Viewer3d.h"
34 #include "SALOMEGUI_QtCatchCorbaException.hxx"
35
36 #include "RepairGUI_SewingDlg.h"        // Method SEWING
37 #include "RepairGUI_SuppressFacesDlg.h" // Method SUPPRESS FACES
38 #include "RepairGUI_RemoveHolesDlg.h"   // Method SUPPRESS HOLE
39 #include "RepairGUI_ShapeProcessDlg.h"  // Method PROCESS SHAPE
40 #include "RepairGUI_CloseContourDlg.h"  // Method CLOSE CONTOUR
41 #include "RepairGUI_RemoveIntWiresDlg.h"// Method REMOVE INTERNAL WIRES
42 #include "RepairGUI_DivideEdgeDlg.h"    // Method DEVIDE EDGE
43 #include "RepairGUI_FreeBoundDlg.h"     // Method FREE BOUNDARIES
44
45 #include "utilities.h"
46
47 using namespace std;
48
49 RepairGUI* RepairGUI::myGUIObject = 0;
50
51 //=======================================================================
52 // function : GetRepairGUI()
53 // purpose  : Get the only RepairGUI object [ static ]
54 //=======================================================================
55 RepairGUI* RepairGUI::GetRepairGUI()
56 {
57   if ( myGUIObject == 0 ) {
58     // init RepairGUI only once
59     myGUIObject = new RepairGUI();
60   }
61   return myGUIObject;
62 }
63
64 //=======================================================================
65 // function : RepairGUI()
66 // purpose  : Constructor
67 //=======================================================================
68 RepairGUI::RepairGUI() : GEOMGUI()
69 {
70 }
71
72
73 //=======================================================================
74 // function : ~RepairGUI()
75 // purpose  : Destructor
76 //=======================================================================
77 RepairGUI::~RepairGUI()
78 {
79 }
80
81
82 //=======================================================================
83 // function : OnGUIEvent()
84 // purpose  : 
85 //=======================================================================
86 bool RepairGUI::OnGUIEvent(int theCommandID, QAD_Desktop* parent)
87 {
88   GeometryGUI::GetGeomGUI()->EmitSignalDeactivateDialog();
89   SALOME_Selection* Sel = SALOME_Selection::Selection(QAD_Application::getDesktop()->getActiveStudy()->getSelection());
90
91   QDialog* aDlg = NULL;
92   switch (theCommandID)
93   {
94     case 601: // SEWING
95                         aDlg = new RepairGUI_SewingDlg( parent, "", Sel );
96                         break;
97     case 603: // SUPPRESS FACES
98                         aDlg = new RepairGUI_SuppressFacesDlg( parent, "", Sel);
99                         break;
100     case 604: // SUPPRESS HOLES
101       aDlg = new RepairGUI_RemoveHolesDlg( parent, "", Sel );
102                         break;
103     case 605: // SHAPE PROCESSING
104       aDlg = new RepairGUI_ShapeProcessDlg( parent, "", Sel );
105                         break;
106                 case 606: // CLOSE CONTOUR
107                   aDlg = new RepairGUI_CloseContourDlg( parent, "", Sel );
108                   break;
109                 case 607: // REMOVE INTERNAL WIRES
110                         aDlg = new RepairGUI_RemoveIntWiresDlg( parent, "", Sel );
111                         break;
112                 case 608: // ADD POINT ON EDGE
113                         aDlg = new RepairGUI_DivideEdgeDlg( parent, "", Sel );
114                         break;
115                 case 609: // FREE BOUNDARIES
116                         aDlg = new RepairGUI_FreeBoundDlg( parent, Sel );
117                         break;      
118     default:
119                         parent->putInfo(tr("GEOM_PRP_COMMAND").arg(theCommandID));
120                         break;
121   }
122
123   if ( aDlg )
124         aDlg->show();
125      
126   return true;
127 }
128
129
130 //=====================================================================================
131 // EXPORTED METHODS
132 //=====================================================================================
133 extern "C"
134 {
135   GEOMGUI* GetLibGUI()
136   {
137     return RepairGUI::GetRepairGUI();
138   }
139 }