Salome HOME
updated copyright message
[modules/geom.git] / src / RepairGUI / RepairGUI_FreeBoundDlg.cxx
index 2231ad6b395de2fadb98f7f76a0814beb7f32800..b7a9257262c823a0ee5a3639e774bcce0cde8b48 100644 (file)
@@ -1,53 +1,59 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  This library is free software; you can redistribute it and/or 
-//  modify it under the terms of the GNU Lesser General Public 
-//  License as published by the Free Software Foundation; either 
-//  version 2.1 of the License. 
-// 
-//  This library is distributed in the hope that it will be useful, 
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of 
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
-//  Lesser General Public License for more details. 
-// 
-//  You should have received a copy of the GNU Lesser General Public 
-//  License along with this library; if not, write to the Free Software 
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
-// 
-// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
 //
+// 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
 //
-//  File   : RepairGUI_FreeBoundDlg.cxx
-//  Author : Sergey LITONIN
-//  Module : GEOM
-//  $Header$
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : RepairGUI_FreeBoundDlg.cxx
+// Author : Sergey LITONIN, Open CASCADE S.A.S. (sergey.litonin@opencascade.com)
 
 #include "RepairGUI_FreeBoundDlg.h"
-#include "GEOMBase.h"
-#include "GeometryGUI.h"
-#include "GEOM_Displayer.h"
-#include "GEOMImpl_Types.hxx"
 
-#include "SalomeApp_Application.h"
-#include "LightApp_Application.h"
-#include "LightApp_SelectionMgr.h"
-#include "SUIT_MessageBox.h"
-#include "SUIT_Session.h"
+#include <GEOMBase.h>
+#include <DlgRef.h>
+
+#include <GeometryGUI.h>
+#include <GEOM_Displayer.h>
+#include <GEOMImpl_Types.hxx>
+
+#include <SalomeApp_Application.h>
+#include <LightApp_Application.h>
+#include <LightApp_SelectionMgr.h>
+#include <SUIT_MessageBox.h>
+#include <SUIT_Desktop.h>
+#include <SUIT_Session.h>
+#include <SUIT_ResourceMgr.h>
 
 #include <TColStd_MapOfInteger.hxx>
 
-#include <qlineedit.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qgroupbox.h>
-#include <qpushbutton.h>
+#include <QLineEdit>
+#include <QLabel>
+#include <QHBoxLayout>
+#include <QVBoxLayout>
+#include <QGridLayout>
+#include <QGroupBox>
+#include <QPushButton>
+#include <QKeyEvent>
 
