Salome HOME
0020715: Disparition of LineEditReturnPressed in GroupGUI_GroupDlg.cxx
[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                                SelectionIntoArgument();
71   void                                SetEditCurrentArgument();
72   void                                ConstructorsClicked( int );
73
74   void                                selectAllSubShapes();
75   void                                add();
76   void                                remove();
77   void                                showOnlySelected();
78   void                                selectionChanged();
79
80 private:
81   void                                Init();
82   void                                enterEvent( QEvent* );
83   int                                 subSelectionWay() const;
84   TopAbs_ShapeEnum                    getShapeType() const;
85   void                                setShapeType( const TopAbs_ShapeEnum );
86   void                                activateSelection();
87   void                                updateState(bool isAdd = false);
88   void                                highlightSubShapes();
89   void                                onGetInPlace();
90   void                                setInPlaceObj( GEOM::GEOM_Object_var, const bool isVisible=1);
91   int                                 getSelectedSubshapes (TColStd_IndexedMapOfInteger& theMapIndex);
92
93 private:
94   Mode                                myMode;
95   bool                                myBusy;
96   bool                                myIsShapeType;
97   GEOM::GEOM_Object_var               myMainObj;
98   GEOM::GEOM_Object_var               myGroup;
99   GEOM::GEOM_Object_var               myInPlaceObj;
100   int                                 myInPlaceObjSelectState;
101   TColStd_DataMapOfIntegerInteger     myMain2InPlaceIndices;
102
103   QPushButton*                        mySelBtn;
104   QLineEdit*                          myMainName;
105   QPushButton*                        mySelBtn2;
106   QLineEdit*                          myShape2Name;
107   QGroupBox*                          myRestrictGroupBox;
108   QButtonGroup*                       myRestrictGroup;
109   QPushButton*                        mySelAllBtn;
110   QPushButton*                        myAddBtn;
111   QPushButton*                        myRemBtn;
112   QPushButton*                        myShowOnlyBtn;
113   QPushButton*                        myHideSelBtn;
114   QPushButton*                        myShowAllBtn;
115   QListWidget*                        myIdList;
116 };
117
118 #endif