]> SALOME platform Git repositories - modules/geom.git/blob - src/OperationGUI/OperationGUI_ClippingDlg.h
Salome HOME
Improvement(Add a new preference to GEOM ? default ?Shading/Wireframe? visualization...
[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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : OperationGUI_ClippingDlg.h
25 //  Author : Michael Zorin
26 //  Module : GEOM
27 //  $Header: 
28
29 #ifndef DIALOGBOX_CLIPPINGRANGE_H
30 #define DIALOGBOX_CLIPPING_H
31
32 #include "GEOMBase_Skeleton.h"
33
34 class QGroupBox;
35 class QLabel;
36 class QPushButton;
37 class QComboBox;
38 class DlgRef_SpinBox;
39
40 enum ViewerTypes { VTK, OCC, OTHER };
41
42 //=================================================================================
43 // class    : OperationGUI_ClippingDlg
44 // purpose  :
45 //=================================================================================
46 class OperationGUI_ClippingDlg : public GEOMBase_Skeleton
47 {
48     Q_OBJECT
49     
50     public:
51     OperationGUI_ClippingDlg(QWidget* parent = 0, const char* name = 0, bool modal = FALSE, WFlags fl = 0);
52     ~OperationGUI_ClippingDlg();
53     
54 private :
55
56     void Init();
57
58     ViewerTypes myViewerType;
59
60     virtual void closeEvent( QCloseEvent* e );
61     void enterEvent(QEvent* e);
62     
63     QGroupBox* GroupArguments;
64     QLabel* TextLabelNear;
65     DlgRef_SpinBox* SpinBox_Near;
66     QLabel* TextLabelFar;
67     DlgRef_SpinBox* SpinBox_Far;
68     QPushButton* resetButton;
69     QComboBox* TypeCB;
70
71 private slots:
72     void ClickOnOk();
73     bool ClickOnApply();
74     void ClickOnCancel();
75     void onActivate();
76     void DeactivateActiveDialog();
77     
78     void onReset();
79 };
80
81 #endif // DIALOGBOX_CLIPPINGRANGE_H