]> SALOME platform Git repositories - modules/geom.git/blob - src/GroupGUI/GroupGUI_GroupDlg.h
Salome HOME
PAL14047 : Problem to select merged face with Create group window
[modules/geom.git] / src / GroupGUI / GroupGUI_GroupDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2004  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 //
24 //  File   : GroupGUI_GroupDlg.h
25 //  Author : Sergey ANIKIN
26 //  Module : GEOM
27
28 #ifndef GROUPGUI_GROUPDLG_H
29 #define GROUPGUI_GROUPDLG_H
30
31 #include "GEOMBase_Skeleton.h"
32 #include <qcheckbox.h>
33 #include <TopAbs_ShapeEnum.hxx>
34 #include <TColStd_DataMapOfIntegerInteger.hxx>
35
36 class QGroupBox;
37 class QLineEdit;
38 class QListBox;
39
40 class QRadioButton;
41
42 //=================================================================================
43 // class    : GroupGUI_GroupDlg
44 // purpose  :
45 //=================================================================================
46 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
47 {
48     Q_OBJECT
49
50 public:
51     typedef enum {
52       CreateGroup,
53       EditGroup
54     } Mode;
55
56     GroupGUI_GroupDlg(Mode mode, GeometryGUI*, QWidget* parent = 0);
57     ~GroupGUI_GroupDlg();
58
59 protected:
60     // redefined from GEOMBase_Helper
61     virtual GEOM::GEOM_IOperations_ptr  createOperation();
62     virtual bool                        isValid( QString& msg );
63     virtual bool                        execute( ObjectList& objects );
64     virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr theObj );
65
66     void                                closeEvent(QCloseEvent* e);
67
68 private slots:
69     void                                ClickOnOk();
70     bool                                ClickOnApply();
71     void                                ActivateThisDialog();
72     void                                LineEditReturnPressed();
73     void                                SelectionIntoArgument();
74     void                                SetEditCurrentArgument();
75     void                                ConstructorsClicked( int constructorId );
76
77     void                                selectAllSubShapes();
78     void                                add();
79     void                                remove();
80     void                                selectionChanged();
81
82 private:
83     void                                Init();
84     void                                enterEvent( QEvent* e );
85     int                                 getConstructorId() const;    
86     TopAbs_ShapeEnum                    getShapeType() const;
87     void                                setShapeType( const TopAbs_ShapeEnum );
88     void                                activateSelection();
89     void                                updateState();
90     void                                highlightSubShapes();
91     void                                onGetInPlace();
92     void                                setInPlaceObj( GEOM::GEOM_Object_var theObj );
93
94 private:
95   Mode                            myMode;
96   bool                            myBusy;
97   GEOM::GEOM_Object_var           myMainObj;
98   GEOM::GEOM_Object_var           myGroup;
99   GEOM::GEOM_Object_var           myInPlaceObj;
100   TColStd_DataMapOfIntegerInteger myMain2InPlaceIndices;
101
102   QPushButton*                    mySelBtn;
103   QLineEdit*                      myMainName;
104   QPushButton*                    mySelBtn2;
105   QLineEdit*                      myShape2Name;
106   QRadioButton*                   mySelSubBtn;
107   QCheckBox*                      myPlaceCheckBox;
108   QPushButton*                    mySelAllBtn;
109   QPushButton*                    myAddBtn;
110   QPushButton*                    myRemBtn;
111   QListBox*                       myIdList;
112 };
113
114 #endif