2009-02-13 17:16:39 +05:00
|
|
|
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
2004-01-07 20:46:21 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2004-01-07 20:46:21 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
2004-01-07 20:46:21 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
//
|
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
// File : RepairGUI.cxx
|
|
|
|
// Author : Damien COQUERET, Open CASCADE S.A.S.
|
2004-01-07 20:46:21 +05:00
|
|
|
//
|
|
|
|
#include "RepairGUI.h"
|
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <GeometryGUI.h>
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#include <SUIT_Desktop.h>
|
|
|
|
#include <SUIT_Session.h>
|
|
|
|
#include <SalomeApp_Application.h>
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
#include "RepairGUI_SewingDlg.h" // Method SEWING
|
|
|
|
#include "RepairGUI_SuppressFacesDlg.h" // Method SUPPRESS FACES
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "RepairGUI_RemoveHolesDlg.h" // Method SUPPRESS HOLE
|
|
|
|
#include "RepairGUI_ShapeProcessDlg.h" // Method PROCESS SHAPE
|
|
|
|
#include "RepairGUI_CloseContourDlg.h" // Method CLOSE CONTOUR
|
|
|
|
#include "RepairGUI_RemoveIntWiresDlg.h"// Method REMOVE INTERNAL WIRES
|
|
|
|
#include "RepairGUI_DivideEdgeDlg.h" // Method DEVIDE EDGE
|
|
|
|
#include "RepairGUI_FreeBoundDlg.h" // Method FREE BOUNDARIES
|
2005-01-20 11:24:17 +05:00
|
|
|
#include "RepairGUI_FreeFacesDlg.h" // Method FREE FACES
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "RepairGUI_GlueDlg.h" // Method GLUE FACES
|
2008-03-07 12:45:34 +05:00
|
|
|
#include "RepairGUI_ChangeOrientationDlg.h" // Method CHANGE ORIENTATION
|
|
|
|
#include "RepairGUI_RemoveExtraEdgesDlg.h" // Method REMOVE EXTRA EDGES
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : RepairGUI()
|
|
|
|
// purpose : Constructor
|
|
|
|
//=======================================================================
|
2009-02-13 17:16:39 +05:00
|
|
|
RepairGUI::RepairGUI( GeometryGUI* parent )
|
|
|
|
: GEOMGUI( parent )
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : ~RepairGUI()
|
|
|
|
// purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
RepairGUI::~RepairGUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : OnGUIEvent()
|
|
|
|
// purpose :
|
|
|
|
//=======================================================================
|
2009-02-13 17:16:39 +05:00
|
|
|
bool RepairGUI::OnGUIEvent( int theCommandID, SUIT_Desktop* parent )
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
2008-03-07 12:45:34 +05:00
|
|
|
SalomeApp_Application* app = getGeometryGUI()->getApp();
|
2009-02-13 17:16:39 +05:00
|
|
|
if ( !app ) return false;
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
getGeometryGUI()->EmitSignalDeactivateDialog();
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
QDialog* aDlg = NULL;
|
2009-02-13 17:16:39 +05:00
|
|
|
switch ( theCommandID ) {
|
|
|
|
case 601: aDlg = new RepairGUI_SewingDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 602: aDlg = new RepairGUI_GlueDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 603: aDlg = new RepairGUI_SuppressFacesDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 604: aDlg = new RepairGUI_RemoveHolesDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 605: aDlg = new RepairGUI_ShapeProcessDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 606: aDlg = new RepairGUI_CloseContourDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 607: aDlg = new RepairGUI_RemoveIntWiresDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 608: aDlg = new RepairGUI_DivideEdgeDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 609: aDlg = new RepairGUI_FreeBoundDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 610: aDlg = new RepairGUI_FreeFacesDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 611: aDlg = new RepairGUI_ChangeOrientationDlg ( getGeometryGUI(), parent ); break;
|
|
|
|
case 612: aDlg = new RepairGUI_RemoveExtraEdgesDlg ( getGeometryGUI(), parent ); break;
|
2004-01-07 20:46:21 +05:00
|
|
|
default:
|
2009-02-13 17:16:39 +05:00
|
|
|
app->putInfo( tr( "GEOM_PRP_COMMAND" ).arg( theCommandID ) );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
if ( aDlg )
|
|
|
|
aDlg->show();
|
2006-05-06 14:44:32 +06:00
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=====================================================================================
|
|
|
|
// EXPORTED METHODS
|
|
|
|
//=====================================================================================
|
|
|
|
extern "C"
|
|
|
|
{
|
2005-08-29 12:03:08 +06:00
|
|
|
#ifdef WNT
|
2009-02-13 17:16:39 +05:00
|
|
|
__declspec( dllexport )
|
2005-08-29 12:03:08 +06:00
|
|
|
#endif
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMGUI* GetLibGUI( GeometryGUI* parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2008-03-07 12:45:34 +05:00
|
|
|
return new RepairGUI( parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|