]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuRenderingViewer.cxx
Support #1768 CREATIS Licence insertion
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuRenderingViewer.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 "bbcreaMaracasVisuRenderingViewer.h"
27 #include "bbcreaMaracasVisuPackage.h"
28
29 #include "wxMaracasRendererView.h"
30 #include "wxMaracasRenderTabbedPanel.h"
31
32 namespace bbcreaMaracasVisu
33 {
34
35 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,RenderingViewer)
36 BBTK_BLACK_BOX_IMPLEMENTATION(RenderingViewer,bbtk::WxBlackBox);
37 void RenderingViewer::Process()
38 {
39         wxMaracasRendererView* view = (wxMaracasRendererView*)bbGetOutputWidget();
40         vtkImageData* _img1 = bbGetInputIn1();
41         vtkImageData* _img2 = bbGetInputIn2();
42         vtkImageData* _img3 = bbGetInputIn3();
43         vtkImageData* _img4 = bbGetInputIn4(); 
44
45         vtkRenderer* renderer = bbGetInputRenderer();
46
47         if(view != NULL)
48         {
49                 view->setVtkBaseView( (wxVtk3DBaseView*) bbGetInputwxVtkBaseView() );
50
51                 if(renderer != NULL && _currentrenderer != renderer)
52                 {
53                         view->setRenderer(renderer);
54                         _currentrenderer = renderer;
55                         //_currentrendererSA = rendererSA;
56                         //_currentrendererSB = rendererSB;
57                         //_currentrendererSC = rendererSC;
58                 }
59                 if(_currentrenderer!=NULL /*&& _currentrendererSA!=NULL && _currentrendererSB!=NULL && _currentrendererSC!=NULL*/)
60                 {
61                         if(_img1 !=NULL)
62                         {
63                                 view->addVolumes(_img1, "","INPUT 1");
64                         }
65                         if(_img2 !=NULL)
66                         {
67                                 view->addVolumes(_img2, "", "INPUT 2");
68                         }
69                         if(_img3 !=NULL)
70                         {
71                                 view->addVolumes(_img3, "", "INPUT 3");
72                         }
73                         if(_img4 !=NULL)
74                         {
75                                 view->addVolumes(_img4, "", "INPUT 4");
76                         }
77                 }               
78         } 
79
80         bbSetOutputImageFiles( view->getFiles() );
81
82 }
83 void RenderingViewer::CreateWidget(wxWindow* parent)
84 {
85         wxMaracasRendererView* surrend = wxMaracasRendererView::getInstance(parent);
86         bbSetOutputWidget(surrend);
87 }
88 void RenderingViewer::bbUserSetDefaultValues()
89 {
90         bbSetInputIn1(NULL);
91         bbSetInputIn2(NULL);
92         bbSetInputIn3(NULL);
93         bbSetInputIn4(NULL);
94         bbSetInputRenderer(NULL);
95         bbSetOutputWidget(NULL);
96         bbSetOutputOut1(NULL);
97         bbSetOutputOut2(NULL);
98         bbSetOutputOut3(NULL);
99         bbSetOutputOut4(NULL);
100 }
101 void RenderingViewer::bbUserInitializeProcessing()
102 {
103
104 }
105 void RenderingViewer::bbUserFinalizeProcessing()
106 {
107
108 }
109 }
110 // EO namespace bbcreaMaracasVisu
111
112