-#define SPACING 5
-#define MARGIN 10
+#define SPACING 6
+#define MARGIN  0
 
 /*!
   Class       : RepairGUI_FreeBoundDlg
 // function : RepairGUI_FreeBoundDlg
 // purpose  : Constructor
 //=================================================================================
-RepairGUI_FreeBoundDlg::RepairGUI_FreeBoundDlg(GeometryGUI* theGUI, QWidget* theParent, const char*)
-: QDialog( theParent, "RepairGUI_FreeBoundDlg", false,
-          WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu | WDestructiveClose ),
-  GEOMBase_Helper( dynamic_cast<SUIT_Desktop*>( theParent ) ),
-  myGeomGUI( theGUI )
+RepairGUI_FreeBoundDlg::RepairGUI_FreeBoundDlg (GeometryGUI* theGUI, QWidget* theParent)
+  : GEOMBase_Skeleton(theGUI, theParent)
 {
-  setCaption( tr( "CAPTION" ) );
-
-  QPixmap iconSelect( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM",tr( "ICON_SELECT" ) ) );
-  
-  QGroupBox* aMainGrp = new QGroupBox( 1, Qt::Horizontal, tr( "FREE_BOUND" ), this );
-  
-  QGroupBox* aSelGrp = new QGroupBox( 1, Qt::Vertical, aMainGrp );
-  aSelGrp->setInsideMargin( 0 );
-  aSelGrp->setFrameStyle( QFrame::NoFrame );
-  new QLabel( tr( "GEOM_OBJECT" ), aSelGrp );
-  ( new QPushButton( aSelGrp ) )->setPixmap( iconSelect );
-  myEdit = new QLineEdit( aSelGrp );
-  myEdit->setReadOnly( true );
-  myEdit->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
-
-  myClosedLbl = new QLabel( tr( "NUMBER_CLOSED" ), aMainGrp );
-  myOpenLbl = new QLabel( tr( "NUMBER_OPEN" ), aMainGrp );
-
-  QFrame* aFrame = new QFrame( this );
-  aFrame->setFrameStyle( QFrame::Box | QFrame::Sunken );
-  QPushButton* aCloseBtn = new QPushButton( tr( "GEOM_BUT_CLOSE" ), aFrame );
-  QPushButton* aHelpBtn = new QPushButton( tr( "GEOM_BUT_HELP" ), aFrame );
-  QHBoxLayout* aBtnLay = new QHBoxLayout( aFrame, MARGIN, SPACING );
-  aBtnLay->addWidget( aCloseBtn );
-  aBtnLay->addItem( new QSpacerItem( 0, 0, QSizePolicy::Expanding, QSizePolicy::Minimum ) );
-  aBtnLay->addWidget( aHelpBtn );
-
-  QVBoxLayout* aLay = new QVBoxLayout( this );
-  aLay->setSpacing( SPACING );
-  aLay->setMargin( MARGIN );
-  aLay->addWidget( aMainGrp );
-  aLay->addWidget( aFrame );
-
-  //myHelpFileName = "files/salome2_sp3_measuregui_functions.htm#free_boundaries";
-  myHelpFileName = "using_measurement_tools_page.html#boundaries_anchor";
-
-  connect( aCloseBtn, SIGNAL( clicked() ), SLOT( onClose() ) );
-  connect( aHelpBtn, SIGNAL( clicked() ), SLOT( onHelp() ) );
+  QPixmap image0 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_FREE_BOUNDS")));
+  QPixmap image1 (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT")));
+
+  setWindowTitle(tr("CAPTION"));
+
+  /***************************************************************/
+
+  mainFrame()->GroupConstructors->setTitle(tr("FREE_BOUND"));
+  mainFrame()->RadioButton1->setIcon(image0);
+  mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose);
+  mainFrame()->RadioButton2->close();
+  mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose);
+  mainFrame()->RadioButton3->close();
+
+  mainFrame()->GroupBoxName->hide();
+
+  QGroupBox* aMainGrp = new QGroupBox (tr("FREE_BOUND"), this);
+
+  QLabel* lab = new QLabel (tr("GEOM_OBJECT"), aMainGrp);
+  QPushButton* btn = new QPushButton (aMainGrp);
+  btn->setIcon(image1);
+  myEdit = new QLineEdit (aMainGrp);
+  myEdit->setReadOnly(true);
+  myEdit->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Fixed));
+
+  myClosedLbl = new QLabel (tr("NUMBER_CLOSED"), aMainGrp);
+  myOpenLbl   = new QLabel (tr("NUMBER_OPEN"),   aMainGrp);
+  myClosedLbl->setMinimumWidth(150);
+  myOpenLbl->setMinimumWidth(150);
+
+  QGridLayout* aMainGrpLayout = new QGridLayout (aMainGrp);
+  aMainGrpLayout->addWidget(lab,    0, 0);
+  aMainGrpLayout->addWidget(btn,    0, 1);
+  aMainGrpLayout->addWidget(myEdit, 0, 2);
+  aMainGrpLayout->addWidget(myClosedLbl, 1, 0, 1, 3);
+  aMainGrpLayout->addWidget(myOpenLbl,   2, 0, 1, 3);
+
+  QVBoxLayout* aLay = new QVBoxLayout (centralWidget());
+  aLay->setSpacing(SPACING);
+  aLay->setMargin(MARGIN);
+  aLay->addWidget(aMainGrp);
+
+  resize(minimumSizeHint());
+  /***************************************************************/
+
+  myHelpFileName = "boundaries_page.html";
 
   Init();
 }
