Salome HOME
Remove bad implementation of "position" parameter for mesh elements causing SIGSEGV
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Make2DFrom3DOp.h
index 23bab5e615cc0e362b42d684c5128558cc7613a4..79ea60c423f18820df3b804c972f13ae560dd94d 100644 (file)
@@ -1,20 +1,20 @@
-//  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  This library is free software; you can redistribute it and/or
-//  modify it under the terms of the GNU Lesser General Public
-//  License as published by the Free Software Foundation; either
-//  version 2.1 of the License.
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
 //
-//  This library is distributed in the hope that it will be useful,
-//  but WITHOUT ANY WARRANTY; without even the implied warranty of
-//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-//  Lesser General Public License for more details.
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
 //
-//  You should have received a copy of the GNU Lesser General Public
-//  License along with this library; if not, write to the Free Software
-//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-//  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 // File   : SMESHGUI_Make2DFrom3D.h
 // Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
 #include "SMESH_SMESHGUI.hxx"
 #include "SMESHGUI_Dialog.h"
 #include "SMESHGUI_SelectionOp.h"
+#include "SMESH_TypeFilter.hxx"
 
 #include <SALOMEconfig.h>
 #include CORBA_SERVER_HEADER(SMESH_MeshEditor)
+#include CORBA_SERVER_HEADER(SMESH_Mesh)
 
 class QCheckBox;
 class QLineEdit;
 class QRadioButton;
+class SMESHGUI_Make2DFrom3DOp;
 
 /*!
  * \brief Dialog to show result mesh statistic
@@ -43,7 +46,7 @@ class SMESHGUI_EXPORT SMESHGUI_Make2DFrom3DDlg :  public SMESHGUI_Dialog
   Q_OBJECT
 
 public:
-  enum { Mesh };
+  enum { MeshOrGroups };
 
   SMESHGUI_Make2DFrom3DDlg( QWidget* );
   virtual ~SMESHGUI_Make2DFrom3DDlg();
@@ -53,13 +56,14 @@ public:
   bool                 needNewMesh() const;
   QString              getNewMeshName() const;
   void                 setNewMeshName( const QString& );
+  void                 setNewMeshEnabled( bool );
+  bool                 getNewMeshEnabled() const;
 
   bool                 needGroup() const;
   QString              getGroupName() const;
   void                 setGroupName( const QString& );
 
   bool                 copySource() const;
-  bool                 copyMissingOnly() const;
 
 private slots:
   void                 onTargetChanged();
@@ -73,9 +77,10 @@ private:
   QRadioButton* myNewMeshRB;
   QLineEdit*    myMeshName;
   QCheckBox*    myCopyCheck;
-  QCheckBox*    myMissingCheck;
   QCheckBox*    myGroupCheck;
   QLineEdit*    myGroupName;
+
+  friend class SMESHGUI_Make2DFrom3DOp;
 };
 
 /*!
@@ -100,13 +105,17 @@ protected:
 
 protected slots:
   virtual bool                       onApply();
+  void                               onModeChanged();
 
 private:
-  bool                               compute2DMesh();
+  bool                               compute2DMesh( QStringList& );
 
 private:
-  SMESH::SMESH_IDSource_var          mySrc;
+  SMESH::SMESH_Mesh_var              mySrcMesh;
   QPointer<SMESHGUI_Make2DFrom3DDlg> myDlg;
+
+  SMESH_TypeFilter                   myMeshFilter;
+  SMESH_TypeFilter                   myGroupFilter;
 };
 
 #endif // SMESHGUI_Make2DFrom3DOp_H