Salome HOME
8c59cd8e6db1b7b7c47b9780e7f24067b6e4d075
[modules/gui.git] / src / OCCViewer / OCCViewer_EnvTextureDlg.h
1 // Copyright (C) 2015-2021  CEA/DEN, EDF R&D, 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_ENVTEXTUREDLG_H
21 #define OCCVIEWER_ENVTEXTUREDLG_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 QGroupBox;
30 class QComboBox;
31 class QLineEdit;
32
33 class OCCVIEWER_EXPORT OCCViewer_EnvTextureDlg : public QDialog
34 {
35   Q_OBJECT
36
37   public:
38   OCCViewer_EnvTextureDlg( OCCViewer_ViewWindow* );
39   ~OCCViewer_EnvTextureDlg();
40
41   static QString getName();
42
43 private slots:
44
45   void onEnvTexture( bool );
46   void onTextureChanged();
47   void onFileSelectionClicked();
48
49   void ClickOnHelp();
50
51 private:
52   void initParam();
53   void setEnvTexture( Handle(Graphic3d_TextureEnv) );
54
55   OCCViewer_ViewFrame* myViewFrame;
56   Handle(V3d_View) myView3d;
57
58   QGroupBox*   myEnvTextureGroup;
59   QComboBox*   myEnvTextureId;
60   QLineEdit*   myEnvTextureName;
61   QPushButton* myFileButton;
62 };
63
64 #endif // OCCVIEWER_ENVTEXTUREDLG_H