]> Creatis software - creaMaracasVisu.git/blob - lib/GUI/Qt/SurfaceRenderer/qtsurfacerendererpanel.h
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / GUI / Qt / SurfaceRenderer / qtsurfacerendererpanel.h
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 #ifndef QTSURFACERENDERERPANEL_H
27 #define QTSURFACERENDERERPANEL_H
28
29 #include <QWidget>
30
31 #include "wxMaracasSurfaceRenderingManager.h"
32 #include "vtkImageData.h"
33
34 namespace Ui {
35     class QtSurfaceRendererPanel;
36 }
37
38 class QtSurfaceRendererPanel : public QWidget, public wxMaracasSurfaceRenderingManager
39 {
40     Q_OBJECT
41
42 public:
43     explicit QtSurfaceRendererPanel(QWidget *parent = 0);
44     ~QtSurfaceRendererPanel();
45
46     virtual void setImageData(vtkImageData* img);
47 private slots:    
48
49     void on_OpacitySlider_valueChanged(int value);
50
51     void on_pushButtonColorChooser_clicked();
52
53     void on_checkBox_clicked(bool checked);    
54
55     void on_horizontalSliderMaxIso_valueChanged(int value);
56
57     void on_horizontalSliderMinIso_valueChanged(int value);
58
59     void on_horizontalSliderMaxIso_sliderReleased();
60
61     void on_horizontalSliderMinIso_sliderReleased();
62
63     //void on_pushButtonSave_clicked();
64
65     void on_checkBoxBoundingBox_clicked(bool checked);
66
67     void on_pushButtonOpen_clicked(bool checked);
68
69     void on_pushButtonOpen_clicked();
70
71
72     void on_comboBoxSave_activated(int index);
73
74 private:
75     Ui::QtSurfaceRendererPanel *ui;
76
77
78     void onIsoValueChanged();
79
80     bool _ImageSet;
81 };
82
83 #endif // QTSURFACERENDERERPANEL_H