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 // File : OperationGUI_PartitionDlg.h 00023 // Author : Lucien PIGNOLONI, Open CASCADE S.A.S. 00024 00025 #ifndef OPERATIONGUI_PARTITIONDLG_H 00026 #define OPERATIONGUI_PARTITIONDLG_H 00027 00028 #include <GEOMBase_Skeleton.h> 00029 00030 class DlgRef_2Sel1List2Check; 00031 00032 //================================================================================= 00033 // class : OperationGUI_PartitionDlg 00034 // purpose : 00035 //================================================================================= 00036 class OperationGUI_PartitionDlg : public GEOMBase_Skeleton 00037 { 00038 Q_OBJECT 00039 00040 public: 00041 OperationGUI_PartitionDlg( GeometryGUI*, QWidget* = 0 ); 00042 ~OperationGUI_PartitionDlg(); 00043 00044 void SetListMaterials( GEOM::ListOfLong ); 00045 GEOM::ListOfLong GetListMaterials(); 00046 00047 protected: 00048 // redefined from GEOMBase_Helper 00049 virtual GEOM::GEOM_IOperations_ptr createOperation(); 00050 virtual bool isValid( QString& ); 00051 virtual bool execute( ObjectList& ); 00052 virtual void restoreSubShapes( SALOMEDS::Study_ptr, SALOMEDS::SObject_ptr ); 00053 00054 private: 00055 void Init(); 00056 void enterEvent( QEvent* ); 00057 int GetLimit() const; 00058 00059 private: 00060 GEOM::ListOfGO myListShapes; 00061 GEOM::ListOfLong myListMaterials; 00062 GEOM::ListOfGO myListTools; 00063 GEOM::ListOfGO myListRemoveInside; 00064 GEOM::ListOfGO myListKeepInside; 00065 00066 DlgRef_2Sel1List2Check* GroupPoints; 00067 00068 private slots: 00069 void ClickOnOk(); 00070 bool ClickOnApply(); 00071 void ActivateThisDialog(); 00072 void LineEditReturnPressed(); 00073 void SelectionIntoArgument(); 00074 void SetEditCurrentArgument(); 00075 void ComboTextChanged(); 00076 void ConstructorsClicked( int ); 00077 }; 00078 00079 #endif // OPERATIONGUI_PARTITIONDLG_H