Salome HOME
Revert "Synchronize adm files"
[modules/geom.git] / src / GroupGUI / GroupGUI_GroupDlg.h
1 // Copyright (C) 2007-2014  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, or (at your option) any later version.
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
85   int                                 subSelectionWay() const;
86   TopAbs_ShapeEnum                    getShapeType() const;
87   void                                setShapeType (const TopAbs_ShapeEnum);
88   void                                activateSelection();
89   void                                updateState (bool isAdd = false);
90   void                                highlightSubShapes();
91   void                                onGetInPlace();
92   void                                setInPlaceObj (GEOM::GEOM_Object_var, const bool isVisible=1);
93   int                                 getSelectedSubshapes (TColStd_IndexedMapOfInteger& theMapIndex);
94
95 private:
96   Mode                                myMode;
97   bool                                myBusy;
98   bool                                myIsShapeType;
99   bool                                myIsHiddenMain;
100   bool                                myWasHiddenMain;
101   GEOM::GEOM_Object_var               myMainObj;
102   GEOM::GEOM_Object_var               myGroup;
103   GEOM::GEOM_Object_var               myInPlaceObj;
104   int                                 myInPlaceObjSelectState;
105   TColStd_DataMapOfIntegerInteger     myMain2InPlaceIndices;
106   QList<int>                          myGroupIdList;
107   int                                 myDmMode;
108
109   QPushButton*                        mySelBtn;
110   QLineEdit*                          myMainName;
111   QPushButton*                        mySelBtn2;
112   QLineEdit*                          myShape2Name;
113   QGroupBox*                          myRestrictGroupBox;
114   QButtonGroup*                       myRestrictGroup;
115   QPushButton*                        mySelAllBtn;
116   QPushButton*                        myAddBtn;
117   QPushButton*                        myRemBtn;
118   QPushButton*                        myShowOnlyBtn;
119   QPushButton*                        myHideSelBtn;
120   QPushButton*                        myShowAllBtn;
121   QListWidget*                        myIdList;
122 };
123
124 #endif