2014-02-18 12:44:41 +06:00
|
|
|
// Copyright (C) 2013-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
2013-06-10 14:28:09 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2013-06-10 14:28:09 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
2013-06-10 14:28:09 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2013-06-10 14:28:09 +06:00
|
|
|
//
|
2014-02-18 12:44:41 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2013-06-10 14:28:09 +06:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ADVANCEDGUI_SMOOTHINGSURFACEDLG_H
|
|
|
|
#define ADVANCEDGUI_SMOOTHINGSURFACEDLG_H
|
|
|
|
|
|
|
|
#include <GEOMBase_Skeleton.h>
|
|
|
|
#include "GEOM_GenericObjPtr.h"
|
|
|
|
|
|
|
|
#include <list>
|
|
|
|
|
|
|
|
class DlgRef_1Sel;
|
2014-03-26 15:07:43 +06:00
|
|
|
class SalomeApp_IntSpinBox;
|
2013-06-10 14:28:09 +06:00
|
|
|
|
|
|
|
//=================================================================================
|
|
|
|
// class : AdvancedGUI_SmoothingSurfaceDlg
|
|
|
|
// purpose :
|
|
|
|
//=================================================================================
|
|
|
|
class AdvancedGUI_SmoothingSurfaceDlg : public GEOMBase_Skeleton
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
AdvancedGUI_SmoothingSurfaceDlg( GeometryGUI*, QWidget* = 0 );
|
|
|
|
~AdvancedGUI_SmoothingSurfaceDlg();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// redefined from GEOMBase_Helper
|
|
|
|
virtual GEOM::GEOM_IOperations_ptr createOperation();
|
|
|
|
virtual bool isValid( QString& );
|
|
|
|
virtual bool execute( ObjectList& );
|
|
|
|
|
|
|
|
private:
|
|
|
|
void Init();
|
|
|
|
void enterEvent( QEvent* );
|
2014-03-24 15:13:11 +06:00
|
|
|
int getNbPoints() const;
|
2013-06-10 14:28:09 +06:00
|
|
|
|
|
|
|
private:
|
|
|
|
DlgRef_1Sel* GroupPoints;
|
|
|
|
QList<GEOM::GeomObjPtr> myPoints;
|
2014-03-26 15:07:43 +06:00
|
|
|
SalomeApp_IntSpinBox *myNbMaxSpin;
|
|
|
|
SalomeApp_IntSpinBox *myDegMaxSpin;
|
|
|
|
SalomeApp_DoubleSpinBox *myDMaxSpin;
|
2013-06-10 14:28:09 +06:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void ClickOnOk();
|
|
|
|
bool ClickOnApply();
|
|
|
|
|
|
|
|
void ActivateThisDialog();
|
2013-09-09 15:16:42 +06:00
|
|
|
//void DeactivateActiveDialog();
|
2013-06-10 14:28:09 +06:00
|
|
|
|
2013-09-09 15:16:42 +06:00
|
|
|
//void CheckButtonToggled();
|
2013-06-10 14:28:09 +06:00
|
|
|
void SelectionIntoArgument();
|
|
|
|
void SetEditCurrentArgument();
|
|
|
|
//void ValueChangedInSpinBox();
|
|
|
|
//void SetDoubleSpinBoxStep( double );
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ADVANCEDGUI_SMOOTHINGSURFACEDLG_H
|