]> SALOME platform Git repositories - modules/geom.git/blob - src/GroupGUI/GroupGUI_GroupDlg.h
Salome HOME
fcee5bde7337fca0ed507ba8ea7196949d3707af
[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 #include <TColStd_IndexedMapOfInteger.hxx>
34
35 class QGroupBox;
36 class QLineEdit;
37 class QListWidget;
38 class QButtonGroup;
39
40 //=================================================================================
41 // class    : GroupGUI_GroupDlg
42 // purpose  :
43 //=================================================================================
44 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
45 {
46   Q_OBJECT
47
48 public:
49   typedef enum {
50     CreateGroup,
51     EditGroup
52   } Mode;
53
54   GroupGUI_GroupDlg( Mode mode, GeometryGUI*, QWidget* parent = 0 );
55   ~GroupGUI_GroupDlg();
56
57 protected:
58   // redefined from GEOMBase_Helper
59   virtual GEOM::GEOM_IOperations_ptr  createOperation();
60   virtual bool                        isValid( QString& );
61   virtual bool                        execute( ObjectList& );
62   virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr );
63
64   void                                closeEvent( QCloseEvent* );
65
66 private slots:
67   void                                ClickOnOk();
68   bool                                ClickOnApply();
69   void                                ActivateThisDialog();
70   void                                LineEditReturnPressed();
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