]> SALOME platform Git repositories - modules/geom.git/blob - src/GroupGUI/GroupGUI_GroupDlg.h
Salome HOME
NPAL13408 GetInPlace in GUI functionnality
[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
35 class QGroupBox;
36 class QLineEdit;
37 class QListBox;
38
39 class QRadioButton;
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& msg );
62     virtual bool execute( ObjectList& objects );
63     virtual GEOM::GEOM_Object_ptr getFather( GEOM::GEOM_Object_ptr theObj );
64
65 private slots:
66     void                                ClickOnOk();
67     bool                                ClickOnApply();
68     void                                ActivateThisDialog();
69     void                                LineEditReturnPressed();
70     void                                SelectionIntoArgument();
71     void                                SetEditCurrentArgument();
72     void                                ConstructorsClicked( int constructorId );
73
74     void                                selectAllSubShapes();
75     void                                add();
76     void                                remove();
77     void                                selectionChanged();
78
79 private:
80     void                                Init();
81     void                                enterEvent( QEvent* e );
82     int                                 getConstructorId() const;    
83     TopAbs_ShapeEnum                    getShapeType() const;
84     void                                setShapeType( const TopAbs_ShapeEnum );
85     void                                activateSelection();
86     void                                updateState();
87     void                                highlightSubShapes();
88     void                                onGetInPlace();
89
90 private:
91     Mode                  myMode;
92     bool                  myBusy;
93     GEOM::GEOM_Object_var myMainObj;
94     GEOM::GEOM_Object_var myGroup;
95
96     QGroupBox*            GroupMedium;
97     QPushButton*          mySelBtn;
98     QLineEdit*            myMainName;
99     QPushButton*          mySelBtn2;
100     QLineEdit*            myShape2Name;
101     QRadioButton*         mySelSubBtn;
102     QCheckBox*            myPlaceCheckBox;
103     QPushButton*          mySelAllBtn;
104     QPushButton*          myAddBtn;
105     QPushButton*          myRemBtn;
106     QListBox*             myIdList;
107 };
108
109 #endif