Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_CopyMeshDlg.h
1 // Copyright (C) 2007-2011  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_CopyMeshDlg.h
25 //
26 #ifndef SMESHGUI_CopyMeshDLG_H
27 #define SMESHGUI_CopyMeshDLG_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QDialog>
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QCheckBox;
40 class QGroupBox;
41 class QLabel;
42 class QLineEdit;
43 class QPushButton;
44
45 class SMESHGUI;
46 class SMESHGUI_IdValidator;
47 class SMESHGUI_FilterDlg;
48 class SMESH_Actor;
49 class SVTK_Selector;
50 class LightApp_SelectionMgr;
51 class SUIT_SelectionFilter;
52
53 //=================================================================================
54 // class    : SMESHGUI_CopyMeshDlg
55 // purpose  : copy some elements or a mesh object into a new mesh
56 //=================================================================================
57
58 class SMESHGUI_EXPORT SMESHGUI_CopyMeshDlg : public QDialog
59
60   Q_OBJECT
61
62 public:
63   SMESHGUI_CopyMeshDlg( SMESHGUI* );
64   ~SMESHGUI_CopyMeshDlg();
65
66 private:
67   void                   Init( bool = true );
68   void                   closeEvent( QCloseEvent* );
69   void                   enterEvent( QEvent* );           /* mouse enter the QWidget */
70   void                   hideEvent( QHideEvent* );        /* ESC key */
71   void                   keyPressEvent( QKeyEvent* );
72   int                    GetConstructorId();
73   void                   setNewMeshName();
74
75   bool                   isValid();
76
77   void                   setIsApplyAndClose( const bool theFlag );
78   bool                   isApplyAndClose() const;
79
80   SMESHGUI*              mySMESHGUI;              /* Current SMESHGUI object */
81   SMESHGUI_IdValidator*  myIdValidator;
82   LightApp_SelectionMgr* mySelectionMgr;          /* User shape selection */
83   int                    myNbOkElements;          /* to check when elements are defined */
84
85   SVTK_Selector*         mySelector;
86
87   bool                   myBusy;
88   SMESH::SMESH_Mesh_var  myMesh;
89   SMESH_Actor*           myActor;
90   SUIT_SelectionFilter*  myIdSourceFilter;
91
92   SMESH::SMESH_IDSource_var mySelectedObject;
93
94   QGroupBox*             ConstructorsBox;
95   QGroupBox*             GroupArguments;
96   QGroupBox*             GroupButtons;
97   
98   QPushButton*           buttonOk;
99   QPushButton*           buttonCancel;
100   QPushButton*           buttonApply;
101   QPushButton*           buttonHelp;
102
103   QLabel*                myTextLabelElements;
104   QLineEdit*             myLineEditElements;
105   QLineEdit*             myMeshNameEdit;
106   QCheckBox*             myIdSourceCheck;
107   QCheckBox*             myCopyGroupsCheck;
108   QCheckBox*             myKeepIdsCheck;
109
110   QPushButton*           myFilterBtn;
111   SMESHGUI_FilterDlg*    myFilterDlg;
112    
113   QString                myHelpFileName;
114
115   bool                   myIsApplyAndClose;
116
117 private slots:
118   void                   ClickOnOk();
119   void                   ClickOnCancel();
120   bool                   ClickOnApply();
121   void                   ClickOnHelp();
122   void                   SelectionIntoArgument();
123   void                   DeactivateActiveDialog();
124   void                   ActivateThisDialog();
125   void                   onTextChange( const QString& );
126   void                   onSelectIdSource( bool );
127   void                   setFilters();
128 };
129
130 #endif // SMESHGUI_CopyMeshDLG_H