Salome HOME
Bug with bad object names after explode is fixed.
[modules/geom.git] / src / EntityGUI / EntityGUI_SubShapeDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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. 
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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : EntityGUI_SubShapeDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_SUBSHAPE_H
30 #define DIALOGBOX_SUBSHAPE_H
31
32 #include "GEOMBase_Skeleton.h"
33 #include "DlgRef_1Sel1Check1List_QTD.h"
34
35
36 //=================================================================================
37 // class    : EntityGUI_SubShapeDlg
38 // purpose  :
39 //=================================================================================
40 class EntityGUI_SubShapeDlg : public GEOMBase_Skeleton
41
42     Q_OBJECT
43
44 public:
45                                         EntityGUI_SubShapeDlg( QWidget* parent = 0,
46                                                                const char* name = 0,
47                                                                bool modal = FALSE,
48                                                                WFlags fl = 0 );
49                                         ~EntityGUI_SubShapeDlg();
50
51 protected:
52     // redefined from GEOMBase_Helper
53     virtual GEOM::GEOM_IOperations_ptr  createOperation();
54     virtual bool                        isValid( QString& );
55     virtual bool                        execute( ObjectList& objects );
56     virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr theObj );
57     virtual const char* getNewObjectName() const;
58
59 private slots:
60     void                                ClickOnOk();
61     bool                                ClickOnApply();
62     void                                ActivateThisDialog();
63     void                                DeactivateActiveDialog();
64     void                                LineEditReturnPressed();
65     void                                SelectionIntoArgument();
66     void                                SetEditCurrentArgument();
67     void                                SubShapeToggled();
68     void                                ComboTextChanged();
69
70 private :
71     void                                Init();
72     void                                enterEvent( QEvent* e );
73
74     void                                ResetStateOfDialog();
75     unsigned int                        NumberOfSubShapes (const TopoDS_Shape& S,
76                                                            const int shapeType) const;
77
78     void                                updateButtonState();
79     bool                                isAllSubShapes() const;
80     int                                 shapeType() const;
81
82 private:    
83
84     TopoDS_Shape                        myShape;
85     GEOM::GEOM_Object_var               myObject;
86
87     bool                                myWithShape;  
88     
89     DlgRef_1Sel1Check1List_QTD*         GroupPoints;
90     ObjectList                          myResult;
91 };
92
93 #endif // DIALOGBOX_SUBSHAPE_H