@@ -115,123 +126,99 @@ RepairGUI_FreeBoundDlg::~RepairGUI_FreeBoundDlg()
 }
 
 //=================================================================================
-// function : onClose
-// purpose  : SLOT. Called when "close" button pressed. Close dialog
+// function : Init
+// purpose  : Initialize dialog fields
 //=================================================================================
-void RepairGUI_FreeBoundDlg::onClose()
+void RepairGUI_FreeBoundDlg::Init()
 {
-  globalSelection();
-  disconnect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 0, this, 0 );
-  myGeomGUI->SetActiveDialogBox( 0 );
-  reject();
-  erasePreview();
+  myNbClosed = myNbOpen = 0;
+  myObj = GEOM::GEOM_Object::_nil();
+
+  myEditCurrentArgument = myEdit;
+
+  connect(buttonOk(),    SIGNAL(clicked()), this, SLOT(ClickOnOk()));
+  connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply()));
+
+  connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
+          this, SLOT(SelectionIntoArgument()));
+
+  activateSelection();
+  SelectionIntoArgument();
 }
 
 //=================================================================================
-// function : onHelp()
+// function : ClickOnOk()
 // purpose  :
 //=================================================================================
-void RepairGUI_FreeBoundDlg::onHelp()
+void RepairGUI_FreeBoundDlg::ClickOnOk()
 {
-  LightApp_Application* app = (LightApp_Application*)(SUIT_Session::session()->activeApplication());
-  if (app)
-    app->onHelpContextModule(myGeomGUI ? app->moduleName(myGeomGUI->moduleName()) : QString(""), myHelpFileName);
-  else {
-               QString platform;
-#ifdef WIN32
-               platform = "winapplication";
-#else
-               platform = "application";
-#endif
-    SUIT_MessageBox::warn1
-      (0, tr("WRN_WARNING"), tr("EXTERNAL_BROWSER_CANNOT_SHOW_PAGE").
-       arg(app->resourceMgr()->stringValue("ExternalBrowser", platform)).arg(myHelpFileName),
-       tr("BUT_OK"));
-  }
+  if (ClickOnApply())
+    ClickOnCancel();
 }
 
 //=================================================================================
-// function : onDeactivate
-// purpose  : Deactivate this dialog
+// function : ClickOnApply()
+// purpose  :
 //=================================================================================
-void RepairGUI_FreeBoundDlg::onDeactivate()
+bool RepairGUI_FreeBoundDlg::ClickOnApply()
 {
-  setEnabled(false);
-  globalSelection();
-  disconnect(myGeomGUI->getApp()->selectionMgr(), 0, this, 0);
-  myGeomGUI->SetActiveDialogBox( 0 );
+  if (!onAccept())
+    return false;
+  return true;
 }
 
 //=================================================================================
-// function : onActivate
-// purpose  : Activate this dialog
+// function : ActivateThisDialog()
+// purpose  :
 //=================================================================================
-void RepairGUI_FreeBoundDlg::onActivate()
+void RepairGUI_FreeBoundDlg::ActivateThisDialog()
 {
-  myGeomGUI->EmitSignalDeactivateDialog();
-  setEnabled( true );
-  myGeomGUI->SetActiveDialogBox( this );
-  connect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
-          SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
+  GEOMBase_Skeleton::ActivateThisDialog();
+
+  connect(myGeomGUI->getApp()->selectionMgr(), SIGNAL(currentSelectionChanged()),
+          this, SLOT(SelectionIntoArgument()));
+
   activateSelection();
-  onSelectionDone();
+  displayPreview(true);
 }
 
 //=================================================================================
-// function : onSelectionDone
-// purpose  : SLOT. Called when selection changed.
+// function : enterEvent()
+// purpose  :
 //=================================================================================
