Salome HOME
Fix a bug that NbShapes() and ShapeInfo() return 2 solids for a box
[modules/geom.git] / src / BuildGUI / BuildGUI_ShellDlg.h
index 87f3d428ec9ffb3f47da06a8683495558a462895..ed963ee09a62f48197821b781d0889b863215c41 100644 (file)
@@ -1,40 +1,36 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
-// 
-//  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. 
-// 
-//  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
+// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
 //
+// 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.
+//
+// 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
 //
-//  File   : BuildGUI_ShellDlg.h
-//  Author : Damien COQUERET
-//  Module : GEOM
-//  $Header: 
 
-#ifndef DIALOGBOX_SHELL_H
-#define DIALOGBOX_SHELL_H
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : BuildGUI_ShellDlg.h
+// Author : Damien COQUERET, Open CASCADE S.A.S.
+//
+#ifndef BUILDGUI_SHELLDLG_H
+#define BUILDGUI_SHELLDLG_H
 
 #include "GEOMBase_Skeleton.h"
-#include "DlgRef_1Sel_QTD.h"
+#include "GEOM_GenericObjPtr.h"
 
-#include "BuildGUI.h"
-
-#include "GEOM_FaceFilter.hxx"
+class DlgRef_1Sel;
 
 //=================================================================================
 // class    : BuildGUI_ShellDlg
 //=================================================================================
 class BuildGUI_ShellDlg : public GEOMBase_Skeleton
 { 
-    Q_OBJECT
+  Q_OBJECT
 
 public:
-    BuildGUI_ShellDlg(QWidget* parent = 0, const char* name = 0, BuildGUI* theBuildGUI = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
-    ~BuildGUI_ShellDlg();
+  BuildGUI_ShellDlg( GeometryGUI*, QWidget* = 0 );
+  ~BuildGUI_ShellDlg();
 
-private:
-    void Init();
-    void enterEvent(QEvent * e);
+protected:
+  // redefined from GEOMBase_Helper
+  virtual GEOM::GEOM_IOperations_ptr createOperation();
+  virtual bool                       isValid( QString& );
+  virtual bool                       execute( ObjectList& );    
 
-    BuildGUI* myBuildGUI;
-
-    Handle(GEOM_FaceFilter) myFaceFilter;    /* Filters selection */
-    GEOM::GEOM_Gen::ListOfIOR myListShapes;
-    bool myOkListShapes;          /* to check when arguments is defined */
+private:
+  void                               Init();
+  void                               enterEvent( QEvent* );
 
-    DlgRef_1Sel_QTD* GroupShell;
+private:
+  QList<GEOM::GeomObjPtr>            myFacesAndShells;
+  
+  DlgRef_1Sel*                       GroupShell;
 
 private slots:
-    void ClickOnOk();
-    void ClickOnApply();
-    void SetEditCurrentArgument();
-    void LineEditReturnPressed();
-    void SelectionIntoArgument();
-    void ActivateThisDialog();
-
+  void                               ClickOnOk();
+  bool                               ClickOnApply();
+  void                               SetEditCurrentArgument();
+  void                               SelectionIntoArgument();
+  void                               ActivateThisDialog();
 };
 
-#endif // DIALOGBOX_SHELL_H
+#endif // BUILDGUI_SHELLDLG_H