]> SALOME platform Git repositories - modules/geom.git/blob - src/OperationGUI/OperationGUI_ClippingDlg.h
Salome HOME
296a0adbb5fbcda55a95d1abbf7d4c7a090cc52a
[modules/geom.git] / src / OperationGUI / OperationGUI_ClippingDlg.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   : OperationGUI_ClippingDlg.h
23 // Author : Michael Zorin, Open CASCADE S.A.S. (mikhail.zorin@opencascade.com)
24 //
25
26 #ifndef OPERATIONGUI_CLIPPINGDLG_H
27 #define OPERATIONGUI_CLIPPINGDLG_H
28
29 #include <GEOMBase_Skeleton.h>
30
31 class QGroupBox;
32 class QLabel;
33 class QPushButton;
34 class QComboBox;
35 class QDoubleSpinBox;
36
37 enum ViewerTypes { VTK, OCC, OTHER };
38
39 //=================================================================================
40 // class    : OperationGUI_ClippingDlg
41 // purpose  :
42 //=================================================================================
43 class OperationGUI_ClippingDlg : public GEOMBase_Skeleton
44 {
45   Q_OBJECT
46
47 public:
48   OperationGUI_ClippingDlg( GeometryGUI*, QWidget* = 0 );
49   ~OperationGUI_ClippingDlg();
50   
51 private:
52   void              Init();
53   
54   virtual void      closeEvent( QCloseEvent* );
55   void              enterEvent( QEvent* );
56   
57 private:
58   ViewerTypes       myViewerType;
59   
60   QGroupBox*        GroupArguments;
61   QLabel*           TextLabelNear;
62   QDoubleSpinBox*   SpinBox_Near;
63   QLabel*           TextLabelFar;
64   QDoubleSpinBox*   SpinBox_Far;
65   QPushButton*      resetButton;
66   QComboBox*        TypeCB;
67
68 private slots:
69   void              ClickOnOk();
70   bool              ClickOnApply();
71   void              onActivate();
72   void              onReset();
73 };
74
75 #endif // OPERATIONGUI_CLIPPINGDLG_H