-void RepairGUI_FreeBoundDlg::onSelectionDone()
+void RepairGUI_FreeBoundDlg::enterEvent(QEvent*)
 {
-  if( IObjectCount() != 1 )
-    return;
-
-  Standard_Boolean isOk = Standard_False;
-  GEOM::GEOM_Object_var anObj =
-    GEOMBase::ConvertIOinGEOMObject( firstIObject(), isOk );
-
-  if ( !isOk || anObj->_is_nil() || !GEOMBase::IsShape( anObj ) )
-    return;
-  else
-  {
-    myObj = anObj;
-    displayPreview( false, true, true, 3 );
-  }
+  if (!mainFrame()->GroupConstructors->isEnabled())
+    ActivateThisDialog();
 }
 
 //=================================================================================
-// function : Init
-// purpose  : Initialize dialog fields
+// function : SelectionIntoArgument
+// purpose  : SLOT. Called when selection changed.
 //=================================================================================
-void RepairGUI_FreeBoundDlg::Init()
+void RepairGUI_FreeBoundDlg::SelectionIntoArgument()
 {
-  myNbClosed = myNbOpen = 0;
+  myEditCurrentArgument->setText("");
+  myClosedLbl->setText(tr("NUMBER_CLOSED"));
+  myOpenLbl->setText(tr("NUMBER_OPEN"));
   myObj = GEOM::GEOM_Object::_nil();
+  erasePreview();
 
-  connect( myGeomGUI, SIGNAL( SignalDeactivateActiveDialog() ), SLOT  ( onDeactivate() ) );
-  connect( ((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
-          SIGNAL( currentSelectionChanged() ), SLOT( onSelectionDone() ) );
+  LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
+  SALOME_ListIO aSelList;
+  aSelMgr->selectedObjects(aSelList);
 
-  activateSelection();
-  onSelectionDone();
-}
+  if (aSelList.Extent() != 1)
+    return;
 
-//=================================================================================
-// function : enterEvent
-// purpose  : Activate dialog
-//=================================================================================
-void RepairGUI_FreeBoundDlg::enterEvent( QEvent* e )
-{
-  onActivate();
-}
+  GEOM::GEOM_Object_var anObj = GEOMBase::ConvertIOinGEOMObject(aSelList.First());
 
-//=================================================================================
-// function : closeEvent
-// purpose  : Close dialog
-//=================================================================================
-void RepairGUI_FreeBoundDlg::closeEvent( QCloseEvent* e )
-{
-  onClose();
+  if (!GEOMBase::IsShape(anObj))
+    return;
+
+  myObj = anObj;
+  myEditCurrentArgument->setText(GEOMBase::GetName(myObj));
+  displayPreview(true, false, true, true, 3, 0);
 }
 
 //=================================================================================
@@ -241,11 +228,11 @@ void RepairGUI_FreeBoundDlg::closeEvent( QCloseEvent* e )
 void RepairGUI_FreeBoundDlg::activateSelection()
 {
   TColStd_MapOfInteger aMap;
-  aMap.Add( GEOM_FACE );
-  aMap.Add( GEOM_SHELL );
-  aMap.Add( GEOM_SOLID );
-  aMap.Add( GEOM_COMPOUND );
-  globalSelection( aMap );
+  aMap.Add(GEOM_FACE);
+  aMap.Add(GEOM_SHELL);
+  aMap.Add(GEOM_SOLID);
+  aMap.Add(GEOM_COMPOUND);
+  globalSelection(aMap);
 }
 
 //=================================================================================
@@ -254,14 +241,14 @@ void RepairGUI_FreeBoundDlg::activateSelection()
 //=================================================================================
 GEOM::GEOM_IOperations_ptr RepairGUI_FreeBoundDlg::createOperation()
 {
-  return getGeomEngine()->GetIHealingOperations( getStudyId() );
+  return getGeomEngine()->GetIHealingOperations();
 }
 
 //=================================================================================
 // function : isValid
 // purpose  :
 //=================================================================================
-bool RepairGUI_FreeBoundDlg::isValid( QString& msg )
+bool RepairGUI_FreeBoundDlg::isValid (QString&)
 {
   return !myObj->_is_nil();
 }
@@ -270,55 +257,65 @@ bool RepairGUI_FreeBoundDlg::isValid( QString& msg )
 // function : execute
 // purpose  : Get free boundaries
 //=================================================================================
-bool RepairGUI_FreeBoundDlg::execute( ObjectList& objects )
+bool RepairGUI_FreeBoundDlg::execute (ObjectList& objects)
 {
-  if ( !IsPreview() || myObj->_is_nil() )
-    return false;
-
   GEOM::ListOfGO_var aClosed, anOpen;
 
-  bool result = GEOM::GEOM_IHealingOperations::_narrow(
-    getOperation() )->GetFreeBoundary( myObj, aClosed, anOpen );
+  GEOM::ListOfGO_var objList = new GEOM::ListOfGO;
+  objList->length(1);
+  objList[0] = myObj;
+  GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow(getOperation());
+  bool result = anOper->GetFreeBoundary(objList, aClosed, anOpen);
 
-  if ( result )
-  {
+  if (result) {
     myNbClosed = aClosed->length();
     myNbOpen = anOpen->length();
     int i;
-    for ( i = 0; i < myNbClosed; i++ )
-      objects.push_back( aClosed[i]._retn() );
-    for ( i = 0; i < myNbOpen; i++ )
-      objects.push_back( anOpen[i]._retn() );
-
-    myEdit->setText( GEOMBase::GetName( myObj ) );
-    QString aLabelText = tr( "NUMBER_CLOSED" ) + QString( "%1" ).arg( myNbClosed );
-    myClosedLbl->setText( aLabelText );
-    aLabelText = tr( "NUMBER_OPEN" ) + QString( "%1" ).arg( myNbOpen );
-    myOpenLbl->setText( aLabelText );
-  }
-  else
-  {
-    myEdit->setText( GEOMBase::GetName( myObj ) );
-    myClosedLbl->setText( tr( "NUMBER_CLOSED" ) );
-    myOpenLbl->setText( tr( "NUMBER_OPEN" ) );
+    for (i = 0; i < myNbClosed; i++)
+      objects.push_back(aClosed[i]._retn());
+    for (i = 0; i < myNbOpen; i++)
+      objects.push_back(anOpen[i]._retn());
+
+    QString aLabelText = tr("NUMBER_CLOSED") + QString("%1").arg(myNbClosed);
+    myClosedLbl->setText(aLabelText);
+    aLabelText = tr("NUMBER_OPEN") + QString("%1").arg(myNbOpen);
+    myOpenLbl->setText(aLabelText);
   }
 
+  myCurrObj = 1;
   return result;
 }
 
+//================================================================
+// Function : getNewObjectName
+// Purpose  : Redefine this method to return proper name for a new object
+//================================================================
+QString RepairGUI_FreeBoundDlg::getNewObjectName (int currObj) const
+{
+  QString aName = tr("NAME_CLOSED").arg(currObj);
+  if (currObj > myNbClosed)
+    aName = tr("NAME_OPEN").arg(currObj);
+  return aName;
+}
+
+//================================================================
+// Function : getFather
+// Purpose  : Get father object for object to be added in study
+//            (called with addInStudy method)
+//================================================================
+GEOM::GEOM_Object_ptr RepairGUI_FreeBoundDlg::getFather (GEOM::GEOM_Object_ptr)
+{
+  return myObj;
+}
+
 //=================================================================================
-// function : keyPressEvent()
-// purpose  :
+// function : getSourceObjects
+// purpose  : virtual method to get source objects
 //=================================================================================
-void RepairGUI_FreeBoundDlg::keyPressEvent( QKeyEvent* e )
+QList<GEOM::GeomObjPtr> RepairGUI_FreeBoundDlg::getSourceObjects()
 {
-  QDialog::keyPressEvent( e );
-  if ( e->isAccepted() )
-    return;
-
-  if ( e->key() == Key_F1 )
-    {
-      e->accept();
-      onHelp();
-    }
+  QList<GEOM::GeomObjPtr> res;
+  GEOM::GeomObjPtr aGeomObjPtr(myObj);
+  res << aGeomObjPtr;
+  return res;
 }