Salome HOME
fix PAL8469. Updating the global mesh icon when local hypotheses are edited
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_MergeNodesDlg.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_MergeNodesDlg.h
25 //  Author : Michael ZORIN
26 //  Module : SMESH
27 //  $Header: 
28
29 #ifndef DIALOGBOX_MERGENODES_H
30 #define DIALOGBOX_MERGENODES_H
31
32 #include "SALOME_Selection.h"
33 #include "SMESH_TypeFilter.hxx"
34
35 // QT Includes
36 #include <qdialog.h>
37
38 class QGridLayout; 
39 class QButtonGroup;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44 class QRadioButton;
45 class QCheckBox;
46 class QListView;
47 class QListViewItem;
48 class QListBox;
49 class SMESHGUI;
50 class SMESHGUI_SpinBox;
51 class SMESH_Actor;
52
53 // IDL Headers
54 #include <SALOMEconfig.h>
55 #include CORBA_SERVER_HEADER(SMESH_Mesh)
56
57
58 //=================================================================================
59 // class    : SMESHGUI_MergeNodesDlg
60 // purpose  :
61 //=================================================================================
62 class SMESHGUI_MergeNodesDlg : public QDialog
63
64     Q_OBJECT
65
66 public:
67     SMESHGUI_MergeNodesDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
68     ~SMESHGUI_MergeNodesDlg();
69
70 private:
71
72     void Init() ;
73     void closeEvent( QCloseEvent* e ) ;
74     void enterEvent ( QEvent * ) ;                          /* mouse enter the QWidget */
75     void hideEvent ( QHideEvent * );                        /* ESC key */
76     void onEditNodesGroup();
77     
78     SMESHGUI*                     mySMESHGUI ;              /* Current SMESHGUI object */
79     SALOME_Selection*             mySelection ;             /* User shape selection */
80         
81     QWidget*                      myEditCurrentArgument;
82
83     SMESH::SMESH_Mesh_var         myMesh;
84     SMESH_Actor*                  myActor;
85     Handle(SMESH_TypeFilter)      myMeshOrSubMeshFilter;
86  
87     QButtonGroup*     GroupConstructors;
88     QRadioButton*     RadioButton1;
89     QGroupBox*        GroupButtons;
90     QPushButton*      buttonOk;
91     QPushButton*      buttonCancel;
92     QPushButton*      buttonApply;
93     QGroupBox*        GroupMesh;
94     QGroupBox*        GroupCoincident;
95     QGroupBox*        GroupEdit;
96     QLabel*           TextLabelName;
97     QLabel*           TextLabelTolerance;
98     QLineEdit*        LineEditMesh;
99     QPushButton*      SelectMeshButton;
100     QPushButton*      DetectButton;
101     QPushButton*      AddButton;
102     QPushButton*      RemoveButton;
103     QCheckBox*        SelectAllCB;
104     QListView*        ListCoincident;
105     QListBox*         ListEdit;
106     SMESHGUI_SpinBox* SpinBoxTolerance;
107    
108 private slots:
109
110     void ClickOnOk();
111     void ClickOnCancel();
112     bool ClickOnApply();
113     void updateControls();
114     void onDetect();
115     void onSelectNodesGroup();
116     void onSelectAll(bool isToggled);
117     void onSelectNodesFromGroup();
118     void onAdd();
119     void onRemove();
120     void SetEditCurrentArgument();
121     void SelectionIntoArgument() ;
122     void DeactivateActiveDialog() ;
123     void ActivateThisDialog() ;
124     
125 protected:
126     QGridLayout* SMESHGUI_MergeNodesDlgLayout;
127     QGridLayout* GroupConstructorsLayout;
128     QGridLayout* GroupButtonsLayout;
129     QGridLayout* GroupMeshLayout;
130     QGridLayout* GroupCoincidentLayout;
131     QGridLayout* GroupEditLayout;
132 };
133
134 #endif // DIALOGBOX_MERGENODES_H