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