Salome HOME
Merge from V5_1_4_BR 07/05/2010
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_BuildCompoundDlg.h
1 //  Copyright (C) 2007-2010  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
23 // SMESH SMESHGUI : GUI for SMESH component
24 // File   : SMESHGUI_BuildCompoundDlg.h
25 // Author : Alexander KOVALEV, Open CASCADE S.A.S.
26 //
27 #ifndef SMESHGUI_BUILDCOMPOUNDDLG_H
28 #define SMESHGUI_BUILDCOMPOUNDDLG_H
29
30 // SMESH includes
31 #include "SMESH_SMESHGUI.hxx"
32
33 // Qt includes
34 #include <QDialog>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Gen)
39 #include CORBA_SERVER_HEADER(SMESH_Mesh)
40
41 class QGroupBox;
42 class QLabel;
43 class QLineEdit;
44 class QPushButton;
45 class QRadioButton;
46 class QCheckBox;
47 class QComboBox;
48 class SMESHGUI;
49 class SMESHGUI_SpinBox;
50 class LightApp_SelectionMgr;
51 class SUIT_SelectionFilter;
52
53 //=================================================================================
54 // class    : SMESHGUI_BuildCompoundDlg
55 // purpose  :
56 //=================================================================================
57 class SMESHGUI_EXPORT SMESHGUI_BuildCompoundDlg : public QDialog
58 {
59   Q_OBJECT;
60
61 public:
62
63   SMESHGUI_BuildCompoundDlg( SMESHGUI* );
64   ~SMESHGUI_BuildCompoundDlg();
65
66 public:
67   static QString          GetDefaultName( const QString& );
68
69 private:
70   void                    Init();
71   void                    closeEvent( QCloseEvent* );
72   void                    enterEvent( QEvent* );             /* mouse enter the QWidget */
73   void                    hideEvent( QHideEvent* );          /* ESC key */
74   void                    keyPressEvent( QKeyEvent* );
75
76   bool                    isValid();
77   
78 private:
79   SMESHGUI*               mySMESHGUI;     /* Current SMESHGUI object */
80   LightApp_SelectionMgr*  mySelectionMgr; /* User shape selection */
81
82   SMESH::SMESH_Mesh_var   myMesh;
83   SUIT_SelectionFilter*   myMeshFilter;
84   SMESH::mesh_array_var   myMeshArray;
85
86   // Widgets
87   QGroupBox*              GroupConstructors;
88   QRadioButton*           Constructor1;
89
90   QGroupBox*              GroupButtons;
91   QPushButton*            buttonOk;
92   QPushButton*            buttonCancel;
93   QPushButton*            buttonApply;
94   QPushButton*            buttonHelp;
95
96   QGroupBox*              GroupName;
97   QLabel*                 TextLabelName;
98   QLineEdit*              LineEditName;
99
100   QGroupBox*              GroupArgs;
101   QLabel*                 TextLabelMeshes;
102   QPushButton*            SelectButton;
103   QLineEdit*              LineEditMeshes;
104   QLabel*                 TextLabelUnion;
105   QComboBox*              ComboBoxUnion;
106   QCheckBox*              CheckBoxCommon;
107   QCheckBox*              CheckBoxMerge;
108   QLabel*                 TextLabelTol;
109   SMESHGUI_SpinBox*       SpinBoxTol;
110
111   QString                 myHelpFileName;
112
113 private slots:
114   void                    ClickOnOk();
115   void                    ClickOnCancel();
116   bool                    ClickOnApply();
117   void                    ClickOnHelp();
118   void                    SelectionIntoArgument();
119   void                    DeactivateActiveDialog();
120   void                    ActivateThisDialog();
121   void                    onSelectMerge( bool );
122 };
123
124 #endif // SMESHGUI_BUILDCOMPOUNDDLG_H