00001 // Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE 00002 // 00003 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, 00004 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 00005 // 00006 // This library is free software; you can redistribute it and/or 00007 // modify it under the terms of the GNU Lesser General Public 00008 // License as published by the Free Software Foundation; either 00009 // version 2.1 of the License. 00010 // 00011 // This library is distributed in the hope that it will be useful, 00012 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00013 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00014 // Lesser General Public License for more details. 00015 // 00016 // You should have received a copy of the GNU Lesser General Public 00017 // License along with this library; if not, write to the Free Software 00018 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00019 // 00020 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com 00021 // 00022 00023 // GEOM GEOMGUI : GUI for Geometry component 00024 // File : OperationGUI_FilletDlg.h 00025 // Author : Damien COQUERET, Open CASCADE S.A.S. 00026 // 00027 #ifndef OPERATIONGUI_FILLETDLG_H 00028 #define OPERATIONGUI_FILLETDLG_H 00029 00030 #include <GEOMBase_Skeleton.h> 00031 00032 #include <TColStd_IndexedMapOfInteger.hxx> 00033 00034 class DlgRef_1Sel1Spin; 00035 class DlgRef_2Sel3Spin2Rb; 00036 00037 //================================================================================= 00038 // class : OperationGUI_FilletDlg 00039 // purpose : 00040 //================================================================================= 00041 class OperationGUI_FilletDlg : public GEOMBase_Skeleton 00042 { 00043 Q_OBJECT 00044 00045 public: 00046 OperationGUI_FilletDlg( GeometryGUI*, QWidget* ); 00047 ~OperationGUI_FilletDlg(); 00048 00049 protected: 00050 // redefined from GEOMBase_Helper 00051 virtual GEOM::GEOM_IOperations_ptr createOperation(); 00052 virtual bool isValid( QString& ); 00053 virtual bool execute( ObjectList& ); 00054 00055 private slots: 00056 void ClickOnOk(); 00057 bool ClickOnApply(); 00058 void ActivateThisDialog(); 00059 void LineEditReturnPressed(); 00060 void SelectionIntoArgument(); 00061 void SetEditCurrentArgument(); 00062 void ValueChangedInSpinBox( double ); 00063 void ConstructorsClicked( int ); 00064 void RadioButtonClicked(); 00065 00066 private: 00067 void Init(); 00068 void enterEvent( QEvent* ); 00069 void activateSelection(); 00070 void enableWidgets(); 00071 double getRadius() const; 00072 00073 private: 00074 int myConstructorId; 00075 00076 GEOM::GEOM_Object_var myShape; 00077 TColStd_IndexedMapOfInteger myEdges; 00078 TColStd_IndexedMapOfInteger myFaces; 00079 00080 // to initialize the first selection field with a selected object on the dialog creation 00081 bool myInitial; 00082 00083 DlgRef_1Sel1Spin* Group1; 00084 DlgRef_2Sel3Spin2Rb* Group2; 00085 DlgRef_2Sel3Spin2Rb* Group3; 00086 }; 00087 00088 #endif // OPERATIONGUI_FILLETDLG_H