Salome HOME
Update mail address
[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 //
23 //
24 //  File   : OperationGUI_ClippingDlg.h
25 //  Author : Michael Zorin
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_CLIPPINGRANGE_H
29 #define DIALOGBOX_CLIPPING_H
30
31 #include "GEOMBase_Skeleton.h"
32
33 class QGroupBox;
34 class QLabel;
35 class QPushButton;
36 class QComboBox;
37 class DlgRef_SpinBox;
38
39 enum ViewerTypes { VTK, OCC, OTHER };
40
41 //=================================================================================
42 // class    : OperationGUI_ClippingDlg
43 // purpose  :
44 //=================================================================================
45 class OperationGUI_ClippingDlg : public GEOMBase_Skeleton
46 {
47     Q_OBJECT
48
49 public:
50     OperationGUI_ClippingDlg(GeometryGUI* theGeometryGUI, QWidget* parent = 0);
51     ~OperationGUI_ClippingDlg();
52
53 private:
54     void Init();
55
56     ViewerTypes myViewerType;
57
58     virtual void closeEvent( QCloseEvent* e );
59     void enterEvent(QEvent* e);
60
61     QGroupBox* GroupArguments;
62     QLabel* TextLabelNear;
63     DlgRef_SpinBox* SpinBox_Near;
64     QLabel* TextLabelFar;
65     DlgRef_SpinBox* SpinBox_Far;
66     QPushButton* resetButton;
67     QComboBox* TypeCB;
68
69 private slots:
70     void ClickOnOk();
71     bool ClickOnApply();
72     void onActivate();
73     void onReset();
74 };
75
76 #endif // DIALOGBOX_CLIPPINGRANGE_H