Salome HOME
IPAL19834: Incorrect result after make Partition of 2 objects. A fix by PKV.
[modules/geom.git] / src / BuildGUI / BuildGUI_SolidDlg.h
index c85fef5888084d19bfce2b0e47412429bc3377ee..d666fc0323a8338db3e16855b7029c622b87a0d6 100644 (file)
@@ -1,36 +1,34 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// GEOM GEOMGUI : GUI for Geometry component
 //
-//  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
-//  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS 
+// 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 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
+// File   : BuildGUI_SolidDlg.h
+// Author : Damien COQUERET, Open CASCADE S.A.S.
 //
-//
-//  File   : BuildGUI_SolidDlg.h
-//  Author : Damien COQUERET
-//  Module : GEOM
-//  $Header: 
 
-#ifndef DIALOGBOX_SOLID_H
-#define DIALOGBOX_SOLID_H
+#ifndef BUILDGUI_SOLIDDLG_H
+#define BUILDGUI_SOLIDDLG_H
+
+#include <GEOMBase_Skeleton.h>
 
-#include "GEOMBase_Skeleton.h"
-#include "DlgRef_1Sel1Check_QTD.h"
+class DlgRef_1Sel1Check;
 
 //=================================================================================
 // class    : BuildGUI_SolidDlg
 //=================================================================================
 class BuildGUI_SolidDlg : public GEOMBase_Skeleton
 { 
-    Q_OBJECT
+  Q_OBJECT
 
 public:
-    BuildGUI_SolidDlg(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
-    ~BuildGUI_SolidDlg();
+  BuildGUI_SolidDlg( GeometryGUI*, QWidget* = 0 );
+  ~BuildGUI_SolidDlg();
 
 protected:
-    // redefined from GEOMBase_Helper
-    virtual GEOM::GEOM_IOperations_ptr createOperation();
-    virtual bool isValid( QString& msg );
-    virtual bool execute( ObjectList& objects );    
+  // redefined from GEOMBase_Helper
+  virtual GEOM::GEOM_IOperations_ptr createOperation();
+  virtual bool                       isValid( QString& );
+  virtual bool                       execute( ObjectList& );    
 
 private:
-    void Init();
-    void enterEvent(QEvent * e);
+  void                               Init();
+  bool                               isClosed(int i);
+  void                               enterEvent( QEvent* );
 
-    GEOM::ListOfGO myShells;
-    bool myOkShells;          /* to check when arguments is defined and
-                                 all shells are closed */
+private:
+  GEOM::ListOfGO                     myShells;
+  bool                               myOkShells; /* to check when arguments is defined and
+                                                   all shells are closed */
 
-    DlgRef_1Sel1Check_QTD* GroupSolid;
+  DlgRef_1Sel1Check*                GroupSolid;
 
 private slots:
-    void ClickOnOk();
-    bool ClickOnApply();
-    void SetEditCurrentArgument();
-    void SelectionIntoArgument();
-    void ActivateThisDialog();
-    void EnableNameField(bool toEnable);
-
+  void                               ClickOnOk();
+  bool                               ClickOnApply();
+  void                               SetEditCurrentArgument();
+  void                               SelectionIntoArgument();
+  void                               ActivateThisDialog();
+  void                               EnableNameField( bool );
 };
 
-#endif // DIALOGBOX_SOLID_H
+#endif // BUILDGUI_SOLIDDLG_H