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