Salome HOME
IPAL20715 impossible to select sub-shape after apply group
[modules/geom.git] / src / GroupGUI / GroupGUI_GroupDlg.h
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2004  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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : GroupGUI_GroupDlg.h
23 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
24 //
25
26 #ifndef GROUPGUI_GROUPDLG_H
27 #define GROUPGUI_GROUPDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 #include <TopAbs_ShapeEnum.hxx>
32 #include <TColStd_DataMapOfIntegerInteger.hxx>
33
34 class QGroupBox;
35 class QLineEdit;
36 class QListWidget;
37 class QButtonGroup;
38
39 //=================================================================================
40 // class    : GroupGUI_GroupDlg
41 // purpose  :
42 //=================================================================================
43 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
44 {
45   Q_OBJECT
46
47 public:
48   typedef enum {
49     CreateGroup,
50     EditGroup
51   } Mode;
52
53   GroupGUI_GroupDlg( Mode mode, GeometryGUI*, QWidget* parent = 0 );
54   ~GroupGUI_GroupDlg();
55
56 protected:
57   // redefined from GEOMBase_Helper
58   virtual GEOM::GEOM_IOperations_ptr  createOperation();
59   virtual bool                        isValid( QString& );
60   virtual bool                        execute( ObjectList& );
61   virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr );
62   
63   void                                closeEvent( QCloseEvent* );
64
65 private slots:
66   void                                ClickOnOk();
67   bool                                ClickOnApply();
68   void                                ActivateThisDialog();
69   void                                LineEditReturnPressed();
70   void                                SelectionIntoArgument();
71   void                                SetEditCurrentArgument();
72   void                                ConstructorsClicked( int );
73   
74   void                                selectAllSubShapes();
75   void                                add();
76   void                                remove();
77   void                                selectionChanged();
78   
79 private:
80   void                                Init();
81   void                                enterEvent( QEvent* );
82   int                                 subSelectionWay() const;    
83   TopAbs_ShapeEnum                    getShapeType() const;
84   void                                setShapeType( const TopAbs_ShapeEnum );
85   void                                activateSelection();
86   void                                updateState();
87   void                                highlightSubShapes();
88   void                                onGetInPlace();
89   void                                setInPlaceObj( GEOM::GEOM_Object_var );
90
91 private:
92   Mode                                myMode;
93   bool                                myBusy;
94   GEOM::GEOM_Object_var               myMainObj;
95   GEOM::GEOM_Object_var               myGroup;
96   GEOM::GEOM_Object_var               myInPlaceObj;
97   int                                 myInPlaceObjSelectWay;
98   TColStd_DataMapOfIntegerInteger     myMain2InPlaceIndices;
99
100   QPushButton*                        mySelBtn;
101   QLineEdit*                          myMainName;
102   QPushButton*                        mySelBtn2;
103   QLineEdit*                          myShape2Name;
104   QGroupBox*                          mySelectionWayGroupBox;
105   QButtonGroup*                       mySelectionWayGroup;
106   QPushButton*                        mySelAllBtn;
107   QPushButton*                        myAddBtn;
108   QPushButton*                        myRemBtn;
109   QListWidget*                        myIdList;
110 };
111
112 #endif