Salome HOME
0019050: EDF 521 (For GEOM/BasicGUI): Improve selection process in the dialogs
[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   void              enterEvent( QEvent* );
55   
56 private:
57   ViewerTypes       myViewerType;
58   
59   QGroupBox*        GroupArguments;
60   QLabel*           TextLabelNear;
61   QDoubleSpinBox*   SpinBox_Near;
62   QLabel*           TextLabelFar;
63   QDoubleSpinBox*   SpinBox_Far;
64   QPushButton*      resetButton;
65   QComboBox*        TypeCB;
66
67 private slots:
68   void              ClickOnOk();
69   bool              ClickOnApply();
70   void              onActivate();
71   void              onReset();
72 };
73
74 #endif // OPERATIONGUI_CLIPPINGDLG_H