]> Creatis software - creaMaracasVisu.git/blob - lib/GUI/Qt/SurfaceRenderer/qtsurfacerenderer.cxx
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / lib / GUI / Qt / SurfaceRenderer / qtsurfacerenderer.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 "qtsurfacerenderer.h"
27 #include "ui_qtsurfacerenderer.h"
28
29
30 #include <qtsurfacerendererpanel.h>
31
32 QtSurfaceRenderer::QtSurfaceRenderer(QWidget *parent) :
33     QWidget(parent),
34     ui(new Ui::QtSurfaceRenderer)
35 {
36     ui->setupUi(this);
37
38     this->ui->tabWidgetSurface->removeTab(1);
39     this->ui->tabWidgetSurface->removeTab(0);
40
41     QtSurfaceRendererPanel* surfacepanel = new QtSurfaceRendererPanel(this);
42     this->ui->tabWidgetSurface->addTab(surfacepanel, QString("Surface Rendering"));
43
44     Renderer = 0;
45     Interactor = 0;
46 }
47 void QtSurfaceRenderer::SetRenderer(vtkRenderer* render){
48     Renderer = render;
49     this->ui->tabWidgetSurface->setCurrentIndex(0);
50     QtSurfaceRendererPanel* surfacepanel = (QtSurfaceRendererPanel*)this->ui->tabWidgetSurface->currentWidget();
51     surfacepanel->setRenderer(Renderer);
52 }
53
54 void QtSurfaceRenderer::SetInteractor(vtkRenderWindowInteractor* interactor){
55     Interactor = interactor;
56     this->ui->tabWidgetSurface->setCurrentIndex(0);
57     QtSurfaceRendererPanel* surfacepanel = (QtSurfaceRendererPanel*)this->ui->tabWidgetSurface->currentWidget();
58     surfacepanel->setInteractor(Interactor);
59 }
60
61 QtSurfaceRenderer::~QtSurfaceRenderer()
62 {
63     delete ui;
64 }
65
66 void QtSurfaceRenderer::SetImageData(vtkImageData* img){
67     this->ui->tabWidgetSurface->setCurrentIndex(0);
68     QtSurfaceRendererPanel* surfacepanel = (QtSurfaceRendererPanel*)this->ui->tabWidgetSurface->currentWidget();
69     surfacepanel->setImageData(img);
70 }
71
72 void QtSurfaceRenderer::on_pushbuttonAddTab_clicked()
73 {
74
75     QtSurfaceRendererPanel* surfacepanel = new QtSurfaceRendererPanel(this);    
76     surfacepanel->setRenderer(Renderer);
77     surfacepanel->setInteractor(Interactor);
78
79     this->ui->tabWidgetSurface->addTab(surfacepanel, QString("Surface Rendering"));
80 }
81
82 void QtSurfaceRenderer::on_tabWidgetSurface_tabCloseRequested(int index)
83 {
84     if(index != 0){
85
86         QtSurfaceRendererPanel* surfacepanel = (QtSurfaceRendererPanel*)this->ui->tabWidgetSurface->currentWidget();
87         surfacepanel->enableBoundingBox(0, false);
88         surfacepanel->deleteActor(0);
89
90         this->ui->tabWidgetSurface->removeTab(index);
91     }
92 }
93