Salome HOME
Update copyright information
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_ConvToQuadOp.h
1 //  Copyright (C) 2007-2008  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
24 *
25 *  Copyright (C) 2005  CEA/DEN, EDF R&D
26 *
27 *
28 *
29 *  File   : SMESHGUI_ConvToQuadOp.h
30 *  Module : SMESHGUI
31 */
32
33 #ifndef SMESHGUI_ConvToQuadOp_H
34 #define SMESHGUI_ConvToQuadOp_H
35
36 #include <SMESHGUI_SelectionOp.h>
37 //#include <qstringlist.h>
38
39 #include <SALOMEconfig.h>
40 #include CORBA_SERVER_HEADER(SMESH_Mesh)
41
42 class SMESHGUI_ConvToQuadDlg;
43
44 class SMESHGUI_ConvToQuadOp : public SMESHGUI_SelectionOp
45
46   Q_OBJECT
47
48 public:      
49 enum MeshType{ Comp = 0, Linear, Quadratic };
50
51 public:
52   SMESHGUI_ConvToQuadOp();
53   virtual ~SMESHGUI_ConvToQuadOp();
54   
55   virtual LightApp_Dialog*       dlg() const;  
56
57 protected:
58   virtual void                   startOperation();
59   virtual void                   selectionDone();
60   virtual SUIT_SelectionFilter*  createFilter( const int ) const;
61   MeshType                       ConsistMesh( const SMESH::SMESH_Mesh_var& ) const;
62
63 protected slots:
64   virtual bool                   onApply();
65   void                           ConnectRadioButtons( int);
66
67 private:
68   SMESHGUI_ConvToQuadDlg*        myDlg;
69 };
70
71 #endif
72