Salome HOME
Merge remote-tracking branch 'origin/master' into V8_5_BR
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MergeDlg.h
1 // Copyright (C) 2007-2016  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, or (at your option) any later version.
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 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_MergeDlg.h
25 // Author : Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_MergeDlg_H
28 #define SMESHGUI_MergeDlg_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // OCCT includes
37 #include <gp_XYZ.hxx>
38 #include <TColStd_MapOfInteger.hxx>
39
40 // STL includes
41 #include <list>
42 #include <vector>
43
44 // IDL includes
45 #include <SALOMEconfig.h>
46 #include CORBA_SERVER_HEADER(SMESH_Mesh)
47
48 class LightApp_SelectionMgr;
49 class QButtonGroup;
50 class QCheckBox;
51 class QGroupBox;
52 class QLabel;
53 class QLineEdit;
54 class QListWidget;
55 class QPushButton;
56 class QRadioButton;
57 class SMESHGUI;
58 class SMESHGUI_IdPreview;
59 class SMESHGUI_SpinBox;
60 class SMESH_Actor;
61 class SUIT_SelectionFilter;
62 class SVTK_Selector;
63
64 namespace SMESH
65 {
66   struct TIdPreview;
67 }
68
69 //=================================================================================
70 // class    : SMESHGUI_MergeDlg
71 // purpose  : 
72 //=================================================================================
73 class SMESHGUI_EXPORT SMESHGUI_MergeDlg : public QDialog
74 {
75   Q_OBJECT;
76
77 public:
78   SMESHGUI_MergeDlg( SMESHGUI*, int );
79   ~SMESHGUI_MergeDlg();
80
81   static QPixmap IconFirst();
82
83 private:
84   void                      Init();
85   void                      enterEvent( QEvent* );              /* mouse enter the QWidget */
86   void                      keyPressEvent( QKeyEvent* );
87   void                      onEditGroup();
88   bool                      isKeepNodesIDsSelection();
89   bool                      isNewKeepNodesGroup( const char* entry );
90
91   void                      FindGravityCenter( TColStd_MapOfInteger&,
92                                                std::vector<int>& , 
93                                                std::list<gp_XYZ>& );
94   // add the centers of gravity of ElemsIdMap elements to the GrCentersXYZ list
95
96 private:
97   typedef QList<SMESH::SMESH_GroupBase_var> GrpList;
98
99   SMESHGUI*                 mySMESHGUI;     /* Current SMESHGUI object */
100   LightApp_SelectionMgr*    mySelectionMgr; /* User shape selection */
101   SVTK_Selector*            mySelector;
102   
103   QWidget*                  myEditCurrentArgument;
104
105   SMESH::SMESH_Mesh_var     myMesh;
106   SMESH::SMESH_IDSource_var mySubMeshOrGroup;
107   SMESH_Actor*              myActor;
108   SUIT_SelectionFilter*     myMeshOrSubMeshOrGroupFilter;
109   SUIT_SelectionFilter*     mySubMeshOrGroupFilter;
110
111   SMESHGUI_IdPreview*       myIdPreview;
112
113   int                       myAction;
114   bool                      myIsBusy;
115   int                       myTypeId; // manual(1) or automatic(0)
116
117   // Widgets
118
119   QGroupBox*                GroupButtons;
120   QPushButton*              buttonOk;
121   QPushButton*              buttonCancel;
122   QPushButton*              buttonApply;
123   QPushButton*              buttonHelp;
124
125   QGroupBox*                GroupMesh;
126   QLabel*                   TextLabelName;
127   QPushButton*              SelectMeshButton;
128   QLineEdit*                LineEditMesh;
129
130   QWidget*                  NodeSpecWidget;
131   SMESHGUI_SpinBox*         SpinBoxTolerance;
132   QCheckBox*                SeparateCornersAndMedium;
133   QCheckBox*                AvoidMakingHoles;
134
135   QGroupBox*                GroupCoincident;
136   //QWidget*                  GroupCoincidentWidget;
137   QPushButton*              DetectButton;
138   QListWidget*              ListCoincident;
139   QPushButton*              AddGroupButton;
140   QPushButton*              RemoveGroupButton;
141   QCheckBox*                SelectAllCB;
142   QCheckBox*                ShowIDs;
143
144   QGroupBox*                GroupEdit;
145   QListWidget*              ListEdit;
146   QPushButton*              AddElemButton;
147   QPushButton*              RemoveElemButton;
148   QPushButton*              SetFirstButton;
149
150   QGroupBox*                GroupExclude;
151   QListWidget*              ListExclude;
152
153   QGroupBox*                GroupKeep;
154   QButtonGroup*             KeepFromButGroup;
155   QPushButton*              SelectKeepNodesButton;
156   QPushButton*              AddKeepNodesButton;
157   QPushButton*              RemoveKeepNodesButton;
158   QListWidget*              KeepList;
159
160   QGroupBox*                TypeBox;
161   QButtonGroup*             GroupType;
162     
163   QString                   myHelpFileName;
164
165   QString                   myEntry;
166   GrpList                   myGroups;
167
168 protected slots:
169   virtual void              reject();
170
171  private slots:
172   void                      ClickOnOk();
173   bool                      ClickOnApply();
174   void                      ClickOnHelp();
175   void                      updateControls();
176   void                      onDetect();
177   void                      onAddKeepNode();
178   void                      onRemoveKeepNode();
179   void                      onSelectKeepNode();
180   void                      onKeepNodeSourceChanged(int);
181   void                      onAddGroup();
182   void                      onRemoveGroup();
183   void                      onSelectGroup();
184   void                      onSelectAll( bool );
185   void                      onSelectElementFromGroup();
186   void                      onAddElement();
187   void                      onRemoveElement();
188   void                      onSetFirst();
189   void                      SetEditCurrentArgument();
190   void                      SelectionIntoArgument();
191   void                      DeactivateActiveDialog();
192   void                      ActivateThisDialog();
193   void                      onTypeChanged(int);
194   void                      onOpenView();
195   void                      onCloseView();
196 };
197
198 #endif // SMESHGUI_MergeDlg_H