X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMeasureGUI%2FMeasureGUI_PropertiesDlg.h;h=8816949aa1444fa4e203559ed4e84e6100023a59;hb=a51025b4d1b7519fdab2626039082ae7f074998d;hp=d2402393dc95242f56e68ed73a8093af53088d55;hpb=c577ca78d7a6e286526662cf54df6de1f4f2f449;p=modules%2Fgeom.git diff --git a/src/MeasureGUI/MeasureGUI_PropertiesDlg.h b/src/MeasureGUI/MeasureGUI_PropertiesDlg.h index d2402393d..8816949aa 100644 --- a/src/MeasureGUI/MeasureGUI_PropertiesDlg.h +++ b/src/MeasureGUI/MeasureGUI_PropertiesDlg.h @@ -1,63 +1,82 @@ -// GEOM GEOMGUI : GUI for Geometry component +// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS // -// 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// 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 +// +// GEOM GEOMGUI : GUI for Geometry component // File : MeasureGUI_PropertiesDlg.h // Author : Lucien PIGNOLONI // Module : GEOM - +// #ifndef DIALOGBOX_PROPERTIES_H #define DIALOGBOX_PROPERTIES_H -#include "MeasureGUI_Skeleton.h" -#include "MeasureGUI_1Sel3LineEdit_QTD.h" +#include "GEOM_MeasureGUI.hxx" -#include "MeasureGUI.h" +#include "MeasureGUI_Skeleton.h" +class MeasureGUI_1Sel3LineEdit_QTD; //================================================================================= // class : MeasureGUI_PropertiesDlg -// purpose : +// purpose : Dialog for displaying length, area and volume //================================================================================= -class MeasureGUI_PropertiesDlg : public MeasureGUI_Skeleton + +class GEOM_MEASUREGUI_EXPORT MeasureGUI_PropertiesDlg : public MeasureGUI_Skeleton { Q_OBJECT public: - MeasureGUI_PropertiesDlg(QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0); - ~MeasureGUI_PropertiesDlg(); + MeasureGUI_PropertiesDlg( GeometryGUI* GUI, + QWidget* parent ); + ~MeasureGUI_PropertiesDlg(); + +protected: + + // redefined from GEOMBase_Helper and MeasureGUI_Skeleton + virtual void processObject(); + virtual void activateSelection(); + virtual SALOME_Prs* buildPrs(); private: - void Init(); - void enterEvent(QEvent* e); - void CalculateAndDisplayProperties(const TopoDS_Shape& S); - MeasureGUI_1Sel3LineEdit_QTD* GroupC1; + void Init(); + bool getParameters( double& theLength, + double& theArea, + double& theVolume ); -private slots: - void SetEditCurrentArgument(); - void SelectionIntoArgument(); - void LineEditReturnPressed(); - void ActivateThisDialog(); +private: + MeasureGUI_1Sel3LineEdit_QTD* myGrp; }; #endif // DIALOGBOX_PROPERTIES_H + + + + + + + + + + + + + +