Salome HOME
correct previous integration (Porting to Python 2.6)
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Make2DFrom3DOp.h
1 //  Copyright (C) 2007-2009  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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_Make2DFrom3D.h
24 // Author : Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_Make2DFrom3DOp_H
27 #define SMESHGUI_Make2DFrom3DOp_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 #include "SMESHGUI_Dialog.h"
33 #include "SMESHGUI_Operation.h"
34
35 // IDL includes
36 #include <SALOMEconfig.h>
37 #include CORBA_SERVER_HEADER(SMESH_Mesh)
38
39 class QFrame;
40 class SMESHGUI_MeshInfosBox;
41
42 /*!
43  * \brief Dialog to show result mesh statistic
44  */
45
46 class SMESHGUI_Make2DFrom3DDlg :  public SMESHGUI_Dialog
47 {
48   Q_OBJECT
49
50  public:
51   SMESHGUI_Make2DFrom3DDlg( QWidget* );
52   virtual ~SMESHGUI_Make2DFrom3DDlg();
53
54   void                   SetMeshName(const QString& theName);
55   void                   SetMeshInfo(const SMESH::long_array& theInfo);
56
57  private:
58   QFrame*                createMainFrame( QWidget* );
59
60  private:
61   QLabel*                myMeshName;
62   SMESHGUI_MeshInfosBox* myFullInfo;
63 };
64
65
66 /*!
67  * \brief Operation to compute 2D mesh on 3D
68  */
69
70 class SMESHGUI_Make2DFrom3DOp : public SMESHGUI_Operation
71 {
72  public:
73   SMESHGUI_Make2DFrom3DOp();
74   virtual ~SMESHGUI_Make2DFrom3DOp();
75
76  protected:
77   virtual void                       startOperation();
78
79  private:
80   bool                               compute2DMesh();
81
82  private:
83   SMESH::SMESH_Mesh_var              myMesh;
84   QPointer<SMESHGUI_Make2DFrom3DDlg> myDlg;
85 };
86
87 #endif // SMESHGUI_Make2DFrom3DOp_H