X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FMeasureGUI%2FMeasureGUI_CheckCompoundOfBlocksDlg.h;h=d1229c43072c9ae2562116aabb9b683b1d08cb32;hb=6c8fca7b1fc27090ae4fd7dae2f2c6fec07739ba;hp=6eb0e96337ecfb4349cc1c782bd32656eb7030ec;hpb=e180c20f73ffa96c2d039106f2a2a868c8bc0df1;p=modules%2Fgeom.git diff --git a/src/MeasureGUI/MeasureGUI_CheckCompoundOfBlocksDlg.h b/src/MeasureGUI/MeasureGUI_CheckCompoundOfBlocksDlg.h index 6eb0e9633..d1229c430 100644 --- a/src/MeasureGUI/MeasureGUI_CheckCompoundOfBlocksDlg.h +++ b/src/MeasureGUI/MeasureGUI_CheckCompoundOfBlocksDlg.h @@ -1,90 +1,92 @@ -// GEOM GEOMGUI : GUI for Geometry component +// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE // -// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// 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. +// 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. +// 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 +// 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 +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // -// -// -// File : MeasureGUI_CheckCompoundOfBlocksDlg.h -// Author : VKN -// Module : GEOM -#ifndef DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H -#define DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H +// GEOM GEOMGUI : GUI for Geometry component +// File : MeasureGUI_CheckCompoundOfBlocksDlg.h +// Author : Vladimir KLYACHIN, Open CASCADE S.A.S. (vladimir.klyachin@opencascade.com) +// +#ifndef MEASUREGUI_CHECKCOMPOUNDOFBLOCKSDLG_H +#define MEASUREGUI_CHECKCOMPOUNDOFBLOCKSDLG_H -#include "GEOMBase_Skeleton.h" +#include -class MeasureGUI_1Sel1TextView_QTD; -class QListBox; +class QCheckBox; class QLabel; - -#if defined WNT && defined MEASUREGUI_EXPORTS -#define MEASUREGUI_EXPORT __declspec( dllexport ) -#else -#define MEASUREGUI_EXPORT -#endif +class QLineEdit; +class QListWidget; +class QPushButton; +class QTextBrowser; +class SalomeApp_DoubleSpinBox; //================================================================================= // class : MeasureGUI_CheckCompoundOfBlocksDlg // purpose : //================================================================================= -class MEASUREGUI_EXPORT MeasureGUI_CheckCompoundOfBlocksDlg : public GEOMBase_Skeleton + +class MeasureGUI_CheckCompoundOfBlocksDlg : public GEOMBase_Skeleton { - Q_OBJECT + Q_OBJECT public: - MeasureGUI_CheckCompoundOfBlocksDlg(GeometryGUI* GUI, QWidget* theParent); - ~MeasureGUI_CheckCompoundOfBlocksDlg(); - + MeasureGUI_CheckCompoundOfBlocksDlg( GeometryGUI*, QWidget* ); + ~MeasureGUI_CheckCompoundOfBlocksDlg(); + protected: - // redefined from GEOMBase_Helper and GEOMBase_Skeleton - virtual GEOM::GEOM_IOperations_ptr createOperation(); - virtual bool isValid( QString& msg ); - virtual bool execute( ObjectList& objects ); - virtual void processObject(); + // redefined from GEOMBase_Helper and GEOMBase_Skeleton + virtual GEOM::GEOM_IOperations_ptr createOperation(); + virtual bool isValid( QString &msg ); + virtual bool execute( ObjectList& ); + virtual void processObject(); private slots: - void ClickOnOk(); - bool ClickOnApply(); - void ActivateThisDialog(); - void LineEditReturnPressed(); - void SelectionIntoArgument(); - void SetEditCurrentArgument(); - - void onErrorsListSelectionChanged(); - void onSubShapesListSelectionChanged(); - + void ClickOnOk(); + bool ClickOnApply(); + void ActivateThisDialog(); + void LineEditReturnPressed(); + void SelectionIntoArgument(); + void SetEditCurrentArgument(); + + void onErrorsListSelectionChanged(); + void onSubShapesListSelectionChanged(); + void SetUseC1Tolerance(); + void onDisplayPreview(); + private: - void Init(); - void enterEvent( QEvent* e ); - bool getBCErrors( bool& theIsCompoundOfBlocks, - GEOM::GEOM_IBlocksOperations::BCErrors& theErrors); - void activateSelection(); + void Init(); + void enterEvent( QEvent* ); + bool getBCErrors( bool&, + GEOM::GEOM_IBlocksOperations::BCErrors& ); + void activateSelection(); private: - GEOM::GEOM_Object_var myObj; - MeasureGUI_1Sel1TextView_QTD* myGrp; - - QLabel* myErrorsLbl; - QListBox* myErrorsLBox; - QLabel* mySubShapesLbl; - QListBox* mySubShapesLBox; + GEOM::GEOM_Object_var myObj; + QLineEdit *myObjectName; + QPushButton *mySelButton; + QCheckBox *myUseC1Check; + QLabel *myTolLbl; + SalomeApp_DoubleSpinBox *mySpinTol; + QTextBrowser *myTextView; + QListWidget *myListBox1; + QListWidget *myListBox2; }; -#endif // DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H +#endif // MEASUREGUI_CHECKCOMPOUNDOFBLOCKSDLG_H