Salome HOME
0020428: EDF 906 GEOM : Performance for Group creation in GEOM
[modules/geom.git] / src / GroupGUI / GroupGUI_GroupDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, 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.
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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : GroupGUI_GroupDlg.h
24 // Author : Sergey ANIKIN, Open CASCADE S.A.S. (sergey.anikin@opencascade.com)
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, const bool isVisible=1);
90
91 private:
92   Mode                                myMode;
93   bool                                myBusy;
94   bool                                myIsShapeType;
95   GEOM::GEOM_Object_var               myMainObj;
96   GEOM::GEOM_Object_var               myGroup;
97   GEOM::GEOM_Object_var               myInPlaceObj;
98   int                                 myInPlaceObjSelectState;
99   TColStd_DataMapOfIntegerInteger     myMain2InPlaceIndices;
100
101   QPushButton*                        mySelBtn;
102   QLineEdit*                          myMainName;
103   QPushButton*                        mySelBtn2;
104   QLineEdit*                          myShape2Name;
105   QGroupBox*                          mySelectionWayGroupBox;
106   QButtonGroup*                       mySelectionWayGroup;
107   QPushButton*                        mySelAllBtn;
108   QPushButton*                        myAddBtn;
109   QPushButton*                        myRemBtn;
110   QListWidget*                        myIdList;
111 };
112
113 #endif