Salome HOME
Mantis issue 0021541: EDF 2213 GEOM: Filling accuracy
[modules/geom.git] / src / MeasureGUI / MeasureGUI_Skeleton.h
index 015951864065e23d4e1aad8688bdebaf0dd17177..737732bbda253b2868a2f50e1d1ee0499c296bb7 100644 (file)
@@ -1,72 +1,89 @@
-//  GEOM GEOMGUI : GUI for Geometry component
+// Copyright (C) 2007-2012  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   : MeasureGUI_Skeleton.h
-//  Author : Damine COQUERET
-//  Module : GEOM
-//  $Header: 
 
+// GEOM GEOMGUI : GUI for Geometry component
+// File   : MeasureGUI_Skeleton.h
+// Author : Damine COQUERET, Open CASCADE S.A.S.
+//
 #ifndef MEASUREGUI_SKELETON_H
 #define MEASUREGUI_SKELETON_H
 
-#include "MeasureGUI_Skeleton_QTD.h"
+#include <QDialog>
+#include <GEOMBase_Helper.h>
 
-#include "GEOMBase.h"
+class GeometryGUI;
+class MeasureGUI_SkeletonBox;
+class QLineEdit;
+class QPushButton;
+class GEOM_Displayer;
 
-#include <qwidget.h>
-#include <qgroupbox.h>
-#include <qlineedit.h>
-#include <qlayout.h>
-#include <qradiobutton.h>
-#include <qbuttongroup.h>
-
-class MeasureGUI_Skeleton : public MeasureGUI_Skeleton_QTD
+class MeasureGUI_Skeleton : public QDialog, public GEOMBase_Helper
 { 
-    Q_OBJECT
+  Q_OBJECT
 
 public:
-    MeasureGUI_Skeleton(QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
-    ~MeasureGUI_Skeleton();
-
-private :
-    void Init(SALOME_Selection* Sel);
+  MeasureGUI_Skeleton( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
+  ~MeasureGUI_Skeleton();
+  
+protected slots:
+  virtual void                       ClickOnCancel();
+  virtual void                       ClickOnHelp(); 
+  virtual void                       DeactivateActiveDialog();
+  virtual void                       ActivateThisDialog();
+  virtual void                       SelectionIntoArgument();
+  virtual void                       LineEditReturnPressed();
+  virtual void                       SetEditCurrentArgument();                              
 
 protected:
-    void closeEvent(QCloseEvent* e);
-
-    TopoDS_Shape mySimulationTopoDs;    /* Shape used for simulation display */
-    QLineEdit* myEditCurrentArgument;   /* Current LineEdit */
-    SALOME_Selection* mySelection;      /* User shape selection */
-    GEOM::GEOM_Gen_var myGeom;          /* Current GeomI object */
-    GEOMBase* myGeomBase;
-    GEOMContext* myGeomGUI;  /* Current GeomGUI object */
+  void                               Init();
+  
+  void                               enterEvent( QEvent* );
+  void                               closeEvent( QCloseEvent* );
+  void                               keyPressEvent( QKeyEvent* );
+  void                               redisplayPreview();
+  GEOM_Displayer*                    getDisplayer();
+  
+  virtual bool                       isValid( QString& );
+  virtual SALOME_Prs*                buildPrs();
+  virtual void                       processObject();
+  virtual void                       activateSelection();
+  
+  virtual GEOM::GEOM_IOperations_ptr createOperation();
 
-protected slots:
-    void ClickOnCancel();
-    void LineEditReturnPressed();
-    void DeactivateActiveDialog();
-    void ActivateThisDialog();
+  MeasureGUI_SkeletonBox*            mainFrame() const;
+  QWidget*                           centralWidget() const;
+  QPushButton*                       buttonClose() const;
+  QPushButton*                       buttonHelp() const;
 
+protected:    
+  QPushButton*                       mySelBtn;
+  QLineEdit*                         mySelEdit;
+  GEOM::GEOM_Object_var              myObj;
+  
+  GeometryGUI*                       myGeomGUI;
+  GEOM_Displayer*                    myDisplayer;
+  
+  QString                            myHelpFileName;
+  MeasureGUI_SkeletonBox*            myMainFrame;
 };
-
 #endif // MEASUREGUI_SKELETON_H