Salome HOME
NPAL 16561 correct corresponding names
[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
33 #include <TopAbs_ShapeEnum.hxx>
34
35 class QGroupBox;
36 class QLineEdit;
37 class QListBox;
38
39 //=================================================================================
40 // class    : GroupGUI_GroupDlg
41 // purpose  :
42 //=================================================================================
43 class GroupGUI_GroupDlg : public GEOMBase_Skeleton
44 {
45     Q_OBJECT
46
47 public:
48     typedef enum {
49       CreateGroup,
50       EditGroup
51     } Mode;
52
53     GroupGUI_GroupDlg(Mode mode, GeometryGUI*, QWidget* parent = 0);
54     ~GroupGUI_GroupDlg();
55
56 protected:
57     // redefined from GEOMBase_Helper
58     virtual GEOM::GEOM_IOperations_ptr createOperation();
59     virtual bool isValid( QString& msg );
60     virtual bool execute( ObjectList& objects );
61     virtual GEOM::GEOM_Object_ptr getFather( GEOM::GEOM_Object_ptr theObj );
62
63 private slots:
64     void                                ClickOnOk();
65     bool                                ClickOnApply();
66     void                                ActivateThisDialog();
67     void                                LineEditReturnPressed();
68     void                                SelectionIntoArgument();
69     void                                SetEditCurrentArgument();
70     void                                ConstructorsClicked( int constructorId );
71
72     void                                selectAllSubShapes();
73     void                                add();
74     void                                remove();
75     void                                selectionChanged();
76
77 private:
78     void                                Init();
79     void                                enterEvent( QEvent* e );
80     int                                 getConstructorId() const;    
81     TopAbs_ShapeEnum                    getShapeType() const;
82     void                                setShapeType( const TopAbs_ShapeEnum );
83     void                                activateSelection();
84     void                                updateState();
85     void                                highlightSubShapes();
86
87 private:
88     Mode                  myMode;
89     bool                  myBusy;
90     GEOM::GEOM_Object_var myMainObj;
91     GEOM::GEOM_Object_var myGroup;
92
93     QGroupBox*            GroupMedium;
94     QPushButton*          mySelBtn;
95     QLineEdit*            myMainName;
96     QPushButton*          mySelSubBtn;
97     QPushButton*          mySelAllBtn;
98     QPushButton*          myAddBtn;
99     QPushButton*          myRemBtn;
100     QListBox*             myIdList;
101 };
102
103 #endif