Salome HOME
Fix bug 12796: Warning missed for the bad file 'test18.med'
[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.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 "LightApp_SelectionMgr.h"
33 //#include "SMESH_TypeFilter.hxx"
34 #include "SUIT_SelectionFilter.h"
35
36 // QT Includes
37 #include <qdialog.h>
38
39 class QGridLayout; 
40 class QButtonGroup;
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class QListView;
48 class QListViewItem;
49 class QListBox;
50 class SMESHGUI;
51 class SMESHGUI_SpinBox;
52 class SMESH_Actor;
53 class SVTK_ViewWindow;
54 class SVTK_Selector;
55
56
57 // IDL Headers
58 #include <SALOMEconfig.h>
59 #include CORBA_SERVER_HEADER(SMESH_Mesh)
60
61
62 //=================================================================================
63 // class    : SMESHGUI_MergeNodesDlg
64 // purpose  :
65 //=================================================================================
66 class SMESHGUI_MergeNodesDlg : public QDialog
67
68     Q_OBJECT
69
70 public:
71     SMESHGUI_MergeNodesDlg( SMESHGUI*,
72                             const char* name = 0,
73                             bool modal = FALSE,
74                             WFlags fl = 0);
75     ~SMESHGUI_MergeNodesDlg();
76
77 private:
78     void Init();
79     void closeEvent( QCloseEvent* e );
80     void enterEvent ( QEvent * );                           /* mouse enter the QWidget */
81     void hideEvent ( QHideEvent * );                        /* ESC key */
82     void keyPressEvent( QKeyEvent* e );
83     void onEditNodesGroup();
84
85     SMESHGUI*                     mySMESHGUI;               /* Current SMESHGUI object */
86     LightApp_SelectionMgr*        mySelectionMgr;           /* User shape selection */
87     SVTK_Selector*                mySelector;
88
89     QWidget*                      myEditCurrentArgument;
90
91     SMESH::SMESH_Mesh_var         myMesh;
92     SMESH_Actor*                  myActor;
93     //Handle(SMESH_TypeFilter)      myMeshOrSubMeshFilter;
94     SUIT_SelectionFilter*         myMeshOrSubMeshFilter;
95
96     QButtonGroup*     GroupConstructors;
97     QRadioButton*     RadioButton1;
98     QGroupBox*        GroupButtons;
99     QPushButton*      buttonOk;
100     QPushButton*      buttonCancel;
101     QPushButton*      buttonApply;
102     QPushButton*      buttonHelp;
103     QGroupBox*        GroupMesh;
104     QGroupBox*        GroupCoincident;
105     QGroupBox*        GroupEdit;
106     QLabel*           TextLabelName;
107     QLabel*           TextLabelTolerance;
108     QLineEdit*        LineEditMesh;
109     QPushButton*      SelectMeshButton;
110     QPushButton*      DetectButton;
111     QPushButton*      AddButton;
112     QPushButton*      RemoveButton;
113     QCheckBox*        SelectAllCB;
114     QListView*        ListCoincident;
115     QListBox*         ListEdit;
116     SMESHGUI_SpinBox* SpinBoxTolerance;
117
118     QString           myHelpFileName;
119    
120 private slots:
121
122     void ClickOnOk();
123     void ClickOnCancel();
124     bool ClickOnApply();
125     void ClickOnHelp();
126     void updateControls();
127     void onDetect();
128     void onSelectNodesGroup();
129     void onSelectAll(bool isToggled);
130     void onSelectNodesFromGroup();
131     void onAdd();
132     void onRemove();
133     void SetEditCurrentArgument();
134     void SelectionIntoArgument() ;
135     void DeactivateActiveDialog() ;
136     void ActivateThisDialog() ;
137     
138 protected:
139     QGridLayout* SMESHGUI_MergeNodesDlgLayout;
140     QGridLayout* GroupConstructorsLayout;
141     QGridLayout* GroupButtonsLayout;
142     QGridLayout* GroupMeshLayout;
143     QGridLayout* GroupCoincidentLayout;
144     QGridLayout* GroupEditLayout;
145 };
146
147 #endif // DIALOGBOX_MERGENODES_H