]> SALOME platform Git repositories - modules/geom.git/blob - src/GroupGUI/GroupGUI_GroupDlg.h
Salome HOME
*** empty log message ***
[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
33 class DlgRef_1Sel1List4Btn;
34
35 //=================================================================================
36 // class    : GroupGUI_GroupDlg
37 // purpose  :
38 //=================================================================================
39 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
40 {
41   Q_OBJECT
42       
43 public:
44   typedef enum {
45     CreateGroup,
46     EditGroup
47   } Mode;
48
49   GroupGUI_GroupDlg( Mode, GeometryGUI*, QWidget* = 0 );
50   ~GroupGUI_GroupDlg();
51
52 protected:
53   // redefined from GEOMBase_Helper
54   virtual GEOM::GEOM_IOperations_ptr  createOperation();
55   virtual bool                        isValid( QString& );
56   virtual bool                        execute( ObjectList& );
57   virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr );
58
59 private slots:
60   void                                ClickOnOk();
61   bool                                ClickOnApply();
62   void                                ActivateThisDialog();
63   void                                LineEditReturnPressed();
64   void                                SelectionIntoArgument();
65   void                                SetEditCurrentArgument();
66   void                                ConstructorsClicked( int );
67   
68   void                                selectAllSubShapes();
69   void                                add();
70   void                                remove();
71   void                                selectionChanged();
72   
73 private:
74   void                                Init();
75   void                                enterEvent( QEvent* );
76   TopAbs_ShapeEnum                    getShapeType() const;
77   void                                setShapeType( const TopAbs_ShapeEnum );
78   void                                activateSelection();
79   void                                updateState();
80   void                                highlightSubShapes();
81
82 private:
83   Mode                                myMode;
84   bool                                myBusy;
85   GEOM::GEOM_Object_var               myMainObj;
86   GEOM::GEOM_Object_var               myGroup;
87   
88   DlgRef_1Sel1List4Btn*               myGroupBox;
89 };
90
91 #endif // GROUPGUI_GROUPDLG_H