Salome HOME
9fe1c72ec4dbd695cb0f4fc349f2f99d3935baa7
[modules/gui.git] / src / OCCViewer / OCCViewer_RayTracingDlg.h
1 // Copyright (C) 2015-2023  CEA, EDF, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef OCCVIEWER_RAYTRACINGDLG_H
21 #define OCCVIEWER_RAYTRACINGDLG_H
22
23 #include "OCCViewer.h"
24 #include <QDialog>
25 #include <V3d_View.hxx>
26
27 class OCCViewer_ViewWindow;
28 class OCCViewer_ViewFrame;
29 class QCheckBox;
30 class QtxIntSpinBox;
31 class QGroupBox;
32
33
34 class OCCVIEWER_EXPORT OCCViewer_RayTracingDlg : public QDialog
35 {
36   Q_OBJECT
37
38   public:
39   OCCViewer_RayTracingDlg( OCCViewer_ViewWindow* );
40   ~OCCViewer_RayTracingDlg();
41
42   static QString getName();
43
44 private slots:
45
46   void onValueChanged();
47   void onRayTracing(bool);
48
49   void ClickOnHelp();
50
51 private:
52   void initParam();
53
54   OCCViewer_ViewFrame* myViewFrame;
55   Handle(V3d_View)     myView3d;
56
57   QGroupBox*     myRayTracingGroup;
58   QtxIntSpinBox* myDepth;
59   QCheckBox*     myReflection;
60   QCheckBox*     myAntialiasing;
61   QCheckBox*     myShadow;
62   QCheckBox*     myTransparentShadow;
63 };
64
65 #endif // OCCVIEWER_RAYTRACINGDLG_H