geom/src/TransformationGUI/TransformationGUI_PositionDlg.cxx

692 lines
23 KiB
C++
Raw Normal View History

2009-02-13 12:16:39 +00:00
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
2004-12-01 10:39:14 +00:00
//
2009-02-13 12:16:39 +00:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
2004-12-01 10:39:14 +00:00
//
2009-02-13 12:16:39 +00: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-12-01 10:39:14 +00:00
//
2009-02-13 12:16:39 +00: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 : TransformationGUI_PositionDlg.cxx
// Author : Damien COQUERET, Open CASCADE S.A.S.
2004-12-01 10:39:14 +00:00
//
#include "TransformationGUI_PositionDlg.h"
2009-02-13 12:16:39 +00:00
#include <DlgRef.h>
#include <GeometryGUI.h>
#include <GEOMBase.h>
2009-02-13 12:16:39 +00:00
#include <SUIT_Session.h>
#include <SUIT_ResourceMgr.h>
#include <SalomeApp_Application.h>
#include <LightApp_SelectionMgr.h>
#include <TColStd_IndexedMapOfInteger.hxx>
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
// OCCT Includes
#include <TColStd_MapOfInteger.hxx>
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
#include <GEOMImpl_Types.hxx>
2004-12-01 10:39:14 +00:00
//=================================================================================
// class : TransformationGUI_PositionDlg()
2009-02-13 12:16:39 +00:00
// purpose : Constructs a TransformationGUI_PositionDlg which is a child of 'parent', with the
2004-12-01 10:39:14 +00: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.
//=================================================================================
TransformationGUI_PositionDlg::TransformationGUI_PositionDlg
2009-02-13 12:16:39 +00:00
(GeometryGUI* theGeometryGUI, QWidget* parent, bool modal, Qt::WindowFlags fl)
: GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl),
myInitial(true)
2004-12-01 10:39:14 +00:00
{
SUIT_ResourceMgr* aResMgr = myGeomGUI->getApp()->resourceMgr();
2009-02-13 12:16:39 +00:00
QPixmap image0 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_POSITION")));
QPixmap image1 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_POSITION2")));
QPixmap image2 (aResMgr->loadPixmap("GEOM", tr("ICON_DLG_POSITION3")));
QPixmap imageselect (aResMgr->loadPixmap("GEOM", tr("ICON_SELECT")));
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
setWindowTitle(tr("GEOM_POSITION_TITLE"));
2004-12-01 10:39:14 +00:00
/***************************************************************/
2009-02-13 12:16:39 +00:00
mainFrame()->GroupConstructors->setTitle(tr("GEOM_POSITION"));
mainFrame()->RadioButton1->setIcon(image0);
mainFrame()->RadioButton2->setIcon(image1);
mainFrame()->RadioButton3->setIcon(image2);
Group1 = new DlgRef_4Sel1Spin3Check(centralWidget());
2004-12-01 10:39:14 +00:00
Group1->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
Group1->TextLabel1->setText(tr("GEOM_OBJECTS"));
Group1->TextLabel2->setText(tr("GEOM_START_LCS"));
2009-02-13 12:16:39 +00:00
Group1->TextLabel3->setText(tr("GEOM_DISTANCE"));
Group1->TextLabel4->setText(tr("GEOM_END_LCS"));
Group1->TextLabel5->setText(tr("GEOM_PATH_OBJECT"));
Group1->PushButton1->setIcon(imageselect);
Group1->PushButton2->setIcon(imageselect);
Group1->PushButton4->setIcon(imageselect);
Group1->PushButton5->setIcon(imageselect);
Group1->CheckButton1->setText(tr("GEOM_CREATE_COPY"));
Group1->CheckButton2->setText(tr("SELECT_UNPUBLISHED_EDGES"));
Group1->CheckButton3->setText(tr("GEOM_REVERSE_DIRECTION"));
QVBoxLayout* layout = new QVBoxLayout(centralWidget());
layout->setMargin(0); layout->setSpacing(6);
layout->addWidget(Group1);
2004-12-01 10:39:14 +00:00
/***************************************************************/
2009-02-13 12:16:39 +00:00
setHelpFileName("modify_location_operation_page.html");
// Activate Create a Copy mode
Group1->CheckButton1->setChecked(true);
Group1->CheckButton1->setChecked(false);
CreateCopyModeChanged(true);
2004-12-01 10:39:14 +00:00
Init();
}
//=================================================================================
// function : ~TransformationGUI_PositionDlg()
// purpose : Destroys the object and frees any allocated resources
//=================================================================================
TransformationGUI_PositionDlg::~TransformationGUI_PositionDlg()
2009-02-13 12:16:39 +00:00
{
// no need to delete child widgets, Qt does it all for us
2004-12-01 10:39:14 +00:00
}
//=================================================================================
// function : Init()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::Init()
2009-02-13 12:16:39 +00:00
{
// init variables
2004-12-01 10:39:14 +00:00
Group1->LineEdit1->setReadOnly(true);
Group1->LineEdit2->setReadOnly(true);
2009-02-13 12:16:39 +00:00
Group1->LineEdit4->setReadOnly(true);
Group1->LineEdit5->setReadOnly(true);
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
Group1->LineEdit1->setText("");
Group1->LineEdit2->setText("");
Group1->LineEdit4->setText("");
Group1->LineEdit5->setText("");
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
initSpinBox(Group1->SpinBox_DX, 0, 1, 0.05, 6); // VSR:TODO : DBL_DIGITS_DISPLAY
Group1->SpinBox_DX->setValue(0);
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
Group1->CheckButton2->setEnabled(false);
myStartLCS = myEndLCS = GEOM::GEOM_Object::_nil();
mainFrame()->GroupBoxPublish->show();
// signals and slots connections
connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk()));
connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
connect(this, SIGNAL(constructorsClicked(int)), this, SLOT(ConstructorsClicked(int)));
connect(Group1->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group1->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group1->PushButton4, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group1->PushButton5, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect(Group1->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect(Group1->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect(Group1->LineEdit4, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect(Group1->LineEdit5, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect(Group1->CheckButton1, SIGNAL(toggled(bool)), this, SLOT(CreateCopyModeChanged(bool)));
connect(Group1->SpinBox_DX, SIGNAL(valueChanged(double)), this, SLOT(ValueChangedInSpinBox()));
connect(Group1->CheckButton2, SIGNAL(toggled(bool)), this, SLOT(SelectionTypeButtonClicked()));
connect(Group1->CheckButton3, SIGNAL(toggled(bool)), this, SLOT(ValueChangedInSpinBox()));
initName(tr("GEOM_POSITION"));
ConstructorsClicked(0);
}
2004-12-01 10:39:14 +00:00
//=================================================================================
// function : ConstructorsClicked()
// purpose : Radio button management
//=================================================================================
2009-02-13 12:16:39 +00:00
void TransformationGUI_PositionDlg::ConstructorsClicked (int constructorId)
2004-12-01 10:39:14 +00:00
{
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
2009-02-13 12:16:39 +00:00
2004-12-01 10:39:14 +00:00
Group1->LineEdit2->clear();
2009-02-13 12:16:39 +00:00
Group1->LineEdit4->clear();
Group1->LineEdit5->clear();
2004-12-01 10:39:14 +00:00
myStartLCS = GEOM::GEOM_Object::_nil();
myEndLCS = GEOM::GEOM_Object::_nil();
2009-02-13 12:16:39 +00:00
myPath = GEOM::GEOM_Object::_nil();
switch (constructorId) {
case 0:
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
Group1->LineEdit2->hide();
Group1->TextLabel2->hide();
Group1->PushButton2->hide();
Group1->LineEdit5->hide();
Group1->TextLabel5->hide();
Group1->PushButton5->hide();
Group1->SpinBox_DX->hide();
Group1->TextLabel3->hide();
Group1->LineEdit4->show();
Group1->TextLabel4->show();
Group1->PushButton4->show();
Group1->PushButton1->click();
Group1->CheckButton2->hide();
Group1->CheckButton3->hide();
}
break;
case 1:
{
Group1->LineEdit2->show();
Group1->TextLabel2->show();
Group1->PushButton2->show();
Group1->LineEdit5->hide();
Group1->TextLabel5->hide();
Group1->PushButton5->hide();
Group1->SpinBox_DX->hide();
Group1->TextLabel3->hide();
Group1->PushButton1->click();
Group1->CheckButton2->hide();
Group1->CheckButton3->hide();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
break;
case 2:
{
Group1->LineEdit4->hide();
Group1->TextLabel4->hide();
Group1->PushButton4->hide();
Group1->LineEdit2->hide();
Group1->TextLabel2->hide();
Group1->PushButton2->hide();
Group1->LineEdit5->show();
Group1->TextLabel5->show();
Group1->PushButton5->show();
Group1->SpinBox_DX->show();
Group1->TextLabel3->show();
Group1->PushButton1->click();
Group1->CheckButton2->show();
Group1->CheckButton3->show();
}
break;
}
qApp->processEvents();
updateGeometry();
resize(minimumSizeHint());
if (myInitial) {
myInitial = false;
SelectionIntoArgument();
}
else {
displayPreview();
}
}
//=================================================================================
// function : SelectionBittonClicked()
// purpose : Selection type Radio button management
//=================================================================================
void TransformationGUI_PositionDlg::SelectionTypeButtonClicked()
{
if ( Group1->CheckButton2->isChecked() ) {
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
} else {
TColStd_MapOfInteger aMap;
aMap.Add(GEOM_WIRE);
aMap.Add(GEOM_LINE);
globalSelection(aMap);
}
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
//=================================================================================
// function : ValueChangedInSpinBox()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::ValueChangedInSpinBox()
{
displayPreview();
}
2004-12-01 10:39:14 +00:00
//=================================================================================
// function : ClickOnOk()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::ClickOnOk()
{
2009-02-13 12:16:39 +00:00
if (ClickOnApply())
2004-12-01 10:39:14 +00:00
ClickOnCancel();
}
//=================================================================================
// function : ClickOnApply()
// purpose :
//=================================================================================
bool TransformationGUI_PositionDlg::ClickOnApply()
{
2009-02-13 12:16:39 +00:00
if (!onAccept(Group1->CheckButton1->isChecked()))
2004-12-01 10:39:14 +00:00
return false;
2009-02-13 12:16:39 +00:00
2004-12-01 10:39:14 +00:00
initName();
2009-02-13 12:16:39 +00:00
// activate selection and connect selection manager
ConstructorsClicked(getConstructorId());
2004-12-01 10:39:14 +00:00
return true;
}
//=================================================================================
// function : SelectionIntoArgument()
2009-02-13 12:16:39 +00:00
// purpose : Called when selection is changed or on dialog initialization or activation
2004-12-01 10:39:14 +00:00
//=================================================================================
void TransformationGUI_PositionDlg::SelectionIntoArgument()
{
2009-02-13 12:16:39 +00:00
erasePreview();
2004-12-01 10:39:14 +00:00
myEditCurrentArgument->setText("");
2009-02-13 12:16:39 +00:00
if (myEditCurrentArgument == Group1->LineEdit1)
myObjects.length(0);
else if (myEditCurrentArgument == Group1->LineEdit2)
myStartLCS = GEOM::GEOM_Object::_nil();
else if (myEditCurrentArgument == Group1->LineEdit4)
myEndLCS = GEOM::GEOM_Object::_nil();
else if (myEditCurrentArgument == Group1->LineEdit5)
myPath = GEOM::GEOM_Object::_nil();
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
SALOME_ListIO aSelList;
aSelMgr->selectedObjects(aSelList);
2004-12-01 10:39:14 +00:00
QString aName;
2009-02-13 12:16:39 +00:00
if (myEditCurrentArgument == Group1->LineEdit1) {
int aNbSel = GEOMBase::GetNameOfSelectedIObjects(aSelList, aName);
if (aNbSel < 1)
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
GEOMBase::ConvertListOfIOInListOfGO(aSelList, myObjects);
if (!myObjects.length())
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
else
myEditCurrentArgument->setText(aName);
if (getConstructorId() == 2)
Group1->PushButton5->click();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
else if (myEditCurrentArgument == Group1->LineEdit2) {
if (aSelList.Extent() != 1)
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
// nbSel == 1
2004-12-01 10:39:14 +00:00
Standard_Boolean testResult = Standard_False;
2009-02-13 12:16:39 +00:00
myStartLCS = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
if (!testResult || CORBA::is_nil(myStartLCS))
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
aName = GEOMBase::GetName(myStartLCS);
myEditCurrentArgument->setText(aName);
if (!myStartLCS->_is_nil() && myEndLCS->_is_nil())
Group1->PushButton4->click();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
else if (myEditCurrentArgument == Group1->LineEdit4) {
2004-12-01 10:39:14 +00:00
myEndLCS = GEOM::GEOM_Object::_nil();
2009-02-13 12:16:39 +00:00
if (aSelList.Extent() != 1)
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
2004-12-01 10:39:14 +00:00
Standard_Boolean testResult = Standard_False;
2009-02-13 12:16:39 +00:00
myEndLCS = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
if (!testResult || CORBA::is_nil(myEndLCS))
2004-12-01 10:39:14 +00:00
return;
2009-02-13 12:16:39 +00:00
aName = GEOMBase::GetName(myEndLCS);
myEditCurrentArgument->setText(aName);
if (!myEndLCS->_is_nil() && !myObjects.length())
Group1->PushButton1->click();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
else if (myEditCurrentArgument == Group1->LineEdit5) {
myPath = GEOM::GEOM_Object::_nil();
if (aSelList.Extent() != 1)
return;
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
Standard_Boolean testResult = Standard_False;
GEOM::GEOM_Object_ptr aSelectedObject = GEOMBase::ConvertIOinGEOMObject(aSelList.First(), testResult);
if (!testResult || aSelectedObject->_is_nil())
return;
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
aName = GEOMBase::GetName(myPath);
// Local Selection
TopoDS_Shape S;
if (!GEOMBase::GetShape(aSelectedObject, S))
return;
TColStd_IndexedMapOfInteger aMap;
aSelMgr->GetIndexes(aSelList.First(), aMap);
aName = GEOMBase::GetName(aSelectedObject);
if (aMap.Extent() == 1) {
int anIndex = aMap(1);
aName.append(":edge_" + QString::number(anIndex));
//Find SubShape Object in Father
GEOM::GEOM_Object_var aFindedObject = GEOMBase_Helper::findObjectInFather(aSelectedObject, aName);
if (aFindedObject == GEOM::GEOM_Object::_nil()) { // Object not found in study
GEOM::GEOM_IShapesOperations_var aShapesOp =
getGeomEngine()->GetIShapesOperations(getStudyId());
aSelectedObject = aShapesOp->GetSubShape(aSelectedObject, anIndex);
}
else { // get Object from study
aSelectedObject = aFindedObject;
}
}
else {
if (S.ShapeType() != TopAbs_EDGE && S.ShapeType() != TopAbs_WIRE) {
aSelectedObject = GEOM::GEOM_Object::_nil();
aName = "";
return;
}
}
myEditCurrentArgument->setText(aName);
myPath = aSelectedObject;
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
if (!myPath->_is_nil() && !myObjects.length())
Group1->PushButton1->click();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
// clear selection
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
myGeomGUI->getApp()->selectionMgr()->clearSelected();
connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
this, SLOT(SelectionIntoArgument()));
displayPreview();
}
2004-12-01 10:39:14 +00:00
//=================================================================================
// function : SetEditCurrentArgument()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::SetEditCurrentArgument()
{
QPushButton* send = (QPushButton*)sender();
2009-02-13 12:16:39 +00:00
disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
if (send == Group1->PushButton1) {
2004-12-01 10:39:14 +00:00
myEditCurrentArgument = Group1->LineEdit1;
2009-02-13 12:16:39 +00:00
2004-12-01 10:39:14 +00:00
globalSelection();
2009-02-13 12:16:39 +00:00
Group1->PushButton2->setDown(false);
Group1->PushButton4->setDown(false);
Group1->PushButton5->setDown(false);
Group1->LineEdit2->setEnabled(false);
Group1->LineEdit4->setEnabled(false);
Group1->LineEdit5->setEnabled(false);
Group1->CheckButton2->setEnabled(false);
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
else if (send == Group1->PushButton2) {
2004-12-01 10:39:14 +00:00
myEditCurrentArgument = Group1->LineEdit2;
2009-02-13 12:16:39 +00:00
2004-12-01 10:39:14 +00:00
TColStd_MapOfInteger aMap;
2009-02-13 12:16:39 +00:00
aMap.Add(GEOM_PLANE);
aMap.Add(GEOM_MARKER);
globalSelection(aMap);
Group1->PushButton1->setDown(false);
Group1->PushButton4->setDown(false);
Group1->PushButton5->setDown(false);
Group1->LineEdit1->setEnabled(false);
Group1->LineEdit4->setEnabled(false);
Group1->LineEdit5->setEnabled(false);
Group1->CheckButton2->setEnabled(false);
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
else if (send == Group1->PushButton4) {
myEditCurrentArgument = Group1->LineEdit4;
2004-12-01 10:39:14 +00:00
TColStd_MapOfInteger aMap;
2009-02-13 12:16:39 +00:00
aMap.Add(GEOM_PLANE);
aMap.Add(GEOM_MARKER);
globalSelection(aMap);
Group1->PushButton1->setDown(false);
Group1->PushButton2->setDown(false);
Group1->PushButton5->setDown(false);
Group1->LineEdit1->setEnabled(false);
Group1->LineEdit2->setEnabled(false);
Group1->LineEdit5->setEnabled(false);
Group1->CheckButton2->setEnabled(false);
}
else if (send == Group1->PushButton5) {
myEditCurrentArgument = Group1->LineEdit5;
Group1->CheckButton2->setEnabled(true);
if ( Group1->CheckButton2->isChecked() ) {
localSelection( GEOM::GEOM_Object::_nil(), TopAbs_EDGE );
} else {
TColStd_MapOfInteger aMap;
aMap.Add(GEOM_WIRE);
aMap.Add(GEOM_LINE);
globalSelection(aMap);
}
Group1->PushButton1->setDown(false);
Group1->PushButton2->setDown(false);
Group1->PushButton4->setDown(false);
Group1->LineEdit1->setEnabled(false);
Group1->LineEdit2->setEnabled(false);
Group1->LineEdit4->setEnabled(false);
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
this, SLOT(SelectionIntoArgument()));
2004-12-01 10:39:14 +00:00
2009-02-13 12:16:39 +00:00
// enable line edit
myEditCurrentArgument->setEnabled(true);
2004-12-01 10:39:14 +00:00
myEditCurrentArgument->setFocus();
2009-02-13 12:16:39 +00:00
// after setFocus(), because it will be setDown(false) when loses focus
send->setDown(true);
// seems we need it only to avoid preview disappearing, caused by selection mode change
displayPreview();
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
//=================================================================================
// function : LineEditReturnPressed()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::LineEditReturnPressed()
{
QLineEdit* send = (QLineEdit*)sender();
if (send == Group1->LineEdit1 ||
send == Group1->LineEdit2 ||
send == Group1->LineEdit4 ||
send == Group1->LineEdit5 ) {
myEditCurrentArgument = send;
GEOMBase_Skeleton::LineEditReturnPressed();
}
if (send == Group1->LineEdit5)
Group1->CheckButton2->setEnabled(true);
else
Group1->CheckButton2->setEnabled(false);
}
2004-12-01 10:39:14 +00:00
//=================================================================================
// function : ActivateThisDialog()
// purpose :
//=================================================================================
void TransformationGUI_PositionDlg::ActivateThisDialog()
{
GEOMBase_Skeleton::ActivateThisDialog();
2009-02-13 12:16:39 +00:00
connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
this, SLOT( SelectionIntoArgument() ) );
connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ),
this, SLOT( SelectionIntoArgument() ) );
2004-12-01 10:39:14 +00:00
ConstructorsClicked( getConstructorId() );
}
//=================================================================================
// function : enterEvent()
// purpose : when mouse enter onto the QWidget
//=================================================================================
2009-02-13 12:16:39 +00:00
void TransformationGUI_PositionDlg::enterEvent (QEvent*)
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
if (!mainFrame()->GroupConstructors->isEnabled())
2004-12-01 10:39:14 +00:00
ActivateThisDialog();
}
//=================================================================================
// function : createOperation
// purpose :
//=================================================================================
2009-02-13 12:16:39 +00:00
GEOM::GEOM_IOperations_ptr TransformationGUI_PositionDlg::createOperation()
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
return getGeomEngine()->GetITransformOperations(getStudyId());
2004-12-01 10:39:14 +00:00
}
//=================================================================================
// function : isValid
// purpose :
//=================================================================================
2009-02-13 12:16:39 +00:00
bool TransformationGUI_PositionDlg::isValid (QString& /*msg*/)
2004-12-01 10:39:14 +00:00
{
bool res;
if (getConstructorId() == 0)
res = !(myObjects.length() == 0 || myEndLCS->_is_nil());
2009-02-13 12:16:39 +00:00
else if ( getConstructorId() == 1 )
2004-12-01 10:39:14 +00:00
res = !(myObjects.length() == 0 || myStartLCS->_is_nil() || myEndLCS->_is_nil());
2009-02-13 12:16:39 +00:00
else if ( getConstructorId() == 2 )
res = !(myObjects.length() == 0 || myPath->_is_nil());
2004-12-01 10:39:14 +00:00
return res;
}
//=================================================================================
// function : execute
// purpose :
//=================================================================================
2009-02-13 12:16:39 +00:00
bool TransformationGUI_PositionDlg::execute (ObjectList& objects)
2004-12-01 10:39:14 +00:00
{
bool res = false;
2009-02-13 12:16:39 +00:00
bool toCreateCopy = IsPreview() || Group1->CheckButton1->isChecked();
2004-12-01 10:39:14 +00:00
GEOM::GEOM_Object_var anObj;
2009-02-13 12:16:39 +00:00
2009-09-21 12:54:44 +00:00
GEOM::GEOM_ITransformOperations_var anOper = GEOM::GEOM_ITransformOperations::_narrow(getOperation());
2009-02-13 12:16:39 +00:00
switch (getConstructorId()) {
case 0:
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
for (int i = 0; i < myObjects.length(); i++) {
2009-09-21 12:54:44 +00:00
anObj = toCreateCopy ?
anOper->PositionShapeCopy(myObjects[i], myObjects[i], myEndLCS) :
anOper->PositionShape(myObjects[i], myObjects[i], myEndLCS);
2009-02-13 12:16:39 +00:00
if (!anObj->_is_nil())
objects.push_back(anObj._retn());
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
res = true;
break;
}
case 1:
{
for (int i = 0; i < myObjects.length(); i++) {
if (toCreateCopy)
2009-09-21 12:54:44 +00:00
anObj = toCreateCopy ?
anOper->PositionShapeCopy(myObjects[i], myStartLCS, myEndLCS) :
anOper->PositionShape(myObjects[i], myStartLCS, myEndLCS);
2009-02-13 12:16:39 +00:00
if (!anObj->_is_nil())
objects.push_back(anObj._retn());
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
res = true;
break;
2004-12-01 10:39:14 +00:00
}
2009-02-13 12:16:39 +00:00
case 2:
{
double aDistance = Group1->SpinBox_DX->value();
bool toReverse = Group1->CheckButton3->isChecked();
for (int i = 0; i < myObjects.length(); i++) {
2009-09-21 12:54:44 +00:00
anObj = anOper->PositionAlongPath(myObjects[i], myPath, aDistance, toCreateCopy, toReverse);
2009-02-13 12:16:39 +00:00
if (!anObj->_is_nil())
objects.push_back(anObj._retn());
}
res = true;
break;
}
}
2004-12-01 10:39:14 +00:00
return res;
}
//=================================================================================
2009-02-13 12:16:39 +00:00
// function : restoreSubShapes
2004-12-01 10:39:14 +00:00
// purpose :
//=================================================================================
2009-02-13 12:16:39 +00:00
void TransformationGUI_PositionDlg::restoreSubShapes (SALOMEDS::Study_ptr theStudy,
SALOMEDS::SObject_ptr theSObject)
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
if (mainFrame()->CheckBoxRestoreSS->isChecked()) {
// empty list of arguments means that all arguments should be restored
getGeomEngine()->RestoreSubShapesSO(theStudy, theSObject, GEOM::ListOfGO(),
/*theFindMethod=*/GEOM::FSM_Transformed,
/*theInheritFirstArg=*/true);
}
2004-12-01 10:39:14 +00:00
}
//=================================================================================
// function : CreateCopyModeChanged()
// purpose :
//=================================================================================
2009-02-13 12:16:39 +00:00
void TransformationGUI_PositionDlg::CreateCopyModeChanged (bool isCreateCopy)
{
mainFrame()->GroupBoxName->setEnabled(isCreateCopy);
}
//=================================================================================
// function : addSubshapeToStudy
// purpose : virtual method to add new SubObjects if local selection
//=================================================================================
void TransformationGUI_PositionDlg::addSubshapesToStudy()
2004-12-01 10:39:14 +00:00
{
2009-02-13 12:16:39 +00:00
QMap<QString, GEOM::GEOM_Object_var> objMap;
objMap[Group1->LineEdit5->text()] = myPath;
addSubshapesToFather(objMap);
2004-12-01 10:39:14 +00:00
}