Salome HOME
untabify
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupDlg.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 //  SMESH SMESHGUI : GUI for SMESH component
23 //  File   : SMESHGUI_GroupDlg.h
24 //  Author : Natalia KOPNOVA
25 //  Module : SMESH
26 //  $Header$
27 //
28 #ifndef DIALOGBOX_GROUP_H
29 #define DIALOGBOX_GROUP_H
30
31 #include "SMESH_SMESHGUI.hxx"
32
33 #include "LightApp_SelectionMgr.h"
34 //#include "SMESH_TypeFilter.hxx"
35 #include "SUIT_SelectionFilter.h"
36
37 // QT Includes
38 #include <qdialog.h>
39 #include <qvaluelist.h>
40
41 // IDL Headers
42 #include <SALOMEconfig.h>
43 #include CORBA_SERVER_HEADER(SMESH_Mesh)
44 #include CORBA_SERVER_HEADER(SMESH_Group)
45
46 class QLineEdit;
47 class QButtonGroup;
48 class QGroupBox;
49 class QListBox;
50 class QPopupMenu;
51 class QPushButton;
52 class QToolButton;
53 class QCheckBox;
54 class QWidgetStack;
55 class QtxIntSpinBox;
56 class SMESHGUI;
57 class SMESH_Actor;
58 class SMESHGUI_FilterDlg;
59 class SMESHGUI_ShapeByMeshOp;
60 class SUIT_Operation;
61 class SVTK_Selector;
62 class SVTK_ViewWindow;
63
64 //=================================================================================
65 // class    : SMESHGUI_GroupDlg
66 // purpose  :
67 //=================================================================================
68 class SMESHGUI_EXPORT SMESHGUI_GroupDlg : public QDialog
69
70     Q_OBJECT
71
72 public:
73     SMESHGUI_GroupDlg( SMESHGUI*,
74                        const char* name = 0, 
75                        SMESH::SMESH_Mesh_ptr theMesh = SMESH::SMESH_Mesh::_nil(), 
76                        bool modal = FALSE, WFlags fl = 0 );
77     SMESHGUI_GroupDlg( SMESHGUI*,
78                        const char* name, 
79                        SMESH::SMESH_GroupBase_ptr theGroup,
80                        bool modal = FALSE, WFlags fl = 0 );
81     ~SMESHGUI_GroupDlg();
82
83     static QString GetDefaultName(const QString& theOperation);
84
85 public slots:
86
87     void onAdd();
88     void onRemove();
89
90
91 private slots:
92
93     void onTypeChanged(int id);
94     void onGrpTypeChanged(int id);
95
96     void onOK();
97     void onClose();
98     bool onApply();
99     void onHelp();
100     void onDeactivate();
101     void onVisibilityChanged();
102
103     void onListSelectionChanged();
104     void onObjectSelectionChanged();
105
106     void onSelectSubMesh(bool on);
107     void onSelectGroup(bool on);
108     void onSelectGeomGroup(bool on);
109     void setCurrentSelection();
110
111     void setFilters();
112     void onSort();
113
114     void onNameChanged(const QString& text);
115     void onFilterAccepted();
116
117     void onSelectColor();
118
119     void onGeomPopup( int );
120     void onGeomSelectionButton( bool );
121
122     void onPublishShapeByMeshDlg(SUIT_Operation*);
123     void onCloseShapeByMeshDlg(SUIT_Operation*);
124
125 private:
126     void initDialog(bool create);
127     void init(SMESH::SMESH_Mesh_ptr theMesh);
128     void init(SMESH::SMESH_GroupBase_ptr theGroup);
129     void closeEvent(QCloseEvent* e);
130     void enterEvent (QEvent*);
131     void hideEvent (QHideEvent*);                          /* ESC key */
132     void keyPressEvent(QKeyEvent*);
133     void setSelectionMode(int theMode);
134     void updateButtons();
135     void updateGeomPopup();
136     bool SetAppropriateActor();
137     void setShowEntityMode();
138     void restoreShowEntityMode();
139
140     void                          setGroupColor( const SALOMEDS::Color& );
141     SALOMEDS::Color               getGroupColor() const;
142
143     void                          setGroupQColor( const QColor& );
144     QColor                        getGroupQColor() const;
145
146     void                          setDefaultGroupColor();
147
148     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
149     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
150     int                           myGrpTypeId; /* Current group type id : standalone or group on geometry */
151     int                           myTypeId;                /* Current type id = radio button id */
152     int                           myStoredShownEntity;     /* Store ShowEntity mode of myMesh */
153     QLineEdit*                    myCurrentLineEdit;       /* Current  LineEdit */
154     SVTK_Selector*                mySelector;
155
156     QPushButton*                  myMeshGroupBtn;
157     QLineEdit*                    myMeshGroupLine;
158     
159     QButtonGroup*                 myTypeGroup;
160     QLineEdit*                    myName;
161     QString                       myOldName;
162
163     QButtonGroup*                 myGrpTypeGroup;
164
165     QWidgetStack*                 myWGStack;
166     QListBox*                     myElements;
167     QPushButton*                  myFilter;
168
169     QCheckBox*                    mySelectSubMesh;
170     QPushButton*                  mySubMeshBtn;
171     QLineEdit*                    mySubMeshLine;
172
173     QCheckBox*                    mySelectGroup;
174     QPushButton*                  myGroupBtn;
175     QLineEdit*                    myGroupLine;
176
177     QPushButton*                  myColorBtn;
178
179     QCheckBox*                    mySelectGeomGroup;
180     QToolButton*                  myGeomGroupBtn;
181     QLineEdit*                    myGeomGroupLine;
182     QPopupMenu*                   myGeomPopup;
183
184     SMESHGUI_ShapeByMeshOp*       myShapeByMeshOp;
185
186     SMESH::SMESH_Mesh_var         myMesh;
187     QPtrList<SMESH_Actor>           myActorsList;
188     SMESH::SMESH_Group_var        myGroup;
189     SMESH::SMESH_GroupOnGeom_var  myGroupOnGeom;
190     QValueList<int>               myIdList;
191     GEOM::ListOfGO_var            myGeomObjects;
192
193     int                           mySelectionMode;
194     //Handle(SMESH_TypeFilter)      myMeshFilter;
195     //Handle(SMESH_TypeFilter)      mySubMeshFilter;
196     //Handle(SMESH_TypeFilter)      myGroupFilter;
197     SUIT_SelectionFilter*         myMeshFilter;
198     SUIT_SelectionFilter*         mySubMeshFilter;
199     SUIT_SelectionFilter*         myGroupFilter;
200     SUIT_SelectionFilter*         myGeomFilter;
201
202     SMESHGUI_FilterDlg*           myFilterDlg;
203
204     bool                          myCreate, myIsBusy;
205
206     QString                       myHelpFileName;
207
208     bool                          myNameChanged; //added by skl for IPAL19574
209 };
210
211 #endif // DIALOGBOX_GROUP_H