Salome HOME
Bug IPAL19097 NPAL16768 is not implemented for "Normal to a face"
[modules/geom.git] / src / MeasureGUI / MeasureGUI_Skeleton.h
1 // GEOM GEOMGUI : GUI for Geometry component
2 //
3 // Copyright (C) 2003  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 // File   : MeasureGUI_Skeleton.h
23 // Author : Damine COQUERET, Open CASCADE S.A.S.
24 //
25
26 #ifndef MEASUREGUI_SKELETON_H
27 #define MEASUREGUI_SKELETON_H
28
29 #include <QDialog>
30 #include <GEOMBase_Helper.h>
31
32 class GeometryGUI;
33 class MeasureGUI_SkeletonBox;
34 class QLineEdit;
35 class QPushButton;
36 class GEOM_Displayer;
37
38 class MeasureGUI_Skeleton : public QDialog, public GEOMBase_Helper
39
40   Q_OBJECT
41
42 public:
43   MeasureGUI_Skeleton( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
44   ~MeasureGUI_Skeleton();
45   
46 protected slots:
47   virtual void                       ClickOnCancel();
48   virtual void                       ClickOnHelp(); 
49   virtual void                       DeactivateActiveDialog();
50   virtual void                       ActivateThisDialog();
51   virtual void                       SelectionIntoArgument();
52   virtual void                       LineEditReturnPressed();
53   virtual void                       SetEditCurrentArgument();                              
54
55 protected:
56   void                               Init();
57   
58   void                               enterEvent( QEvent* );
59   void                               closeEvent( QCloseEvent* );
60   void                               keyPressEvent( QKeyEvent* );
61   void                               redisplayPreview();
62   GEOM_Displayer*                    getDisplayer();
63   
64   virtual bool                       isValid( QString& );
65   virtual SALOME_Prs*                buildPrs();
66   virtual void                       processObject();
67   virtual void                       activateSelection();
68   
69   virtual GEOM::GEOM_IOperations_ptr createOperation();
70
71   MeasureGUI_SkeletonBox*            mainFrame() const;
72   QWidget*                           centralWidget() const;
73   QPushButton*                       buttonClose() const;
74   QPushButton*                       buttonHelp() const;
75
76 protected:    
77   QPushButton*                       mySelBtn;
78   QLineEdit*                         mySelEdit;
79   GEOM::GEOM_Object_var              myObj;
80   
81   GeometryGUI*                       myGeomGUI;
82   GEOM_Displayer*                    myDisplayer;
83   
84   QString                            myHelpFileName;
85   MeasureGUI_SkeletonBox*            myMainFrame;
86 };
87  
88 #endif // MEASUREGUI_SKELETON_H