]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMESHGUI/SMESHGUI_GroupDlg.h
Salome HOME
7d39e4248ad3bc1901c0b930372b6d3337745aab
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_GroupDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 //
21 //
22 //
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 "LightApp_SelectionMgr.h"
32 //#include "SMESH_TypeFilter.hxx"
33 #include "SUIT_SelectionFilter.h"
34
35 // QT Includes
36 #include <qdialog.h>
37 #include <qvaluelist.h>
38
39 // IDL Headers
40 #include <SALOMEconfig.h>
41 #include CORBA_SERVER_HEADER(SMESH_Mesh)
42 #include CORBA_SERVER_HEADER(SMESH_Group)
43
44 class QLineEdit;
45 class QButtonGroup;
46 class QGroupBox;
47 class QListBox;
48 class QPopupMenu;
49 class QPushButton;
50 class QToolButton;
51 class QCheckBox;
52 class QWidgetStack;
53 class QtxIntSpinBox;
54 class SMESHGUI;
55 class SMESH_Actor;
56 class SMESHGUI_FilterDlg;
57 class SMESHGUI_ShapeByMeshOp;
58 class SUIT_Operation;
59 class SVTK_Selector;
60 class SVTK_ViewWindow;
61
62 //=================================================================================
63 // class    : SMESHGUI_GroupDlg
64 // purpose  :
65 //=================================================================================
66 class SMESHGUI_GroupDlg : public QDialog
67
68     Q_OBJECT
69
70 public:
71     SMESHGUI_GroupDlg( SMESHGUI*,
72                        const char* name = 0, 
73                        SMESH::SMESH_Mesh_ptr theMesh = SMESH::SMESH_Mesh::_nil(), 
74                        bool modal = FALSE, WFlags fl = 0 );
75     SMESHGUI_GroupDlg( SMESHGUI*,
76                        const char* name, 
77                        SMESH::SMESH_GroupBase_ptr theGroup,
78                        bool modal = FALSE, WFlags fl = 0 );
79     ~SMESHGUI_GroupDlg();
80
81     static QString GetDefaultName(const QString& theOperation);
82
83 public slots:
84
85     void onAdd();
86     void onRemove();
87
88
89 private slots:
90
91     void onTypeChanged(int id);
92     void onGrpTypeChanged(int id);
93
94     void onOK();
95     void onClose();
96     bool onApply();
97     void onHelp();
98     void onDeactivate();
99
100     void onListSelectionChanged();
101     void onObjectSelectionChanged();
102
103     void onSelectSubMesh(bool on);
104     void onSelectGroup(bool on);
105     void onSelectGeomGroup(bool on);
106     void onSelectColorGroup(bool on);
107     void setCurrentSelection();
108
109     void setFilters();
110     void onSort();
111
112     void onNameChanged(const QString& text);
113     void onNbColorsChanged(const QString& text);
114     void onFilterAccepted();
115
116     void onGeomPopup( int );
117     void onGeomSelectionButton( bool );
118
119     void onPublishShapeByMeshDlg(SUIT_Operation*);
120     void onCloseShapeByMeshDlg(SUIT_Operation*);
121
122 private:
123     void initDialog(bool create);
124     void init(SMESH::SMESH_Mesh_ptr theMesh);
125     void init(SMESH::SMESH_GroupBase_ptr theGroup);
126     void closeEvent(QCloseEvent* e);
127     void enterEvent (QEvent*);
128     void hideEvent (QHideEvent*);                          /* ESC key */
129     void keyPressEvent(QKeyEvent*);
130     void setSelectionMode(int theMode);
131     void updateButtons();
132     void updateGeomPopup();
133
134     SMESHGUI*                     mySMESHGUI;              /* Current SMESHGUI object */
135     LightApp_SelectionMgr*        mySelectionMgr;          /* User shape selection */
136     SMESH_Actor*                  myActor;                 /* Current mesh actor */
137     int                           myGrpTypeId; /* Current group type id : standalone or group on geometry */
138     int                           myTypeId;                /* Current type id = radio button id */
139     QLineEdit*                    myCurrentLineEdit;       /* Current  LineEdit */
140     SVTK_Selector*                mySelector;
141
142     QPushButton*                  myMeshGroupBtn;
143     QLineEdit*                    myMeshGroupLine;
144     
145     QButtonGroup*                 myTypeGroup;
146     QLineEdit*                    myName;
147     QString                       myOldName;
148
149     QButtonGroup*                 myGrpTypeGroup;
150
151     QWidgetStack*                 myWGStack;
152     QListBox*                     myElements;
153     QPushButton*                  myFilter;
154
155     QCheckBox*                    mySelectSubMesh;
156     QPushButton*                  mySubMeshBtn;
157     QLineEdit*                    mySubMeshLine;
158
159     QCheckBox*                    mySelectGroup;
160     QPushButton*                  myGroupBtn;
161     QLineEdit*                    myGroupLine;
162
163     QCheckBox*                    mySelectColorGroup;
164     QtxIntSpinBox*                myColorSpinBox;
165
166     QCheckBox*                    mySelectGeomGroup;
167     QToolButton*                  myGeomGroupBtn;
168     QLineEdit*                    myGeomGroupLine;
169     QPopupMenu*                   myGeomPopup;
170
171     SMESHGUI_ShapeByMeshOp*       myShapeByMeshOp;
172
173     SMESH::SMESH_Mesh_var         myMesh;
174     SMESH::SMESH_Group_var        myGroup;
175     SMESH::SMESH_GroupOnGeom_var  myGroupOnGeom;
176     QValueList<int>               myIdList;
177     GEOM::ListOfGO_var            myGeomObjects;
178
179     int                           mySelectionMode;
180     //Handle(SMESH_TypeFilter)      myMeshFilter;
181     //Handle(SMESH_TypeFilter)      mySubMeshFilter;
182     //Handle(SMESH_TypeFilter)      myGroupFilter;
183     SUIT_SelectionFilter*         myMeshFilter;
184     SUIT_SelectionFilter*         mySubMeshFilter;
185     SUIT_SelectionFilter*         myGroupFilter;
186     SUIT_SelectionFilter*         myGeomFilter;
187
188     SMESHGUI_FilterDlg*           myFilterDlg;
189
190     bool                          myCreate, myIsBusy;
191
192     QString                       myHelpFileName;
193 };
194
195 #endif // DIALOGBOX_GROUP_H