]> Creatis software - creaMaracasVisu.git/blob - lib/GUI/Qt/VolumeRenderer/qtvolumerendererpanel.cxx
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / GUI / Qt / VolumeRenderer / qtvolumerendererpanel.cxx
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 #include "qtvolumerendererpanel.h"
27 #include "ui_qtvolumerendererpanel.h"
28 #include "qmessagebox.h"
29
30 using namespace std;
31
32 QtVolumeRendererPanel::QtVolumeRendererPanel(QWidget *parent) :
33     QWidget(parent),
34     ui(new Ui::QtVolumeRendererPanel)
35 {
36     ui->setupUi(this);    
37 }
38
39 QtVolumeRendererPanel::~QtVolumeRendererPanel()
40 {
41     delete ui;
42 }
43
44 void QtVolumeRendererPanel::on_checkBoxShowVolume_clicked(bool checked)
45 {
46     try{
47         ShowVolume(checked);
48         //JCP 27/09/12
49         //on_opacitySlider_valueChanged(this->ui->opacitySlider->value());
50     }catch(char * e){
51         cout<<e<<endl;
52         QMessageBox::critical(this, tr("Volume Rendering"), tr(e), QMessageBox::Ok);
53     }catch(exception e){
54         cout<<e.what()<<endl;
55         QMessageBox::critical(this, tr("Volume Rendering"), tr(e.what()), QMessageBox::Ok);
56     }
57 }
58
59
60 void QtVolumeRendererPanel::on_opacitySlider_valueChanged(int value)
61 {
62     try{        
63         this->ui->lineEditOpacity->setText(QString::number(value));        
64
65         double* range = ImageData->GetScalarRange();
66         vector<double> greylevel;
67         greylevel.push_back(0);  //first grey level
68         //greylevel.push_back(1);
69         greylevel.push_back(10);
70         greylevel.push_back(20);
71         greylevel.push_back(range[1]);
72
73         vector<double> vectvalue;
74         vectvalue.push_back(0);  //first opacity value
75         //vectvalue.push_back(value/100.0);
76         vectvalue.push_back(0);
77         vectvalue.push_back(value/100.0);
78         vectvalue.push_back(value/100.0);
79
80         OpacityChanged(greylevel, vectvalue);
81     }catch(char * e){
82         cout<<e<<endl;
83         QMessageBox::critical(this, tr("Volume Rendering"), tr(e), QMessageBox::Ok);
84     }
85 }
86
87 void QtVolumeRendererPanel::on_checkBoxBoundingBox_clicked(bool checked)
88 {
89     try{
90         BoundingBoxChanged(checked);
91     }catch(char * e){
92         cout<<e<<endl;
93         QMessageBox::critical(this, tr("Volume Rendering"), tr(e), QMessageBox::Ok);
94     }
95 }
96
97 void QtVolumeRendererPanel::on_radioButtonMIP_clicked(bool checked)
98 {
99     if(checked){
100         this->changeCompositeMIPFunction(1);
101     }
102 }
103
104 void QtVolumeRendererPanel::on_radioButtonComposite_clicked(bool checked)
105 {
106     if(checked){
107         this->changeCompositeMIPFunction(0);
108     }
109 }
110
111 void QtVolumeRendererPanel::on_radioButtonLinear_clicked(bool checked)
112 {
113     if(checked){
114         this->changeInterpolationType(0);
115     }
116 }
117
118 void QtVolumeRendererPanel::on_radioButtonNearest_clicked(bool checked)
119 {
120     if(checked){
121         this->changeInterpolationType(1);
122     }
123 }
124
125 void QtVolumeRendererPanel::on_radioButtonMinIP_clicked(bool checked)
126 {
127     if(checked){
128         this->changeCompositeMIPFunction(2);
129     }
130 }