Salome HOME
GEOM: It should be forbidden creation of primitives with zero dimensions.
[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 class QButtonGroup;
42
43 //=================================================================================
44 // class    : GroupGUI_GroupDlg
45 // purpose  :
46 //=================================================================================
47 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
48 {
49     Q_OBJECT
50
51 public:
52     typedef enum {
53       CreateGroup,
54       EditGroup
55     } Mode;
56
57     GroupGUI_GroupDlg(Mode mode, GeometryGUI*, QWidget* parent = 0);
58     ~GroupGUI_GroupDlg();
59
60 protected:
61     // redefined from GEOMBase_Helper
62     virtual GEOM::GEOM_IOperations_ptr  createOperation();
63     virtual bool                        isValid( QString& msg );
64     virtual bool                        execute( ObjectList& objects );
65     virtual GEOM::GEOM_Object_ptr       getFather( GEOM::GEOM_Object_ptr theObj );
66
67     void                                closeEvent(QCloseEvent* e);
68
69 private slots:
70     void                                ClickOnOk();
71     bool                                ClickOnApply();
72     void                                ActivateThisDialog();
73     void                                LineEditReturnPressed();
74     void                                SelectionIntoArgument();
75     void                                SetEditCurrentArgument();
76     void                                ConstructorsClicked( int constructorId );
77
78     void                                selectAllSubShapes();
79     void                                add();
80     void                                remove();
81     void                                selectionChanged();
82
83 private:
84     void                                Init();
85     void                                enterEvent( QEvent* e );
86     int                                 getConstructorId() const;    
87     int                                 subSelectionWay() const;    
88     TopAbs_ShapeEnum                    getShapeType() const;
89     void                                setShapeType( const TopAbs_ShapeEnum );
90     void                                activateSelection();
91     void                                updateState();
92     void                                highlightSubShapes();
93     void                                onGetInPlace();
94     void                                setInPlaceObj( GEOM::GEOM_Object_var theObj );
95
96 private:
97   Mode                            myMode;
98   bool                            myBusy;
99   GEOM::GEOM_Object_var           myMainObj;
100   GEOM::GEOM_Object_var           myGroup;
101   GEOM::GEOM_Object_var           myInPlaceObj;
102   int                             myInPlaceObjSelectWay;
103   TColStd_DataMapOfIntegerInteger myMain2InPlaceIndices;
104
105   QPushButton*                    mySelBtn;
106   QLineEdit*                      myMainName;
107   QPushButton*                    mySelBtn2;
108   QLineEdit*                      myShape2Name;
109   QButtonGroup*                   mySelectionWayGroup;
110   QPushButton*                    mySelAllBtn;
111   QPushButton*                    myAddBtn;
112   QPushButton*                    myRemBtn;
113   QListBox*                       myIdList;
114 };
115
116 #endif