Salome HOME
Fix compilation error (conflict of OK name between OCCT Plate_Plate.hxx and GEOM...
[modules/geom.git] / src / OperationGUI / OperationGUI_PartitionDlg.h
1 // Copyright (C) 2007-2024  CEA, EDF, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //  File   : OperationGUI_PartitionDlg.h
23 //  Author : Lucien PIGNOLONI, Open CASCADE S.A.S.
24
25 #ifndef OPERATIONGUI_PARTITIONDLG_H
26 #define OPERATIONGUI_PARTITIONDLG_H
27
28 #include <GEOMBase_Skeleton.h>
29
30 class DlgRef_2Sel1List2Check;
31 class QCheckBox;
32 class QLabel;
33 class SalomeApp_DoubleSpinBox;
34
35 //=================================================================================
36 // class    : OperationGUI_PartitionDlg
37 // purpose  :
38 //=================================================================================
39 class OperationGUI_PartitionDlg : public GEOMBase_Skeleton
40 {
41   Q_OBJECT
42
43 public:
44   OperationGUI_PartitionDlg( GeometryGUI*, QWidget* = 0 );
45   ~OperationGUI_PartitionDlg();
46
47   void                               SetListMaterials( GEOM::ListOfLong );
48   GEOM::ListOfLong                   GetListMaterials();
49
50 protected:
51   // redefined from GEOMBase_Helper
52   virtual GEOM::GEOM_IOperations_ptr createOperation();
53   virtual bool                       isValid( QString& );
54   virtual bool                       execute( ObjectList& );
55   virtual void                       restoreSubShapes( SALOMEDS::SObject_ptr );
56   virtual QList<GEOM::GeomObjPtr>    getSourceObjects();
57
58 private:
59   void                               Init();
60   void                               enterEvent( QEvent* );
61   int                                GetLimit() const;
62
63 private:
64   GEOM::ListOfGO                     myListShapes;
65   GEOM::ListOfLong                   myListMaterials;
66   GEOM::ListOfGO                     myListTools;
67   GEOM::ListOfGO                     myListRemoveInside;
68   GEOM::ListOfGO                     myListKeepInside;
69
70   DlgRef_2Sel1List2Check*            GroupPoints;
71   QCheckBox*                         mySelfInte;
72   QCheckBox*                         myFuzzyChk;
73   QLabel*                            myFuzzyLbl;
74   SalomeApp_DoubleSpinBox*           myFuzzyEdt;
75
76 private slots:
77   void                               ClickOnOk();
78   bool                               ClickOnApply();
79   void                               UseFuzzyChanged(int state);
80   void                               ActivateThisDialog();
81   void                               LineEditReturnPressed();
82   void                               SelectionIntoArgument();
83   void                               SetEditCurrentArgument();
84   void                               ComboTextChanged();
85   void                               ConstructorsClicked( int );
86 };
87
88 #endif // OPERATIONGUI_PARTITIONDLG_H