IMP 0021069: Hide selected in explode function

This commit is contained in:
jfa 2011-03-31 11:20:40 +00:00
parent ae3549a5e4
commit 8afa92f295
4 changed files with 382 additions and 239 deletions

View File

@ -29,22 +29,31 @@
#include <GeometryGUI.h> #include <GeometryGUI.h>
#include <GEOMBase.h> #include <GEOMBase.h>
#include <OCCViewer_ViewModel.h>
#include <SVTK_ViewModel.h>
#include <SalomeApp_Study.h>
#include <SalomeApp_Application.h>
#include <LightApp_SelectionMgr.h>
#include <SALOME_ListIteratorOfListIO.hxx>
#include <SUIT_Desktop.h> #include <SUIT_Desktop.h>
#include <SUIT_ResourceMgr.h> #include <SUIT_ResourceMgr.h>
#include <SUIT_Session.h> #include <SUIT_Session.h>
#include <SUIT_ViewManager.h> #include <SUIT_ViewManager.h>
#include <SUIT_ViewWindow.h> #include <SUIT_ViewWindow.h>
#include <OCCViewer_ViewModel.h>
#include <SalomeApp_Application.h> #include <TopExp.hxx>
#include <LightApp_SelectionMgr.h> #include <TopExp_Explorer.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopTools_MapOfShape.hxx>
#include <TopTools_IndexedMapOfShape.hxx>
#include <TColStd_IndexedMapOfInteger.hxx> #include <TColStd_IndexedMapOfInteger.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopExp_Explorer.hxx>
#include <TopTools_MapOfShape.hxx>
#include <QMessageBox> #include <QMessageBox>
#include <GEOMImpl_Types.hxx>
//================================================================================= //=================================================================================
// class : EntityGUI_SubShapeDlg // class : EntityGUI_SubShapeDlg
// purpose : Constructs a EntityGUI_SubShapeDlg which is a child of 'parent', with the // purpose : Constructs a EntityGUI_SubShapeDlg which is a child of 'parent', with the
@ -52,47 +61,49 @@
// The dialog will by default be modeless, unless you set 'modal' to // The dialog will by default be modeless, unless you set 'modal' to
// TRUE to construct a modal dialog. // TRUE to construct a modal dialog.
//================================================================================= //=================================================================================
EntityGUI_SubShapeDlg::EntityGUI_SubShapeDlg( GeometryGUI* theGeometryGUI, QWidget* parent, EntityGUI_SubShapeDlg::EntityGUI_SubShapeDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
bool modal, Qt::WindowFlags fl ) bool modal, Qt::WindowFlags fl)
: GEOMBase_Skeleton( theGeometryGUI, parent, modal, fl ) : GEOMBase_Skeleton(theGeometryGUI, parent, modal, fl)
{ {
QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_SUBSHAPE" ) ) ); QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_SUBSHAPE")));
QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) ); QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
setWindowTitle( tr( "GEOM_SUBSHAPE_TITLE" ) ); setWindowTitle(tr("GEOM_SUBSHAPE_TITLE"));
/***************************************************************/ /***************************************************************/
mainFrame()->GroupConstructors->setTitle( tr( "GEOM_SUB_SHAPE" ) ); mainFrame()->GroupConstructors->setTitle(tr("GEOM_SUB_SHAPE"));
mainFrame()->RadioButton1->setIcon( image0 ); mainFrame()->RadioButton1->setIcon(image0);
mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose ); mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
mainFrame()->RadioButton2->close(); mainFrame()->RadioButton2->close();
mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose ); mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
mainFrame()->RadioButton3->close(); mainFrame()->RadioButton3->close();
GroupPoints = new DlgRef_1Sel1Check1List( centralWidget() ); GroupPoints = new DlgRef_1Sel1List1Check3Btn(centralWidget());
GroupPoints->GroupBox1->setTitle( tr( "GEOM_ARGUMENTS" ) ); GroupPoints->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
GroupPoints->TextLabel1->setText( tr( "GEOM_MAIN_OBJECT" ) ); GroupPoints->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
GroupPoints->TextLabel2->setText( tr( "GEOM_SUBSHAPE_TYPE" ) ); GroupPoints->TextLabel2->setText(tr("GEOM_SUBSHAPE_TYPE"));
GroupPoints->CheckButton1->setText( tr( "GEOM_SUBSHAPE_SELECT" ) ); GroupPoints->CheckButton1->setText(tr("GEOM_SUBSHAPE_SELECT"));
GroupPoints->PushButton1->setIcon( image1 ); GroupPoints->PushButton1->setIcon(image1);
GroupPoints->LineEdit1->setReadOnly( true ); GroupPoints->PushButton2->setText(tr("SHOW_ONLY_SELECTED"));
GroupPoints->PushButton3->setText(tr("HIDE_SELECTED"));
GroupPoints->PushButton4->setText(tr("SHOW_ALL_SUB_SHAPES"));
GroupPoints->LineEdit1->setReadOnly(true);
QVBoxLayout* layout = new QVBoxLayout( centralWidget() ); QVBoxLayout* layout = new QVBoxLayout(centralWidget());
layout->setMargin( 0 ); layout->setSpacing( 6 ); layout->setMargin(0); layout->setSpacing(6);
layout->addWidget( GroupPoints ); layout->addWidget(GroupPoints);
/***************************************************************/ /***************************************************************/
setIsOptimizedBrowsing( true ); setIsOptimizedBrowsing(true);
setHelpFileName( "create_explode_page.html" ); setHelpFileName("create_explode_page.html");
mainFrame()->GroupBoxName->hide(); mainFrame()->GroupBoxName->hide();
Init(); Init();
} }
//================================================================================= //=================================================================================
// function : ~EntityGUI_SubShapeDlg() // function : ~EntityGUI_SubShapeDlg()
// purpose : Destroys the object and frees any allocated resources // purpose : Destroys the object and frees any allocated resources
@ -101,7 +112,6 @@ EntityGUI_SubShapeDlg::~EntityGUI_SubShapeDlg()
{ {
} }
//================================================================================= //=================================================================================
// function : Init() // function : Init()
// purpose : // purpose :
@ -115,40 +125,76 @@ void EntityGUI_SubShapeDlg::Init()
myWithShape = true; myWithShape = true;
/* type for sub shape selection */ /* type for sub shape selection */
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Compound" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Compound");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Compsolid" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Compsolid");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Solid" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Solid");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Shell" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Shell");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Face" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Face");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Wire" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Wire");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Edge" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Edge");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Vertex" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Vertex");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Shape" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Shape");
if ( SUIT_Session::session()->activeApplication()->desktop()->activeWindow()->getViewManager()->getType() if (SUIT_Session::session()->activeApplication()->desktop()->activeWindow()->getViewManager()->getType()
!= OCCViewer_Viewer::Type() ) != OCCViewer_Viewer::Type())
GroupPoints->CheckButton1->setEnabled( false ); GroupPoints->CheckButton1->setEnabled(false);
/* signals and slots connections */ /* signals and slots connections */
connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) ); connect(myGeomGUI, SIGNAL(SignalDeactivateActiveDialog()), this, SLOT(DeactivateActiveDialog()));
connect( buttonOk(), SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) ); connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk()));
connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) ); connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
connect( GroupPoints->PushButton1, SIGNAL( clicked() ), this, SLOT( SetEditCurrentArgument() ) ); connect(GroupPoints->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
connect( GroupPoints->LineEdit1, SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) ); connect(GroupPoints->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
connect( GroupPoints->ComboBox1, SIGNAL( activated( int ) ), this, SLOT( ComboTextChanged() ) ); connect(GroupPoints->ComboBox1, SIGNAL(activated(int)), this, SLOT(ComboTextChanged()));
connect( GroupPoints->CheckButton1, SIGNAL( stateChanged( int ) ), this, SLOT( SubShapeToggled() ) ); connect(GroupPoints->CheckButton1, SIGNAL(stateChanged(int)), this, SLOT(SubShapeToggled()));
connect( myGeomGUI->getApp()->selectionMgr(), connect(GroupPoints->PushButton2, SIGNAL(clicked()), this, SLOT(showOnlySelected()));
SIGNAL( currentSelectionChanged( )), this, SLOT( SelectionIntoArgument() ) ); connect(GroupPoints->PushButton3, SIGNAL(clicked()), this, SLOT(showOnlySelected()));
connect(GroupPoints->PushButton4, SIGNAL(clicked()), this, SLOT(showOnlySelected()));
connect(myGeomGUI->getApp()->selectionMgr(),
SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
updateButtonState(); updateButtonState();
resize(100,100); resize(100,100);
SelectionIntoArgument(); SelectionIntoArgument();
} }
//=================================================================================
// function : enterEvent()
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::enterEvent(QEvent*)
{
if (!mainFrame()->GroupConstructors->isEnabled())
ActivateThisDialog();
}
//=================================================================================
// function : ActivateThisDialog()
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::ActivateThisDialog()
{
GEOMBase_Skeleton::ActivateThisDialog();
connect(myGeomGUI->getApp()->selectionMgr(),
SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument()));
SubShapeToggled();
updateButtonState();
}
//=================================================================================
//function : closeEvent
//purpose : remove temporary geom object
//=================================================================================
void EntityGUI_SubShapeDlg::closeEvent(QCloseEvent* e)
{
erasePreview(true);
GEOMBase_Skeleton::closeEvent(e);
}
//================================================================================= //=================================================================================
// function : ClickOnOk() // function : ClickOnOk()
@ -156,31 +202,30 @@ void EntityGUI_SubShapeDlg::Init()
//================================================================================= //=================================================================================
void EntityGUI_SubShapeDlg::ClickOnOk() void EntityGUI_SubShapeDlg::ClickOnOk()
{ {
setIsApplyAndClose( true ); setIsApplyAndClose(true);
if ( ClickOnApply() ) if (ClickOnApply())
ClickOnCancel(); ClickOnCancel();
} }
//================================================================================= //=================================================================================
// function : ClickOnApply() // function : ClickOnApply()
// purpose : // purpose :
//================================================================================= //=================================================================================
bool EntityGUI_SubShapeDlg::ClickOnApply() bool EntityGUI_SubShapeDlg::ClickOnApply()
{ {
SUIT_Session::session()->activeApplication()->putInfo( "" ); SUIT_Session::session()->activeApplication()->putInfo("");
/* Explode all sub shapes */ /* Explode all sub shapes */
if ( isAllSubShapes() ) { if (isAllSubShapes()) {
/* More than 30 subshapes : ask confirmation */ /* More than 30 subshapes : ask confirmation */
unsigned int nb = NumberOfSubShapes( myShape, shapeType() ); unsigned int nb = NumberOfSubShapes(myShape, shapeType());
if ( nb > 30 ) { if (nb > 30) {
const QString caption = tr( "GEOM_CONFIRM" ); const QString caption = tr("GEOM_CONFIRM");
const QString text = tr( "GEOM_CONFIRM_INFO" ).arg( nb ); const QString text = tr("GEOM_CONFIRM_INFO").arg(nb);
const QString button0 = tr( "GEOM_BUT_EXPLODE" ); const QString button0 = tr("GEOM_BUT_EXPLODE");
const QString button1 = tr( "GEOM_BUT_CANCEL" ); const QString button1 = tr("GEOM_BUT_CANCEL");
if ( QMessageBox::warning( this, caption, text, button0, button1 ) != 0 ) if (QMessageBox::warning(this, caption, text, button0, button1) != 0)
return false; /* aborted */ return false; /* aborted */
} }
} }
@ -193,11 +238,9 @@ bool EntityGUI_SubShapeDlg::ClickOnApply()
return isOk; return isOk;
} }
//================================================================================= //=================================================================================
// function : SelectionIntoArgument() // function : SelectionIntoArgument()
// purpose : Called when selection as changed or other case // purpose : Called when selection has changed or other case
// : used only by SelectButtonC1A1 (LineEditC1A1)
//================================================================================= //=================================================================================
void EntityGUI_SubShapeDlg::SelectionIntoArgument() void EntityGUI_SubShapeDlg::SelectionIntoArgument()
{ {
@ -217,21 +260,21 @@ void EntityGUI_SubShapeDlg::SelectionIntoArgument()
return; return;
Handle(SALOME_InteractiveObject) IO = aSelList.First(); Handle(SALOME_InteractiveObject) IO = aSelList.First();
if ( !IO->hasEntry() ) { if (!IO->hasEntry()) {
SUIT_Session::session()->activeApplication()->putInfo( tr( "GEOM_PRP_SHAPE_IN_STUDY" ) ); SUIT_Session::session()->activeApplication()->putInfo(tr("GEOM_PRP_SHAPE_IN_STUDY"));
updateButtonState(); updateButtonState();
return; return;
} }
TopoDS_Shape S = GEOMBase::GetTopoFromSelection( aSelList ); TopoDS_Shape S = GEOMBase::GetTopoFromSelection(aSelList);
if ( S.IsNull() || S.ShapeType() == TopAbs_VERTEX ) { if (S.IsNull() || S.ShapeType() == TopAbs_VERTEX) {
myObject = GEOM::GEOM_Object::_nil(); myObject = GEOM::GEOM_Object::_nil();
updateButtonState(); updateButtonState();
return; return;
} }
myObject = GEOMBase::ConvertIOinGEOMObject( IO ); myObject = GEOMBase::ConvertIOinGEOMObject(IO);
if ( myObject->_is_nil() ) { if (myObject->_is_nil()) {
updateButtonState(); updateButtonState();
return; return;
} }
@ -249,7 +292,7 @@ void EntityGUI_SubShapeDlg::SelectionIntoArgument()
// Solving PAL5590 // Solving PAL5590
if (myShape.ShapeType() == TopAbs_COMPOUND) { if (myShape.ShapeType() == TopAbs_COMPOUND) {
unsigned int nb = NumberOfSubShapes(myShape, TopAbs_COMPOUND); unsigned int nb = NumberOfSubShapes(myShape, TopAbs_COMPOUND);
if ( nb > 0 ) if (nb > 0)
i++; i++;
} }
while (i <= myShape.ShapeType()) { while (i <= myShape.ShapeType()) {
@ -264,35 +307,34 @@ void EntityGUI_SubShapeDlg::SelectionIntoArgument()
} }
} }
else { else {
if ( myWithShape == true ) { if (myWithShape == true) {
GroupPoints->ComboBox1->removeItem( GroupPoints->ComboBox1->count() - 1 ); GroupPoints->ComboBox1->removeItem(GroupPoints->ComboBox1->count() - 1);
myWithShape = false; myWithShape = false;
} }
} }
int count1 = GroupPoints->ComboBox1->count(); int count1 = GroupPoints->ComboBox1->count();
if ( myWithShape ) if (myWithShape)
count1 = count1 - 1; count1 = count1 - 1;
if ( SelectedShapeType > myShape.ShapeType() ) { if (SelectedShapeType > myShape.ShapeType()) {
if ( SelectedShapeType == 8 ) { if (SelectedShapeType == 8) {
if ( myShape.ShapeType() != TopAbs_COMPOUND ) { if (myShape.ShapeType() != TopAbs_COMPOUND) {
GroupPoints->ComboBox1->setCurrentIndex( 0 ); GroupPoints->ComboBox1->setCurrentIndex(0);
ComboTextChanged(); ComboTextChanged();
} }
} }
else else
GroupPoints->ComboBox1->setCurrentIndex( count1 - count + SelectedShapeType ); GroupPoints->ComboBox1->setCurrentIndex(count1 - count + SelectedShapeType);
} }
else { else {
GroupPoints->ComboBox1->setCurrentIndex( 0 ); GroupPoints->ComboBox1->setCurrentIndex(0);
ComboTextChanged(); ComboTextChanged();
} }
updateButtonState(); updateButtonState();
} }
//================================================================================= //=================================================================================
// function : SetEditCurrentArgument() // function : SetEditCurrentArgument()
// purpose : // purpose :
@ -302,12 +344,11 @@ void EntityGUI_SubShapeDlg::SetEditCurrentArgument()
GroupPoints->LineEdit1->setFocus(); GroupPoints->LineEdit1->setFocus();
myEditCurrentArgument = GroupPoints->LineEdit1; myEditCurrentArgument = GroupPoints->LineEdit1;
GroupPoints->CheckButton1->setChecked( false ); GroupPoints->CheckButton1->setChecked(false);
SubShapeToggled(); SubShapeToggled();
SelectionIntoArgument(); SelectionIntoArgument();
} }
//================================================================================= //=================================================================================
// function : LineEditReturnPressed() // function : LineEditReturnPressed()
// purpose : // purpose :
@ -315,7 +356,7 @@ void EntityGUI_SubShapeDlg::SetEditCurrentArgument()
void EntityGUI_SubShapeDlg::LineEditReturnPressed() void EntityGUI_SubShapeDlg::LineEditReturnPressed()
{ {
QLineEdit* send = (QLineEdit*)sender(); QLineEdit* send = (QLineEdit*)sender();
if ( send == GroupPoints->LineEdit1 ) if (send == GroupPoints->LineEdit1)
SetEditCurrentArgument(); SetEditCurrentArgument();
else else
return; return;
@ -323,43 +364,6 @@ void EntityGUI_SubShapeDlg::LineEditReturnPressed()
GEOMBase_Skeleton::LineEditReturnPressed(); GEOMBase_Skeleton::LineEditReturnPressed();
} }
//=================================================================================
// function : DeactivateActiveDialog()
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::DeactivateActiveDialog()
{
if ( mainFrame()->GroupConstructors->isEnabled() ) {
GEOMBase_Skeleton::DeactivateActiveDialog();
}
}
//=================================================================================
// function : ActivateThisDialog()
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::ActivateThisDialog()
{
GEOMBase_Skeleton::ActivateThisDialog();
connect( myGeomGUI->getApp()->selectionMgr(),
SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
SubShapeToggled();
updateButtonState();
}
//=================================================================================
// function : enterEvent()
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::enterEvent( QEvent* )
{
if ( !mainFrame()->GroupConstructors->isEnabled() )
ActivateThisDialog();
}
//================================================================================= //=================================================================================
// function : ResetStateOfDialog() // function : ResetStateOfDialog()
// purpose : Completely reset the state of method including local context // purpose : Completely reset the state of method including local context
@ -368,34 +372,33 @@ void EntityGUI_SubShapeDlg::ResetStateOfDialog()
{ {
myObject = GEOM::GEOM_Object::_nil(); myObject = GEOM::GEOM_Object::_nil();
myShape.Nullify(); myShape.Nullify();
myEditCurrentArgument->setText( "" ); myEditCurrentArgument->setText("");
int SelectedShapeType = GroupPoints->ComboBox1->currentIndex(); int SelectedShapeType = GroupPoints->ComboBox1->currentIndex();
int count = GroupPoints->ComboBox1->count(); int count = GroupPoints->ComboBox1->count();
if ( myWithShape ) if (myWithShape)
count = count - 1; count = count - 1;
/* type for sub shape selection */ /* type for sub shape selection */
GroupPoints->ComboBox1->clear(); GroupPoints->ComboBox1->clear();
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Compound" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Compound");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Compsolid" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Compsolid");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Solid" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Solid");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Shell" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Shell");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Face" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Face");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Wire" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Wire");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Edge" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Edge");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Vertex" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Vertex");
GroupPoints->ComboBox1->insertItem( GroupPoints->ComboBox1->count(), "Shape" ); GroupPoints->ComboBox1->insertItem(GroupPoints->ComboBox1->count(), "Shape");
myWithShape = true; myWithShape = true;
GroupPoints->ComboBox1->setCurrentIndex( 8 - count + SelectedShapeType ); GroupPoints->ComboBox1->setCurrentIndex(8 - count + SelectedShapeType);
ComboTextChanged(); ComboTextChanged();
updateButtonState(); updateButtonState();
} }
//================================================================================= //=================================================================================
// function : SubShapeToggled() // function : SubShapeToggled()
// purpose : Allow user selection of all or only selected sub shapes // purpose : Allow user selection of all or only selected sub shapes
@ -403,13 +406,9 @@ void EntityGUI_SubShapeDlg::ResetStateOfDialog()
//================================================================================= //=================================================================================
void EntityGUI_SubShapeDlg::SubShapeToggled() void EntityGUI_SubShapeDlg::SubShapeToggled()
{ {
globalSelection( GEOM_ALLSHAPES ); activateSelection();
if ( !isAllSubShapes() )
localSelection( myObject, shapeType() );
} }
//================================================================================= //=================================================================================
// function : ComboTextChanged() // function : ComboTextChanged()
// purpose : // purpose :
@ -421,38 +420,37 @@ void EntityGUI_SubShapeDlg::ComboTextChanged()
SubShapeToggled(); SubShapeToggled();
} }
//================================================================================= //=================================================================================
// function : NumberOfSubShapes() // function : NumberOfSubShapes()
// purpose : // purpose :
//================================================================================= //=================================================================================
unsigned int EntityGUI_SubShapeDlg::NumberOfSubShapes( const TopoDS_Shape& S, unsigned int EntityGUI_SubShapeDlg::NumberOfSubShapes(const TopoDS_Shape& S,
const int shapeType ) const const int shapeType) const
{ {
if ( S.IsNull() ) if (S.IsNull())
return 0; return 0;
unsigned int index = 0; unsigned int index = 0;
TopTools_MapOfShape M; TopTools_MapOfShape M;
if ( S.ShapeType() == TopAbs_COMPOUND && if (S.ShapeType() == TopAbs_COMPOUND &&
( TopAbs_ShapeEnum(shapeType) == TopAbs_SHAPE || (TopAbs_ShapeEnum(shapeType) == TopAbs_SHAPE ||
TopAbs_ShapeEnum(shapeType) == TopAbs_COMPSOLID || TopAbs_ShapeEnum(shapeType) == TopAbs_COMPSOLID ||
TopAbs_ShapeEnum(shapeType) == TopAbs_COMPOUND ) ) { TopAbs_ShapeEnum(shapeType) == TopAbs_COMPOUND)) {
TopoDS_Iterator It( S, Standard_True, Standard_True ); TopoDS_Iterator It(S, Standard_True, Standard_True);
for ( ; It.More(); It.Next() ) { for (; It.More(); It.Next()) {
if ( M.Add( It.Value() ) ) { if (M.Add(It.Value())) {
if ( TopAbs_ShapeEnum( shapeType ) == TopAbs_SHAPE || if (TopAbs_ShapeEnum(shapeType) == TopAbs_SHAPE ||
TopAbs_ShapeEnum( shapeType ) == It.Value().ShapeType() ) { TopAbs_ShapeEnum(shapeType) == It.Value().ShapeType()) {
index++; index++;
} }
} }
} }
} }
else { else {
TopExp_Explorer Exp ( S, TopAbs_ShapeEnum( shapeType ) ); TopExp_Explorer Exp (S, TopAbs_ShapeEnum(shapeType));
for ( ; Exp.More(); Exp.Next() ) { for (; Exp.More(); Exp.Next()) {
if ( M.Add( Exp.Current() ) ) { if (M.Add(Exp.Current())) {
index++; index++;
} }
} }
@ -468,13 +466,13 @@ unsigned int EntityGUI_SubShapeDlg::NumberOfSubShapes( const TopoDS_Shape& S,
//================================================================================= //=================================================================================
void EntityGUI_SubShapeDlg::updateButtonState() void EntityGUI_SubShapeDlg::updateButtonState()
{ {
if ( SUIT_Session::session()->activeApplication()->desktop()->activeWindow()->getViewManager()->getType() != OCCViewer_Viewer::Type() || if (SUIT_Session::session()->activeApplication()->desktop()->activeWindow()->getViewManager()->getType() != OCCViewer_Viewer::Type() ||
myObject->_is_nil() || shapeType() == TopAbs_SHAPE || shapeType() == TopAbs_COMPOUND ) { myObject->_is_nil() || shapeType() == TopAbs_SHAPE || shapeType() == TopAbs_COMPOUND) {
GroupPoints->CheckButton1->setChecked( false ); GroupPoints->CheckButton1->setChecked(false);
GroupPoints->CheckButton1->setEnabled( false ); GroupPoints->CheckButton1->setEnabled(false);
} }
else else
GroupPoints->CheckButton1->setEnabled( true ); GroupPoints->CheckButton1->setEnabled(true);
} }
//================================================================================= //=================================================================================
@ -494,26 +492,176 @@ int EntityGUI_SubShapeDlg::shapeType() const
{ {
int type = GroupPoints->ComboBox1->currentIndex(); int type = GroupPoints->ComboBox1->currentIndex();
if ( myObject->_is_nil() ) if (myObject->_is_nil())
return type; return type;
// Solving PAL5590 // Solving PAL5590
type += myShape.ShapeType() + 1; type += myShape.ShapeType() + 1;
if ( myShape.ShapeType() == TopAbs_COMPOUND && if (myShape.ShapeType() == TopAbs_COMPOUND &&
NumberOfSubShapes( myShape, TopAbs_COMPOUND ) > 0 ) { NumberOfSubShapes(myShape, TopAbs_COMPOUND) > 0) {
type--; type--;
} }
return type; return type;
} }
//=================================================================================
// function : showOnlySelected
// purpose :
//=================================================================================
void EntityGUI_SubShapeDlg::showOnlySelected()
{
if (CORBA::is_nil(myObject) || isAllSubShapes())
return;
QPushButton* send = (QPushButton*)sender();
if (send == GroupPoints->PushButton4) {
activateSelection();
return;
}
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
SALOME_ListIO aSelList;
aSelMgr->selectedObjects(aSelList);
GEOM_Displayer* aDisplayer = getDisplayer();
if (send == GroupPoints->PushButton3) {
aDisplayer->Erase(aSelList, false, true);
}
else {
aDisplayer->EraseAll();
aDisplayer->Display(aSelList, true);
}
}
//=================================================================================
// function : getSelectedSubshapes
// purpose :
//=================================================================================
int EntityGUI_SubShapeDlg::getSelectedSubshapes (TColStd_IndexedMapOfInteger& theMapIndex)
{
theMapIndex.Clear();
SalomeApp_Application* app = myGeomGUI->getApp();
if (!app || myObject->_is_nil())
return 0;
LightApp_SelectionMgr* aSelMgr = app->selectionMgr();
SALOME_ListIO aSelList;
aSelMgr->selectedObjects(aSelList);
// try to find out and process the global selection
// (of not published objects and of published sub-shapes)
{
SALOME_ListIteratorOfListIO anIter (aSelList);
for (int i = 0; anIter.More(); anIter.Next(), i++)
{
Handle(SALOME_InteractiveObject) anIObj = anIter.Value();
QString anEntry = anIObj->getEntry();
QString str = "_";
int index = anEntry.lastIndexOf(str);
if (index > 0) // selection among special preview
{
anEntry.remove(0, index+1);
int anIndex = anEntry.toInt();
if (anIndex)
theMapIndex.Add(anIndex);
}
else // selection among published shapes
{
SalomeApp_Study* appStudy = dynamic_cast<SalomeApp_Study*>(app->activeStudy());
if (!appStudy) return 0;
_PTR(Study) aStudy = appStudy->studyDS();
_PTR(SObject) aSObj (aStudy->FindObjectID(anEntry.toLatin1().constData()));
GEOM::GEOM_Object_var aGeomObj =
GEOM::GEOM_Object::_narrow(GeometryGUI::ClientSObjectToObject(aSObj));
TopoDS_Shape aShape;
if (GEOMBase::GetShape(aGeomObj, aShape)) {
if (aGeomObj->GetType() == GEOM_GROUP || aShape.ShapeType() == (TopAbs_ShapeEnum)shapeType()) {
TopTools_IndexedMapOfShape aMainMap;
TopExp::MapShapes(myShape, aMainMap);
TopExp_Explorer anExp (aShape, (TopAbs_ShapeEnum)shapeType());
for (; anExp.More(); anExp.Next()) {
TopoDS_Shape aSubShape = anExp.Current();
int anIndex = aMainMap.FindIndex(aSubShape);
if (anIndex >= 0) {
theMapIndex.Add(anIndex);
}
}
}
}
}
} // for aSelList
}
return theMapIndex.Extent();
}
//=================================================================================
// function : activateSelection
// purpose : Activate selection in accordance with myEditCurrentArgument
//=================================================================================
void EntityGUI_SubShapeDlg::activateSelection()
{
erasePreview(false);
// local selection
if (!myObject->_is_nil() && !isAllSubShapes())
{
GEOM_Displayer* aDisplayer = getDisplayer();
int prevDisplayMode = aDisplayer->SetDisplayMode(0);
SUIT_ViewWindow* aViewWindow = 0;
SUIT_Study* activeStudy = SUIT_Session::session()->activeApplication()->activeStudy();
if (activeStudy)
aViewWindow = SUIT_Session::session()->activeApplication()->desktop()->activeWindow();
if (aViewWindow == 0) return;
SUIT_ViewManager* aViewManager = aViewWindow->getViewManager();
if (aViewManager->getType() != OCCViewer_Viewer::Type() &&
aViewManager->getType() != SVTK_Viewer::Type())
return;
SUIT_ViewModel* aViewModel = aViewManager->getViewModel();
SALOME_View* aView = dynamic_cast<SALOME_View*>(aViewModel);
if (aView == 0) return;
//TopoDS_Shape aMainShape = GEOM_Client::get_client().GetShape(GeometryGUI::GetGeomGen(), myObject);
TopTools_IndexedMapOfShape aSubShapesMap;
TopExp::MapShapes(myShape, aSubShapesMap);
CORBA::String_var aMainEntry = myObject->GetStudyEntry();
QString anEntryBase = aMainEntry.in();
TopExp_Explorer anExp (myShape, (TopAbs_ShapeEnum)shapeType());
for (; anExp.More(); anExp.Next())
{
TopoDS_Shape aSubShape = anExp.Current();
int index = aSubShapesMap.FindIndex(aSubShape);
QString anEntry = anEntryBase + QString("_%1").arg(index);
SALOME_Prs* aPrs = aDisplayer->buildSubshapePresentation(aSubShape, anEntry, aView);
if (aPrs) {
displayPreview(aPrs, true, false); // append, do not update
}
}
aDisplayer->UpdateViewer();
aDisplayer->SetDisplayMode(prevDisplayMode);
}
globalSelection(GEOM_ALLSHAPES);
}
//================================================================================= //=================================================================================
// function : createOperation // function : createOperation
// purpose : // purpose :
//================================================================================= //=================================================================================
GEOM::GEOM_IOperations_ptr EntityGUI_SubShapeDlg::createOperation() GEOM::GEOM_IOperations_ptr EntityGUI_SubShapeDlg::createOperation()
{ {
return getGeomEngine()->GetIShapesOperations( getStudyId() ); return getGeomEngine()->GetIShapesOperations(getStudyId());
} }
//================================================================================= //=================================================================================
@ -532,20 +680,12 @@ bool EntityGUI_SubShapeDlg::isValid (QString& msg)
if (isAllSubShapes()) if (isAllSubShapes())
isOk = true; isOk = true;
else { else {
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr(); TColStd_IndexedMapOfInteger aMapIndex;
SALOME_ListIO aSelList; int nbSel = getSelectedSubshapes(aMapIndex);
aSelMgr->selectedObjects(aSelList); isOk = nbSel > 0;
if (aSelList.Extent() == 1) { if (!isOk)
GEOM::GEOM_Object_var anObj = GEOMBase::ConvertIOinGEOMObject( aSelList.First() ); msg += tr("NO_SUBSHAPES_SELECTED");
if ( !anObj->_is_nil() ) {
TColStd_IndexedMapOfInteger aMapIndex;
aSelMgr->GetIndexes(aSelList.First(), aMapIndex);
isOk = aMapIndex.Extent() > 0;
if (!isOk)
msg += tr("NO_SUBSHAPES_SELECTED");
}
}
} }
return isOk; return isOk;
@ -566,25 +706,18 @@ bool EntityGUI_SubShapeDlg::execute (ObjectList& objects)
// Throw away sub-shapes not selected by user if not in preview mode // Throw away sub-shapes not selected by user if not in preview mode
// and manual selection is active // and manual selection is active
if (!isAllSubShapes()) { if (!isAllSubShapes()) {
LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr(); TColStd_IndexedMapOfInteger aMapIndex;
SALOME_ListIO aSelList; int nbSel = getSelectedSubshapes(aMapIndex);
aSelMgr->selectedObjects(aSelList);
if (aSelList.Extent() == 1) { if (nbSel > 0) {
GEOM::GEOM_Object_var anObj = GEOM::GEOM_ILocalOperations_var aLocOp =
GEOMBase::ConvertIOinGEOMObject( aSelList.First() ); getGeomEngine()->GetILocalOperations(getStudyId());
if ( !anObj->_is_nil() ) { for (int i = 0, n = aList->length(); i < n; i++)
TColStd_IndexedMapOfInteger aMapIndex; if (aMapIndex.Contains(aLocOp->GetSubShapeIndex(myObject, aList[i])))
aSelMgr->GetIndexes(aSelList.First(), aMapIndex); objects.push_back(GEOM::GEOM_Object::_duplicate(aList[i]));
else
GEOM::GEOM_ILocalOperations_var aLocOp = aList[i]->UnRegister();
getGeomEngine()->GetILocalOperations(getStudyId());
for (int i = 0, n = aList->length(); i < n; i++)
if (aMapIndex.Contains(aLocOp->GetSubShapeIndex(myObject, aList[i])))
objects.push_back(GEOM::GEOM_Object::_duplicate(aList[i]));
}
} }
} }
else else
@ -597,13 +730,17 @@ bool EntityGUI_SubShapeDlg::execute (ObjectList& objects)
//================================================================ //================================================================
// Function : getFather // Function : getFather
// Purpose : Get father object for object to be added in study // Purpose : Get father object for object to be added in study
// ( called with addInStudy method ) // (called with addInStudy method)
//================================================================ //================================================================
GEOM::GEOM_Object_ptr EntityGUI_SubShapeDlg::getFather( GEOM::GEOM_Object_ptr ) GEOM::GEOM_Object_ptr EntityGUI_SubShapeDlg::getFather(GEOM::GEOM_Object_ptr)
{ {
return myObject; return myObject;
} }
//================================================================
// Function : getNewObjectName
// Purpose :
//================================================================
QString EntityGUI_SubShapeDlg::getNewObjectName() const QString EntityGUI_SubShapeDlg::getNewObjectName() const
{ {
return QString::null; return QString::null;

View File

@ -18,18 +18,19 @@
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
// //
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
//
// GEOM GEOMGUI : GUI for Geometry component // GEOM GEOMGUI : GUI for Geometry component
// File : EntityGUI_SubShapeDlg.h // File : EntityGUI_SubShapeDlg.h
// Author : Lucien PIGNOLONI, Open CASCADE S.A.S. // Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
//
#ifndef ENTITYGUI_SUBSHAPEDLG_H #ifndef ENTITYGUI_SUBSHAPEDLG_H
#define ENTITYGUI_SUBSHAPEDLG_H #define ENTITYGUI_SUBSHAPEDLG_H
#include <GEOMBase_Skeleton.h> #include <GEOMBase_Skeleton.h>
class DlgRef_1Sel1Check1List; #include <TColStd_IndexedMapOfInteger.hxx>
class DlgRef_1Sel1List1Check3Btn;
//================================================================================= //=================================================================================
// class : EntityGUI_SubShapeDlg // class : EntityGUI_SubShapeDlg
@ -40,36 +41,42 @@ class EntityGUI_SubShapeDlg : public GEOMBase_Skeleton
Q_OBJECT Q_OBJECT
public: public:
EntityGUI_SubShapeDlg( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 ); EntityGUI_SubShapeDlg (GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0);
~EntityGUI_SubShapeDlg(); ~EntityGUI_SubShapeDlg();
protected: protected:
// redefined from GEOMBase_Helper // redefined from GEOMBase_Helper
virtual GEOM::GEOM_IOperations_ptr createOperation(); virtual GEOM::GEOM_IOperations_ptr createOperation();
virtual bool isValid( QString& ); virtual bool isValid (QString&);
virtual bool execute( ObjectList& ); virtual bool execute (ObjectList&);
virtual GEOM::GEOM_Object_ptr getFather( GEOM::GEOM_Object_ptr ); virtual GEOM::GEOM_Object_ptr getFather (GEOM::GEOM_Object_ptr);
virtual QString getNewObjectName() const; virtual QString getNewObjectName() const;
void closeEvent (QCloseEvent*);
private slots: private slots:
void ClickOnOk(); void ClickOnOk();
bool ClickOnApply(); bool ClickOnApply();
void ActivateThisDialog(); void ActivateThisDialog();
void DeactivateActiveDialog();
void LineEditReturnPressed(); void LineEditReturnPressed();
void SelectionIntoArgument(); void SelectionIntoArgument();
void SetEditCurrentArgument(); void SetEditCurrentArgument();
void SubShapeToggled(); void SubShapeToggled();
void ComboTextChanged(); void ComboTextChanged();
void showOnlySelected();
private: private:
void Init(); void Init();
void enterEvent( QEvent* ); void enterEvent (QEvent*);
void ResetStateOfDialog(); void ResetStateOfDialog();
unsigned int NumberOfSubShapes( const TopoDS_Shape&,
const int ) const;
unsigned int NumberOfSubShapes (const TopoDS_Shape&,
const int) const;
void activateSelection();
int getSelectedSubshapes (TColStd_IndexedMapOfInteger& theMapIndex);
void updateButtonState(); void updateButtonState();
bool isAllSubShapes() const; bool isAllSubShapes() const;
int shapeType() const; int shapeType() const;
@ -80,8 +87,7 @@ private:
bool myWithShape; bool myWithShape;
DlgRef_1Sel1Check1List* GroupPoints; DlgRef_1Sel1List1Check3Btn* GroupPoints;
ObjectList myResult;
}; };
#endif // ENTITYGUI_SUBSHAPEDLG_H #endif // ENTITYGUI_SUBSHAPEDLG_H

View File

@ -4263,6 +4263,18 @@ Otherwise the dimensions will be kept without modifications.</translation>
<source>GEOM_PLUGINS_OTHER</source> <source>GEOM_PLUGINS_OTHER</source>
<translation>Other</translation> <translation>Other</translation>
</message> </message>
<message>
<source>SHOW_ONLY_SELECTED</source>
<translation>Show only selected</translation>
</message>
<message>
<source>HIDE_SELECTED</source>
<translation>Hide selected</translation>
</message>
<message>
<source>SHOW_ALL_SUB_SHAPES</source>
<translation>Show all sub-shapes</translation>
</message>
</context> </context>
<context> <context>
<name>BasicGUI_CurveDlg</name> <name>BasicGUI_CurveDlg</name>
@ -4513,18 +4525,6 @@ Number of sketch points too small</translation>
<source>REMOVE</source> <source>REMOVE</source>
<translation>Remove</translation> <translation>Remove</translation>
</message> </message>
<message>
<source>SHOW_ONLY_SELECTED</source>
<translation>Show only selected</translation>
</message>
<message>
<source>HIDE_SELECTED</source>
<translation>Hide selected</translation>
</message>
<message>
<source>SHOW_ALL_SUB_SHAPES</source>
<translation>Show all sub-shapes</translation>
</message>
<message> <message>
<source>SELECT_ALL</source> <source>SELECT_ALL</source>
<translation>Select All</translation> <translation>Select All</translation>

View File

@ -4231,6 +4231,18 @@ le paramètre &apos;%1&apos; aux préférences du module Géométrie.</translati
<source>GEOM_PLUGINS_OTHER</source> <source>GEOM_PLUGINS_OTHER</source>
<translation>Autre</translation> <translation>Autre</translation>
</message> </message>
<message>
<source>SHOW_ONLY_SELECTED</source>
<translation>Afficher uniquement la sélection</translation>
</message>
<message>
<source>HIDE_SELECTED</source>
<translation>Cacher la sélection</translation>
</message>
<message>
<source>SHOW_ALL_SUB_SHAPES</source>
<translation>Afficher tous les sous-objets</translation>
</message>
</context> </context>
<context> <context>
<name>BasicGUI_CurveDlg</name> <name>BasicGUI_CurveDlg</name>
@ -4473,18 +4485,6 @@ Le nombre de points n&apos;est pas suffisant</translation>
<source>REMOVE</source> <source>REMOVE</source>
<translation>Supprimer</translation> <translation>Supprimer</translation>
</message> </message>
<message>
<source>SHOW_ONLY_SELECTED</source>
<translation>Afficher uniquement la sélection</translation>
</message>
<message>
<source>HIDE_SELECTED</source>
<translation>Cacher la sélection</translation>
</message>
<message>
<source>SHOW_ALL_SUB_SHAPES</source>
<translation>Afficher tous les sous-objets</translation>
</message>
<message> <message>
<source>SELECT_ALL</source> <source>SELECT_ALL</source>
<translation>Tout sélectionner</translation> <translation>Tout sélectionner</translation>