geom/src/OperationGUI/OperationGUI_FilletDlg.cxx

757 lines
25 KiB
C++
Raw Normal View History

2012-08-09 13:58:02 +06:00
// Copyright (C) 2007-2012 CEA/DEN, EDF R&D, OPEN CASCADE
2004-01-07 20:46:21 +05:00
//
2012-08-09 13:58:02 +06: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
//
2012-08-09 13:58:02 +06: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
//
2012-08-09 13:58:02 +06: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.
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// 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
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2009-02-13 17:16:39 +05:00
//
2012-08-09 13:58:02 +06:00
2009-02-13 17:16:39 +05:00
// GEOM GEOMGUI : GUI for Geometry component
// File : OperationGUI_FilletDlg.cxx
// Author : Damien COQUERET, Open CASCADE S.A.S.
2004-01-07 20:46:21 +05:00
//
#include "OperationGUI_FilletDlg.h"
2009-02-13 17:16:39 +05:00
#include <DlgRef.h>
#include <GeometryGUI.h>
#include <GEOMBase.h>
#include <SUIT_Desktop.h>
#include <SUIT_Session.h>
#include <SUIT_ResourceMgr.h>
#include <SUIT_ViewWindow.h>
#include <SUIT_ViewManager.h>
#include <SalomeApp_Application.h>
#include <LightApp_SelectionMgr.h>
#include <OCCViewer_ViewModel.h>
2009-02-13 17:16:39 +05:00
// OCCT Includes
#include <TColStd_MapOfInteger.hxx>
2004-12-01 15:39:14 +05:00
#include <TColStd_IndexedMapOfInteger.hxx>
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
#include <GEOMImpl_Types.hxx>
2004-06-16 21:24:55 +06:00
2004-01-07 20:46:21 +05:00
//=================================================================================
// class : OperationGUI_FilletDlg()
2009-02-13 17:16:39 +05:00
// purpose : Constructs a OperationGUI_FilletDlg which is a child of 'parent', with the
2004-01-07 20:46:21 +05:00
// name 'name' and widget flags set to 'f'.
// The dialog will by default be modeless, unless you set 'modal' to
// TRUE to construct a modal dialog.
//=================================================================================
2009-02-13 17:16:39 +05:00
OperationGUI_FilletDlg::OperationGUI_FilletDlg (GeometryGUI* theGeometryGUI, QWidget* parent)
: GEOMBase_Skeleton(theGeometryGUI, parent, false),
myInitial(true)
2004-01-07 20:46:21 +05:00
{
SUIT_ResourceMgr* aResMgr = myGeomGUI->getApp()->resourceMgr();
QPixmap image0 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_ALL")));
QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_EDGE")));
QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_FILLET_FACE")));
2009-02-13 17:16:39 +05:00
QPixmap iconSelect (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
2009-02-13 17:16:39 +05:00
setWindowTitle(tr("GEOM_FILLET_TITLE"));
2004-01-07 20:46:21 +05:00
/***************************************************************/
2009-02-13 17:16:39 +05:00
mainFrame()->GroupConstructors->setTitle(tr("GEOM_FILLET"));
mainFrame()->RadioButton1->setIcon(image0);
mainFrame()->RadioButton2->setIcon(image1);
mainFrame()->RadioButton3->setIcon(image2);
Group1 = new DlgRef_1Sel1Spin(centralWidget());
Group1->GroupBox1->setTitle(tr("GEOM_FILLET_ALL"));
Group1->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
Group1->TextLabel2->setText(tr("GEOM_RADIUS"));
Group1->PushButton1->setIcon(iconSelect);
Group1->LineEdit1->setReadOnly(true);
Group2 = new DlgRef_2Sel3Spin2Rb(centralWidget());
Group2->GroupBox1->setTitle(tr("GEOM_FILLET_EDGES"));
Group2->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
Group2->TextLabel2->setText(tr("SELECTED_EDGES"));
Group2->TextLabel3->setText(tr("GEOM_RADIUS"));
Group2->TextLabel4->setText(tr("GEOM_R1"));
Group2->TextLabel5->setText(tr("GEOM_R2"));
Group2->PushButton1->setIcon(iconSelect);
Group2->PushButton2->setIcon(iconSelect);
Group2->LineEdit1->setReadOnly(true);
Group2->LineEdit2->setReadOnly(true);
Group3 = new DlgRef_2Sel3Spin2Rb(centralWidget());
Group3->GroupBox1->setTitle(tr("GEOM_FILLET_FACES"));
Group3->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
Group3->TextLabel2->setText(tr("SELECTED_FACES"));
Group3->TextLabel3->setText(tr("GEOM_RADIUS"));
Group3->TextLabel4->setText(tr("GEOM_R1"));
Group3->TextLabel5->setText(tr("GEOM_R2"));
Group3->PushButton1->setIcon(iconSelect);
Group3->PushButton2->setIcon(iconSelect);
Group3->LineEdit1->setReadOnly(true);
Group3->LineEdit2->setReadOnly(true);
QVBoxLayout* layout = new QVBoxLayout(centralWidget());
layout->setMargin(0); layout->setSpacing(6);
layout->addWidget(Group1);
layout->addWidget(Group2);
layout->addWidget(Group3);
2004-01-07 20:46:21 +05:00
/***************************************************************/
2009-02-13 17:16:39 +05:00
// Set range of spinboxes
2004-12-01 15:39:14 +05:00
double SpecificStep = 10.0;
2012-08-09 13:58:02 +06:00
initSpinBox(Group1->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group2->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group2->SpinBox_DY, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group2->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group3->SpinBox_DX, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group3->SpinBox_DY, 0.001, COORD_MAX, SpecificStep, "length_precision" );
initSpinBox(Group3->SpinBox_DZ, 0.001, COORD_MAX, SpecificStep, "length_precision" );
2004-12-01 15:39:14 +05:00
setHelpFileName("fillet_operation_page.html");
2009-02-13 17:16:39 +05:00
// Initialisation
Init();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ~OperationGUI_FilletDlg()
// purpose : Destroys the object and frees any allocated resources
//=================================================================================
OperationGUI_FilletDlg::~OperationGUI_FilletDlg()
2009-02-13 17:16:39 +05:00
{
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : Init()
// purpose :
//=================================================================================
void OperationGUI_FilletDlg::Init()
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
// Set Initial values of spinboxes
Group1->SpinBox_DX->setValue(5);
Group2->SpinBox_DX->setValue(5);
Group2->SpinBox_DY->setValue(5);
Group2->SpinBox_DZ->setValue(5);
Group3->SpinBox_DX->setValue(5);
Group3->SpinBox_DY->setValue(5);
Group3->SpinBox_DZ->setValue(5);
// Clear line edits
Group1->LineEdit1->setText("");
Group2->LineEdit1->setText("");
Group2->LineEdit2->setText("");
Group3->LineEdit1->setText("");
Group3->LineEdit2->setText("");
myShape = GEOM::GEOM_Object::_nil();
myFaces.Clear();
myEdges.Clear();
2012-08-09 13:58:02 +06:00
showOnlyPreviewControl();
2009-02-13 17:16:39 +05:00
// signals and slots connections
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
// main buttons
2009-02-13 17:16:39 +05:00
connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk() ));
connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
// group box
2009-02-13 17:16:39 +05:00
connect(this, SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
// push buttons
2004-01-07 20:46:21 +05:00
connect(Group1->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
2004-12-01 15:39:14 +05:00
connect(Group2->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group3->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group2->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group3->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
// line edits
2004-01-07 20:46:21 +05:00
connect(Group1->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
2004-12-01 15:39:14 +05:00
connect(Group2->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect(Group3->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
// spin boxes
2004-01-07 20:46:21 +05:00
connect(Group1->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
2004-12-01 15:39:14 +05:00
connect(Group2->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
connect(Group2->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
connect(Group2->SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
2004-12-01 15:39:14 +05:00
connect(Group3->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
connect(Group3->SpinBox_DY, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
connect(Group3->SpinBox_DZ, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox(double)));
2009-02-13 17:16:39 +05:00
// radio buttons
connect(Group2->RadioButton1, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
connect(Group2->RadioButton2, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
connect(Group3->RadioButton1, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
connect(Group3->RadioButton2, SIGNAL(clicked()), this, SLOT(RadioButtonClicked()));
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
initName(tr("GEOM_FILLET"));
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
myConstructorId = -1;
ConstructorsClicked(0);
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ConstructorsClicked()
// purpose : Radio button management
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::ConstructorsClicked (int constructorId)
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
if (myGeomGUI->getApp()->desktop()->activeWindow()->getViewManager()->getType()
!= OCCViewer_Viewer::Type()) {
mainFrame()->RadioButton1->setChecked(true);
2004-12-01 15:39:14 +05:00
return;
}
2009-02-13 17:16:39 +05:00
if (myConstructorId == constructorId)
2004-12-01 15:39:14 +05:00
return;
// Get radius from previous widget
2009-02-13 17:16:39 +05:00
QString R = "5", R1 = "5", R2 = "5";
if (myConstructorId == 0) {
R = Group1->SpinBox_DX->text();
}
else if (myConstructorId == 1) {
R = Group2->SpinBox_DX->text();
R1 = Group2->SpinBox_DY->text();
R2 = Group2->SpinBox_DZ->text();
}
else {
2009-02-13 17:16:39 +05:00
R = Group3->SpinBox_DX->text();
R1 = Group3->SpinBox_DY->text();
R2 = Group3->SpinBox_DZ->text();
}
2004-12-01 15:39:14 +05:00
2004-01-07 20:46:21 +05:00
myConstructorId = constructorId;
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
switch (constructorId) {
case 0:
Group2->hide();
Group3->hide();
Group1->show();
Group1->SpinBox_DX->setText(R);
2004-12-01 15:39:14 +05:00
break;
2009-02-13 17:16:39 +05:00
case 1:
Group1->hide();
Group3->hide();
Group2->show();
Group2->SpinBox_DX->setText(R);
Group2->SpinBox_DY->setText(R1);
Group2->SpinBox_DZ->setText(R2);
2004-12-01 15:39:14 +05:00
break;
2009-02-13 17:16:39 +05:00
case 2:
Group1->hide();
Group2->hide();
Group3->show();
Group3->SpinBox_DX->setText(R);
Group3->SpinBox_DY->setText(R1);
Group3->SpinBox_DZ->setText(R2);
2004-12-01 15:39:14 +05:00
break;
2009-02-13 17:16:39 +05:00
default:
2004-12-01 15:39:14 +05:00
break;
2004-01-07 20:46:21 +05:00
}
2009-02-13 17:16:39 +05:00
if (constructorId == 0) Group1->PushButton1->click();
else if (constructorId == 1) Group2->PushButton1->click();
else Group3->PushButton1->click();
2004-12-01 15:39:14 +05:00
enableWidgets();
2009-02-13 17:16:39 +05:00
if (myInitial) {
myInitial = false;
SelectionIntoArgument();
2004-06-16 21:24:55 +06:00
}
2009-02-13 17:16:39 +05:00
else {
if (!myShape->_is_nil()) {
myEditCurrentArgument->setText(GEOMBase::GetName(myShape));
GEOMBase_Skeleton::LineEditReturnPressed();
switch (getConstructorId()) {
case 1:
if (myEdges.Extent() == 0)
Group2->PushButton2->click();
break;
case 2:
if (myFaces.Extent() == 0)
Group3->PushButton2->click();
break;
default:
break;
}
}
else
myEditCurrentArgument->setText("");
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
processPreview();
2009-02-13 17:16:39 +05:00
}
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
qApp->processEvents();
updateGeometry();
resize(minimumSizeHint());
}
2004-01-07 20:46:21 +05:00
//=================================================================================
// function : ClickOnOk()
// purpose :
//=================================================================================
void OperationGUI_FilletDlg::ClickOnOk()
{
2012-08-09 13:58:02 +06:00
setIsApplyAndClose( true );
2009-02-13 17:16:39 +05:00
if (ClickOnApply())
2004-12-01 15:39:14 +05:00
ClickOnCancel();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : ClickOnApply()
// purpose :
//=================================================================================
2004-12-01 15:39:14 +05:00
bool OperationGUI_FilletDlg::ClickOnApply()
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
if (!onAccept())
2004-12-01 15:39:14 +05:00
return false;
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
initName();
2009-02-13 17:16:39 +05:00
// activate selection and connect selection manager
ConstructorsClicked(getConstructorId());
2004-12-01 15:39:14 +05:00
return true;
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : SelectionIntoArgument()
2009-02-13 17:16:39 +05:00
// purpose : Called when selection is changed or on dialog initialization or activation
2004-01-07 20:46:21 +05:00
//=================================================================================
void OperationGUI_FilletDlg::SelectionIntoArgument()
{
2004-12-01 15:39:14 +05:00
erasePreview();
2009-02-13 17:16:39 +05:00
myEditCurrentArgument->setText("");
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
SALOME_ListIO aSelList;
aSelMgr->selectedObjects(aSelList);
2004-12-01 15:39:14 +05:00
// If selection of main object is activated
2009-02-13 17:16:39 +05:00
if (myEditCurrentArgument == Group1->LineEdit1 ||
myEditCurrentArgument == Group2->LineEdit1 ||
myEditCurrentArgument == Group3->LineEdit1)
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
myShape = GEOM::GEOM_Object::_nil();
if (aSelList.Extent() == 1) {
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_var anObj =
2012-08-09 13:58:02 +06:00
GEOMBase::ConvertIOinGEOMObject( aSelList.First() );
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
if ( !anObj->_is_nil() ) {
2004-12-01 15:39:14 +05:00
myShape = anObj;
2009-02-13 17:16:39 +05:00
myEditCurrentArgument->setText(GEOMBase::GetName(anObj));
2012-08-09 13:58:02 +06:00
processPreview();
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
}
enableWidgets();
}
// If face or edge selection is activated
2009-02-13 17:16:39 +05:00
else if (myEditCurrentArgument == Group2->LineEdit2 ||
myEditCurrentArgument == Group3->LineEdit2)
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
if (myEditCurrentArgument == Group2->LineEdit2) myEdges.Clear();
else myFaces.Clear();
if (aSelList.Extent() == 1) {
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_var anObj =
2012-08-09 13:58:02 +06:00
GEOMBase::ConvertIOinGEOMObject( aSelList.First() );
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
if ( !anObj->_is_nil() ) {
TColStd_IndexedMapOfInteger anIndexes;
2009-02-13 17:16:39 +05:00
aSelMgr->GetIndexes(aSelList.First(), anIndexes);
2009-02-13 17:16:39 +05:00
if (anIndexes.Extent() > 0) {
QString aName;
2009-02-13 17:16:39 +05:00
if (anIndexes.Extent() == 1) {
int anIndex = anIndexes(1);
2009-02-13 17:16:39 +05:00
aName = QString(GEOMBase::GetName(anObj)) + QString(":%1").arg(anIndex);
}
else {
aName = tr("GEOM_MEN_POPUP_NAME").arg(anIndexes.Extent());
}
2009-02-13 17:16:39 +05:00
myEditCurrentArgument->setText(aName);
2009-02-13 17:16:39 +05:00
if (myConstructorId == 1)
myEdges = anIndexes;
else
myFaces = anIndexes;
2012-08-09 13:58:02 +06:00
processPreview();
}
2004-01-07 20:46:21 +05:00
}
}
}
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
// clear selection of the faces or edges
2009-02-13 17:16:39 +05:00
if (!(myEditCurrentArgument == Group2->LineEdit2 ||
myEditCurrentArgument == Group3->LineEdit2)) {
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
myGeomGUI->getApp()->selectionMgr()->clearSelected();
connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
this, SLOT(SelectionIntoArgument()));
}
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
switch (getConstructorId()) {
case 1:
if (myEditCurrentArgument == Group2->LineEdit1) {
if (!myShape->_is_nil() && myEdges.Extent() == 0)
Group2->PushButton2->click();
}
break;
case 2:
if (myEditCurrentArgument == Group3->LineEdit1) {
if (!myShape->_is_nil() && myFaces.Extent() == 0)
Group3->PushButton2->click();
}
break;
default:
break;
}
2012-08-09 13:58:02 +06:00
//rnv: To fix the bug IPAL22041 TC5.1.5: "Fillet Construcion" dialog loses current selection.
// Restore selection of the main shape, if need,
// because it was canceled.
aSelMgr->selectedObjects(aSelList);
if (aSelList.Extent() == 0 && !myShape->_is_nil()) {
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
ObjectList list;
list.push_back(myShape);
selectObjects(list);
connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
this, SLOT(SelectionIntoArgument()));
}
2004-01-07 20:46:21 +05:00
}
//=================================================================================
// function : SetEditCurrentArgument()
// purpose :
//=================================================================================
void OperationGUI_FilletDlg::SetEditCurrentArgument()
{
2004-12-01 15:39:14 +05:00
QPushButton* send = (QPushButton*)sender();
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
if (send == Group1->PushButton1) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = Group1->LineEdit1;
}
2009-02-13 17:16:39 +05:00
else if (send == Group2->PushButton1) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = Group2->LineEdit1;
2009-02-13 17:16:39 +05:00
Group2->PushButton2->setDown(false);
Group2->LineEdit2->setEnabled(false);
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
else if (send == Group2->PushButton2) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = Group2->LineEdit2;
2009-02-13 17:16:39 +05:00
Group2->PushButton1->setDown(false);
Group2->LineEdit1->setEnabled(false);
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
else if (send == Group3->PushButton1) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = Group3->LineEdit1;
2009-02-13 17:16:39 +05:00
Group3->PushButton2->setDown(false);
Group3->LineEdit2->setEnabled(false);
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
else if (send == Group3->PushButton2) {
2004-12-01 15:39:14 +05:00
myEditCurrentArgument = Group3->LineEdit2;
2009-02-13 17:16:39 +05:00
Group3->PushButton1->setDown(false);
Group3->LineEdit1->setEnabled(false);
2004-12-01 15:39:14 +05:00
}
2004-06-16 21:24:55 +06:00
2009-02-13 17:16:39 +05:00
// enable line edit
myEditCurrentArgument->setEnabled(true);
myEditCurrentArgument->setFocus();
// after setFocus(), because it will be setDown(false) when loses focus
send->setDown(true);
2004-12-01 15:39:14 +05:00
activateSelection();
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
// seems we need it only to avoid preview disappearing, caused by selection mode change
2012-08-09 13:58:02 +06:00
processPreview();
2009-02-13 17:16:39 +05:00
}
2004-01-07 20:46:21 +05:00
//=================================================================================
2009-02-13 17:16:39 +05:00
// function : LineEditReturnPressed()
2004-01-07 20:46:21 +05:00
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::LineEditReturnPressed()
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
QLineEdit* send = (QLineEdit*)sender();
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
if (send == Group1->LineEdit1)
myEditCurrentArgument = Group1->LineEdit1;
else if (send == Group2->LineEdit1)
myEditCurrentArgument = Group2->LineEdit1;
else if (send == Group3->LineEdit1)
myEditCurrentArgument = Group3->LineEdit1;
else
return;
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
GEOMBase_Skeleton::LineEditReturnPressed();
2004-01-07 20:46:21 +05:00
}
//=================================================================================
2009-02-13 17:16:39 +05:00
// function : ActivateThisDialog()
2004-01-07 20:46:21 +05:00
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::ActivateThisDialog()
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
GEOMBase_Skeleton::ActivateThisDialog();
connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
2012-08-09 13:58:02 +06:00
this, SLOT( SelectionIntoArgument() ) );
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
ConstructorsClicked( getConstructorId() );
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=================================================================================
2009-02-13 17:16:39 +05:00
// function : enterEvent()
2004-12-01 15:39:14 +05:00
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::enterEvent (QEvent*)
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
if (!mainFrame()->GroupConstructors->isEnabled())
this->ActivateThisDialog();
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
//=================================================================================
2009-02-13 17:16:39 +05:00
// function : ValueChangedInSpinBox()
2004-01-07 20:46:21 +05:00
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::ValueChangedInSpinBox (double)
2004-01-07 20:46:21 +05:00
{
2012-08-09 13:58:02 +06:00
processPreview();
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=================================================================================
// function : activateSelection
// purpose : Activate selection in accordance with myEditCurrentArgument
//=================================================================================
void OperationGUI_FilletDlg::activateSelection()
{
2009-02-13 17:16:39 +05:00
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
if (!myShape->_is_nil() && myEditCurrentArgument == Group2->LineEdit2)
localSelection(myShape, TopAbs_EDGE);
else if (!myShape->_is_nil() && myEditCurrentArgument == Group3->LineEdit2)
localSelection(myShape, TopAbs_FACE);
else {
2004-12-01 15:39:14 +05:00
TColStd_MapOfInteger aMap;
2009-02-13 17:16:39 +05:00
aMap.Add(GEOM_SHELL);
aMap.Add(GEOM_SOLID);
aMap.Add(GEOM_COMPOUND);
globalSelection(aMap);
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
this, SLOT(SelectionIntoArgument()));
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
//=================================================================================
2004-12-01 15:39:14 +05:00
// function : enableWidgets
// purpose : Enable widgets of faces in accordance with value of main object
2004-01-07 20:46:21 +05:00
//=================================================================================
2004-12-01 15:39:14 +05:00
void OperationGUI_FilletDlg::enableWidgets()
2004-01-07 20:46:21 +05:00
{
2004-12-01 15:39:14 +05:00
int anId = getConstructorId();
2004-01-07 20:46:21 +05:00
2004-12-01 15:39:14 +05:00
bool toEnable = !myShape->_is_nil();
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
if (anId == 1) {
//Group2->LineEdit2->setEnabled(toEnable);
Group2->PushButton2->setEnabled(toEnable);
if (!toEnable) {
Group2->LineEdit2->setText("");
2004-12-01 15:39:14 +05:00
myEdges.Clear();
}
}
2009-02-13 17:16:39 +05:00
else if (anId == 2) {
//Group3->LineEdit2->setEnabled(toEnable);
Group3->PushButton2->setEnabled(toEnable);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
if (!toEnable) {
Group3->LineEdit2->setText("");
2004-12-01 15:39:14 +05:00
myFaces.Clear();
}
}
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=================================================================================
// function : createOperation
// purpose :
//=================================================================================
GEOM::GEOM_IOperations_ptr OperationGUI_FilletDlg::createOperation()
{
2009-02-13 17:16:39 +05:00
return getGeomEngine()->GetILocalOperations(getStudyId());
2004-12-01 15:39:14 +05:00
}
2004-01-07 20:46:21 +05:00
//=================================================================================
2009-02-13 17:16:39 +05:00
// function : isValid()
2004-12-01 15:39:14 +05:00
// purpose : Verify validity of input data
//=================================================================================
2009-02-13 17:16:39 +05:00
bool OperationGUI_FilletDlg::isValid (QString& msg)
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
bool ok = true;
switch (getConstructorId())
2004-12-01 15:39:14 +05:00
{
2009-02-13 17:16:39 +05:00
case 0:
ok = Group1->SpinBox_DX->isValid( msg, !IsPreview() ) && ok;
return !myShape->_is_nil() && ok;
case 1:
if (Group2->RadioButton1->isChecked())
2012-08-09 13:58:02 +06:00
ok = Group2->SpinBox_DX->isValid( msg, !IsPreview() );
2009-02-13 17:16:39 +05:00
else
{
2012-08-09 13:58:02 +06:00
ok = Group2->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
ok = Group2->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
2009-02-13 17:16:39 +05:00
}
return !myShape->_is_nil() && myEdges.Extent() > 0 && ok;
case 2:
if (Group3->RadioButton1->isChecked())
2012-08-09 13:58:02 +06:00
ok = Group3->SpinBox_DX->isValid( msg, !IsPreview() );
2009-02-13 17:16:39 +05:00
else
{
2012-08-09 13:58:02 +06:00
ok = Group3->SpinBox_DY->isValid( msg, !IsPreview() ) && ok;
ok = Group3->SpinBox_DZ->isValid( msg, !IsPreview() ) && ok;
2009-02-13 17:16:39 +05:00
}
return !myShape->_is_nil() && myFaces.Extent() > 0 && ok;
2004-12-01 15:39:14 +05:00
default: return false;
}
}
//=================================================================================
// function : execute
2004-01-07 20:46:21 +05:00
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
bool OperationGUI_FilletDlg::execute (ObjectList& objects)
2004-01-07 20:46:21 +05:00
{
2009-02-13 17:16:39 +05:00
QStringList aParameters;
2004-12-01 15:39:14 +05:00
GEOM::GEOM_Object_var anObj;
int anId = getConstructorId();
2012-08-09 13:58:02 +06:00
GEOM::GEOM_ILocalOperations_var anOper = GEOM::GEOM_ILocalOperations::_narrow(getOperation());
2009-02-13 17:16:39 +05:00
if (anId == 0) {
2012-08-09 13:58:02 +06:00
anObj = anOper->MakeFilletAll(myShape, getRadius());
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
aParameters << Group1->SpinBox_DX->text();
}
else if (anId == 1) {
2004-12-01 15:39:14 +05:00
GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
2009-02-13 17:16:39 +05:00
aList->length(myEdges.Extent());
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
for (int i = 1, n = myEdges.Extent(); i <= n; i++)
aList[ i - 1 ] = myEdges(i);
if (Group2->RadioButton1->isChecked())
{
2012-08-09 13:58:02 +06:00
anObj = anOper->MakeFilletEdges(myShape, getRadius(), aList);
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
2012-08-09 13:58:02 +06:00
aParameters << Group2->SpinBox_DX->text();
2009-02-13 17:16:39 +05:00
}
else
2009-02-13 17:16:39 +05:00
{
2012-08-09 13:58:02 +06:00
anObj = anOper->MakeFilletEdgesR1R2(myShape,
Group2->SpinBox_DY->value(),
Group2->SpinBox_DZ->value(),
aList);
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
{
2012-08-09 13:58:02 +06:00
aParameters << Group2->SpinBox_DY->text();
aParameters << Group2->SpinBox_DZ->text();
2009-02-13 17:16:39 +05:00
}
}
2004-12-01 15:39:14 +05:00
}
2009-02-13 17:16:39 +05:00
else if (anId == 2) {
2004-12-01 15:39:14 +05:00
GEOM::ListOfLong_var aList = new GEOM::ListOfLong;
2009-02-13 17:16:39 +05:00
aList->length(myFaces.Extent());
2004-01-07 20:46:21 +05:00
2009-02-13 17:16:39 +05:00
for (int i = 1, n = myFaces.Extent(); i <= n; i++)
aList[ i - 1 ] = myFaces(i);
if (Group3->RadioButton1->isChecked()) {
2012-08-09 13:58:02 +06:00
anObj = anOper->MakeFilletFaces(myShape, getRadius(), aList);
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
2012-08-09 13:58:02 +06:00
aParameters << Group3->SpinBox_DX->text();
2009-02-13 17:16:39 +05:00
}
else {
2012-08-09 13:58:02 +06:00
anObj = anOper->MakeFilletFacesR1R2(myShape,
Group3->SpinBox_DY->value(),
Group3->SpinBox_DZ->value(), aList);
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
{
2012-08-09 13:58:02 +06:00
aParameters << Group3->SpinBox_DY->text();
aParameters << Group3->SpinBox_DZ->text();
2009-02-13 17:16:39 +05:00
}
}
2004-01-07 20:46:21 +05:00
}
2004-06-16 21:24:55 +06:00
2009-02-13 17:16:39 +05:00
if (!anObj->_is_nil())
{
if (!IsPreview())
2012-08-09 13:58:02 +06:00
anObj->SetParameters(aParameters.join(":").toLatin1().constData());
2009-02-13 17:16:39 +05:00
objects.push_back(anObj._retn());
}
2004-12-01 15:39:14 +05:00
return true;
2004-01-07 20:46:21 +05:00
}
2004-12-01 15:39:14 +05:00
//=================================================================================
// function : getRadius
2009-02-13 17:16:39 +05:00
// purpose : Get radius
2004-12-01 15:39:14 +05:00
//=================================================================================
double OperationGUI_FilletDlg::getRadius() const
{
int anId = getConstructorId();
2009-02-13 17:16:39 +05:00
if (anId == 0) return Group1->SpinBox_DX->value();
else if (anId == 1) return Group2->SpinBox_DX->value();
else return Group3->SpinBox_DX->value();
2004-12-01 15:39:14 +05:00
}
//=================================================================================
// function : RadiobuttonClicked
// purpose :
//=================================================================================
2009-02-13 17:16:39 +05:00
void OperationGUI_FilletDlg::RadioButtonClicked()
{
2009-02-13 17:16:39 +05:00
const QObject* s = sender();
bool flag = s == Group2->RadioButton1 || s == Group3->RadioButton1;
Group2->RadioButton1->blockSignals(true);
Group2->RadioButton2->blockSignals(true);
Group3->RadioButton1->blockSignals(true);
Group3->RadioButton2->blockSignals(true);
Group2->SpinBox_DX->setEnabled(flag);
Group2->SpinBox_DY->setEnabled(!flag);
Group2->SpinBox_DZ->setEnabled(!flag);
Group2->RadioButton1->setChecked(flag);
Group2->RadioButton2->setChecked(!flag);
Group3->SpinBox_DX->setEnabled(flag);
Group3->SpinBox_DY->setEnabled(!flag);
Group3->SpinBox_DZ->setEnabled(!flag);
Group3->RadioButton1->setChecked(flag);
Group3->RadioButton2->setChecked(!flag);
Group2->RadioButton1->blockSignals(false);
Group2->RadioButton2->blockSignals(false);
Group3->RadioButton1->blockSignals(false);
Group3->RadioButton2->blockSignals(false);
2012-08-09 13:58:02 +06:00
processPreview();
}