2004-01-07 20:46:21 +05:00
|
|
|
// GEOM GEOMGUI : GUI for Geometry component
|
|
|
|
//
|
|
|
|
// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
// File : RepairGUI.cxx
|
|
|
|
// Author : Damien COQUERET
|
|
|
|
// Module : GEOM
|
2004-12-01 15:39:14 +05:00
|
|
|
// $Header$
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
#include "RepairGUI.h"
|
|
|
|
|
2005-06-02 13:17:09 +06:00
|
|
|
#include "SUIT_Desktop.h"
|
|
|
|
#include "SUIT_Session.h"
|
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
|
2004-01-07 20:46:21 +05:00
|
|
|
|
2004-06-16 21:24:55 +06:00
|
|
|
#include "utilities.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
RepairGUI* RepairGUI::myGUIObject = 0;
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : GetRepairGUI()
|
|
|
|
// purpose : Get the only RepairGUI object [ static ]
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
RepairGUI* RepairGUI::GetRepairGUI( GeometryGUI* parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
|
|
|
if ( myGUIObject == 0 ) {
|
|
|
|
// init RepairGUI only once
|
2005-06-02 13:17:09 +06:00
|
|
|
myGUIObject = new RepairGUI( parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
|
|
|
return myGUIObject;
|
|
|
|
}
|
|
|
|
|
2004-01-07 20:46:21 +05:00
|
|
|
//=======================================================================
|
|
|
|
// function : RepairGUI()
|
|
|
|
// purpose : Constructor
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
RepairGUI::RepairGUI( GeometryGUI* parent ) : GEOMGUI( parent )
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : ~RepairGUI()
|
|
|
|
// purpose : Destructor
|
|
|
|
//=======================================================================
|
|
|
|
RepairGUI::~RepairGUI()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=======================================================================
|
|
|
|
// function : OnGUIEvent()
|
|
|
|
// purpose :
|
|
|
|
//=======================================================================
|
2005-06-02 13:17:09 +06:00
|
|
|
bool RepairGUI::OnGUIEvent(int theCommandID, SUIT_Desktop* parent)
|
2004-01-07 20:46:21 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
getGeometryGUI()->EmitSignalDeactivateDialog();
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
QDialog* aDlg = NULL;
|
|
|
|
switch (theCommandID) {
|
2004-01-07 20:46:21 +05:00
|
|
|
case 601: // SEWING
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_SewingDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 602: // GLUE FACES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_GlueDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 603: // SUPPRESS FACES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_SuppressFacesDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 604: // SUPPRESS HOLES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_RemoveHolesDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 605: // SHAPE PROCESSING
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_ShapeProcessDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 606: // CLOSE CONTOUR
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_CloseContourDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 607: // REMOVE INTERNAL WIRES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_RemoveIntWiresDlg( parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 608: // ADD POINT ON EDGE
|
2005-10-07 14:31:46 +06:00
|
|
|
aDlg = new RepairGUI_DivideEdgeDlg( getGeometryGUI(), parent, "" );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
|
|
|
case 609: // FREE BOUNDARIES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_FreeBoundDlg( getGeometryGUI(), parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
break;
|
2005-01-20 11:24:17 +05:00
|
|
|
case 610: // FREE FACES
|
2005-06-02 13:17:09 +06:00
|
|
|
aDlg = new RepairGUI_FreeFacesDlg( getGeometryGUI(), parent, "" );
|
2005-01-20 11:24:17 +05:00
|
|
|
break;
|
2004-01-07 20:46:21 +05:00
|
|
|
default:
|
2005-06-02 13:17:09 +06:00
|
|
|
SUIT_Session::session()->activeApplication()->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();
|
2004-01-07 20:46:21 +05:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//=====================================================================================
|
|
|
|
// EXPORTED METHODS
|
|
|
|
//=====================================================================================
|
|
|
|
extern "C"
|
|
|
|
{
|
2005-08-29 12:03:08 +06:00
|
|
|
#ifdef WNT
|
|
|
|
__declspec( dllexport )
|
|
|
|
#endif
|
2005-06-02 13:17:09 +06:00
|
|
|
GEOMGUI* GetLibGUI( GeometryGUI* parent )
|
2004-12-01 15:39:14 +05:00
|
|
|
{
|
2005-06-02 13:17:09 +06:00
|
|
|
return RepairGUI::GetRepairGUI( parent );
|
2004-12-01 15:39:14 +05:00
|
|
|
}
|
2004-01-07 20:46:21 +05:00
|
|
|
}
|