Salome HOME
22752: [EDF] Provide explicit feedback on what has been done by Shape Processing...
[modules/geom.git] / src / RepairGUI / RepairGUI.cxx
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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 }
124
125 //=====================================================================================
126 // Statistics dialog
127 //=====================================================================================
128
129 #include <QDialog>
130 #include <QHBoxLayout>
131 #include <QHeaderView>
132 #include <QPushButton>
133 #include <QString>
134 #include <QStringList>
135 #include <QTableWidget>
136 #include <QTableWidget>
137 #include <QTableWidgetItem>
138 #include <QVBoxLayout>
139
140 namespace
141 {
142   class StatsDlg : public QDialog
143   {
144   public:
145     StatsDlg( GEOM::ModifStatistics_var stats, QWidget* parent );
146   };
147
148   StatsDlg::StatsDlg( GEOM::ModifStatistics_var stats, QWidget* parent ): QDialog( parent )
149   {
150     setModal( false );
151     setAttribute( Qt::WA_DeleteOnClose, true );
152     setWindowTitle( tr( "GEOM_HEALING_STATS_TITLE" ) );
153     setMinimumWidth( 500 );
154
155     const int nbRows = stats->length();
156     const int nbCols = 2;
157     QTableWidget* table = new QTableWidget( nbRows, nbCols, this );
158     table->setEditTriggers( QAbstractItemView::NoEditTriggers );
159     table->horizontalHeader()->setResizeMode( 1, QHeaderView::Interactive );
160     table->horizontalHeader()->setStretchLastSection( true );
161
162     QStringList headers;
163     headers << tr( "GEOM_HEALING_STATS_COL_1" );
164     headers << tr( "GEOM_HEALING_STATS_COL_2" );
165     table->setHorizontalHeaderLabels( headers );
166
167     // buttons
168
169     QPushButton* okBtn = new QPushButton( tr( "GEOM_BUT_OK" ), this );
170     okBtn->setAutoDefault( true );
171     okBtn->setDefault( true );
172     okBtn->setFocus();
173     // QPushButton* helpBtn = new QPushButton( tr( "GEOM_BUT_HELP" ), this );
174     // helpBtn->setAutoDefault( true );
175
176     QHBoxLayout* btnLayout = new QHBoxLayout;
177     btnLayout->setMargin( 9 );
178     btnLayout->setSpacing( 6 );
179
180     btnLayout->addWidget( okBtn );
181     btnLayout->addStretch( 10 );
182     // btnLayout->addWidget( helpBtn );
183
184     QVBoxLayout* aLay = new QVBoxLayout( this );
185     aLay->setMargin( 9 );
186     aLay->setSpacing( 6 );
187     aLay->addWidget( table );
188     aLay->addLayout( btnLayout );
189
190     // fill the table
191     for ( int row = 0; row < nbRows; ++row )
192     {
193       table->setItem( row, 0, new QTableWidgetItem( QString::number( stats[ row ].count )));
194       table->setItem( row, 1, new QTableWidgetItem( tr( stats[ row ].name.in() )));
195     }
196
197     connect( okBtn,       SIGNAL( clicked() ), this, SLOT( reject() ));
198     //connect( helpBtn,     SIGNAL( clicked() ), this, SLOT( help() ));
199
200   }
201 }
202
203 //================================================================================
204 /*!
205  * \brief Show a dialog providing info on what is done by healing
206  */
207 //================================================================================
208
209 void RepairGUI::ShowStatistics( GEOM::GEOM_IHealingOperations_var anOper, QWidget* parent )
210 {
211   GEOM::ModifStatistics_var stats = anOper->GetStatistics();
212
213   if ( ! &stats.in() || stats->length() == 0 )
214     return;
215
216   StatsDlg* dlg = new StatsDlg( stats, parent );
217   dlg->exec();
218 }