// Copyright (C) 2013-2014 CEA/DEN, EDF R&D, OPEN CASCADE // // 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 // // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #include "AdvancedGUI_SmoothingSurfaceDlg.h" #include #include #include #include #include #include #include // OCCT Includes #include #include #include #include #include #include //================================================================================= // Constructor //================================================================================= AdvancedGUI_SmoothingSurfaceDlg::AdvancedGUI_SmoothingSurfaceDlg (GeometryGUI* theGeometryGUI, QWidget* parent) : GEOMBase_Skeleton(theGeometryGUI, parent, false) { QPixmap imageOp (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_DLG_SMOOTHINGSURFACE_LPOINTS"))); QPixmap imageSel (SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM", tr("ICON_SELECT"))); QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) ); setWindowTitle(tr("GEOM_SMOOTHINGSURFACE_TITLE")); /***************************************************************/ mainFrame()->GroupConstructors->setTitle(tr("GEOM_SMOOTHINGSURFACE")); mainFrame()->RadioButton1->setIcon(imageOp); mainFrame()->RadioButton2->setAttribute(Qt::WA_DeleteOnClose); mainFrame()->RadioButton2->close(); mainFrame()->RadioButton3->setAttribute(Qt::WA_DeleteOnClose); mainFrame()->RadioButton3->close(); GroupPoints = new DlgRef_1Sel( centralWidget() ); GroupPoints->GroupBox1->setTitle( tr( "GEOM_SMOOTHINGSURFACE_ARG" ) ); GroupPoints->TextLabel1->setText( tr( "GEOM_SMOOTHINGSURFACE_ARG_POINTS" ) ); GroupPoints->PushButton1->setIcon( image1 ); GroupPoints->LineEdit1->setReadOnly( true ); QVBoxLayout* layout = new QVBoxLayout(centralWidget()); layout->setMargin(0); layout->setSpacing(6); layout->addWidget(GroupPoints); /***************************************************************/ setHelpFileName("create_smoothingsurface_page.html"); Init(); } //================================================================================= // Destructor //================================================================================= AdvancedGUI_SmoothingSurfaceDlg::~AdvancedGUI_SmoothingSurfaceDlg() { // no need to delete child widgets, Qt does it all for us } //================================================================================= // function : Init() // purpose : //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::Init() { // Get setting of step value from file configuration SUIT_ResourceMgr* resMgr = SUIT_Session::session()->resourceMgr(); double step = resMgr->doubleValue("Geometry", "SettingsGeomStep", 100); //@@ initialize dialog box widgets here @@// // Signal/slot connections connect(buttonOk(), SIGNAL(clicked()), this, SLOT(ClickOnOk())); connect(buttonApply(), SIGNAL(clicked()), this, SLOT(ClickOnApply())); connect(myGeomGUI, SIGNAL(SignalDefaultStepValueChanged(double)), this, SLOT(SetDoubleSpinBoxStep(double))); connect( myGeomGUI->getApp()->selectionMgr(), SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) ); initName(tr("GEOM_SMOOTHINGSURFACE")); //displayPreview(); } //================================================================================= // function : ClickOnOk() // purpose : //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::ClickOnOk() { if (ClickOnApply()) ClickOnCancel(); } //================================================================================= // function : ClickOnApply() // purpose : //================================================================================= bool AdvancedGUI_SmoothingSurfaceDlg::ClickOnApply() { if (!onAccept()) return false; initName(); return true; } //================================================================================= // function : ActivateThisDialog() // purpose : //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::ActivateThisDialog() { GEOMBase_Skeleton::ActivateThisDialog(); //displayPreview(); } //================================================================================= // function : enterEvent [REDEFINED] // purpose : //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::enterEvent (QEvent*) { if (!mainFrame()->GroupConstructors->isEnabled()) ActivateThisDialog(); } //================================================================================= // function : createOperation // purpose : //================================================================================= GEOM::GEOM_IOperations_ptr AdvancedGUI_SmoothingSurfaceDlg::createOperation() { //return getGeomEngine()->GetIAdvancedOperations(getStudyId()); return getGeomEngine()->GetPluginOperations(getStudyId(), "AdvancedEngine"); } //================================================================================= // function : isValid // purpose : //================================================================================= bool AdvancedGUI_SmoothingSurfaceDlg::isValid (QString& msg) { bool ok = true; //@@ add custom validation actions here @@// return ok; } //================================================================================= // function : execute // purpose : //================================================================================= bool AdvancedGUI_SmoothingSurfaceDlg::execute (ObjectList& objects) { bool res = false; GEOM::GEOM_Object_var anObj; GEOM::GEOM_IAdvancedOperations_var anOper = GEOM::GEOM_IAdvancedOperations::_narrow(getOperation()); //@@ retrieve input values from the widgets here @@// GEOM::ListOfGO_var points = new GEOM::ListOfGO(); points->length( myPoints.count() ); for ( int i = 0; i < myPoints.count(); i++ ) points[i] = myPoints[i].copy(); // call engine function anObj = anOper->MakeSmoothingSurface(points); res = !anObj->_is_nil(); if (res && !IsPreview()) { QStringList aParameters; //@@ put stringified input parameters to the string list here to store in the data model for notebook @@// if ( aParameters.count() > 0 ) anObj->SetParameters(aParameters.join(":").toLatin1().constData()); } if (res) objects.push_back(anObj._retn()); return res; } //================================================================================= // function : SelectionIntoArgument() // purpose : Called when selection as changed or other case //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::SelectionIntoArgument() { QList points = getSelected( TopAbs_VERTEX, -1 ); GEOMBase::Synchronize( myPoints, points ); if ( !myPoints.isEmpty() ) GroupPoints->LineEdit1->setText( QString::number( myPoints.count() ) + "_" + tr( "GEOM_POINT" ) + tr( "_S_" ) ); else GroupPoints->LineEdit1->setText( "" ); processPreview(); } //================================================================================= // function : SetEditCurrentArgument() // purpose : //================================================================================= void AdvancedGUI_SmoothingSurfaceDlg::SetEditCurrentArgument() { if ( sender() == GroupPoints->PushButton1 ) myEditCurrentArgument = GroupPoints->LineEdit1; myEditCurrentArgument->setFocus(); SelectionIntoArgument(); }