]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuColorLayerImageView.cxx
de5de6edbd97182caa828fc6d789501380f860b3
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuColorLayerImageView.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 //=====
27 // Don't edit this file. This file is generated from xml description..
28 //=====
29 #include "bbcreaMaracasVisuColorLayerImageView.h"
30 #include "bbcreaMaracasVisuPackage.h"
31
32 #include "ColorLayerImageViewPanel.h"
33
34 namespace bbcreaMaracasVisu
35 {
36
37 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,ColorLayerImageView)
38 BBTK_BLACK_BOX_IMPLEMENTATION(ColorLayerImageView,bbtk::WxBlackBox);
39 //=====
40 // Don't edit this file. This file is generated from xml description..
41 //=====
42 void ColorLayerImageView::Process()
43 {
44
45     ColorLayerImageViewPanel *clivp = (ColorLayerImageViewPanel*)bbGetOutputWidget();
46
47     clivp->SetActive( bbGetInputActive() );
48
49     clivp->GetColorLayerImageViewManager()->SetwxVtkBaseView( 0 , bbGetInputWxVtkBaseView() );
50     clivp->GetColorLayerImageViewManager()->SetwxVtkBaseView( 1 , bbGetInputWxVtkBaseView1() );
51     clivp->GetColorLayerImageViewManager()->SetwxVtkBaseView( 2 , bbGetInputWxVtkBaseView2() );
52    
53     std::vector<double> base_color = bbGetInputlstBaseColor();
54     clivp->GetColorLayerImageViewManager()->SetBaseColors( base_color );
55
56     std::vector<double> grey_level_boundaries = bbGetInputlstGreyLevelBoundaries();
57     clivp->GetColorLayerImageViewManager()->SetGreyLevelBoundaries( grey_level_boundaries );
58  
59     clivp->GetColorLayerImageViewManager()->SetPlainOrGradientColor( bbGetInputPlainOrGradientColor() );
60     clivp->SetFittingMode( bbGetInputFittingMode() );
61
62     clivp->SetImage( bbGetInputIn() );
63
64
65
66 //   std::string msg;
67 //    if (bbGetInputTitle()!="")
68 //    {
69 //        msg = bbGetInputTitle()+": " + bbGetInputIn();
70 //    }else{
71 //        msg = bbGetInputIn();
72 //    }
73 //   ((wxStaticText*)bbGetOutputWidget())->SetLabel( bbtk::std2wx( msg ) );
74
75 }
76 //=====
77 // Don't edit this file. This file is generated from xml description..
78 //=====
79 void ColorLayerImageView::CreateWidget(wxWindow* parent)
80 {
81   ColorLayerImageViewPanel *clivp = new ColorLayerImageViewPanel(parent, 0, 100, 1);
82   bbSetOutputWidget( clivp );
83 }
84 //=====
85 // Don't edit this file. This file is generated from xml description..
86 //=====
87 void ColorLayerImageView::bbUserSetDefaultValues()
88 {
89     bbSetInputIn(NULL);
90     bbSetInputActive(true);
91     bbSetInputWxVtkBaseView(NULL);
92     bbSetInputWxVtkBaseView1(NULL);
93     bbSetInputWxVtkBaseView2(NULL);
94 }
95 //=====
96 // Don't edit this file. This file is generated from xml description..
97 //=====
98 void ColorLayerImageView::bbUserInitializeProcessing()
99 {
100
101 }
102 //=====
103 // Don't edit this file. This file is generated from xml description..
104 //=====
105 void ColorLayerImageView::bbUserFinalizeProcessing()
106 {
107
108 }
109 }
110 // EO namespace bbcreaMaracasVisu