]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuManualPaint.cxx
ba692644e2b621d30379b32924f6654c832adf62
[creaMaracasVisu.git] / bbtk / src / bbcreaMaracasVisuManualPaint.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 "bbcreaMaracasVisuManualPaint.h"
30 #include "bbcreaMaracasVisuPackage.h"
31
32 #include "ManualPaintPanel.h"
33 #include "ManualPaintModel.h"
34 #include "ManualPaintControler.h"
35 #include "wxManualPaintPanel.h"
36
37 #include <wx/msgdlg.h>
38
39 namespace bbcreaMaracasVisu
40 {
41
42
43 //---------------------------------------------------------------------------------
44 //---------------------------------------------------------------------------------
45 //---------------------------------------------------------------------------------
46
47
48 BBTK_ADD_BLACK_BOX_TO_PACKAGE(creaMaracasVisu,ManualPaint)
49 BBTK_BLACK_BOX_IMPLEMENTATION(ManualPaint,bbtk::WxBlackBox);
50 //=====
51 // Don't edit this file. This file is generated from xml description..
52 //=====
53 void ManualPaint::Process()
54 {
55 printf("ManualPaint::Process start\n");
56
57
58 /*
59    std::string msg;
60     if (bbGetInputTitle()!="")
61       {
62         msg = bbGetInputTitle()+": " + bbGetInputIn();
63       }
64     else
65       {
66         msg = bbGetInputIn();
67       }
68    ((wxStaticText*)bbGetOutputWidget())->SetLabel( bbtk::std2wx( msg ) );
69   */
70
71     if (bbGetInputWxVtkBaseView1()==NULL)
72     {
73       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'WxVtkBaseView' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
74     }
75
76     if (bbGetInputIn()==NULL)
77     {
78       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'vtkImageData' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
79     }
80
81
82     if (firsttime==true)
83     {
84         firsttime=false;
85
86         ManualPaintModel        *mpModel                        = new ManualPaintModel();
87         mpModel->SetImages( bbGetInputIn() , bbGetInputIn2() );
88
89         wxManualPaintPanel        *mpPanel                      = (wxManualPaintPanel*)bbGetOutputWidget();
90         mpPanel->SetManualPaintModel(mpModel);
91
92         if (bbGetInputWxVtkBaseView1()!=NULL)
93         {
94             ManualPaintControler    *mpControler    = new ManualPaintControler();
95             mpControler->SetManualPaintModel(mpModel);
96             mpControler->SetManualPaintPanel(mpPanel);
97             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView1() );
98             mpControler->Config();
99         }
100
101         if (bbGetInputWxVtkBaseView2()!=NULL)
102         {
103             ManualPaintControler    *mpControler    = new ManualPaintControler();
104             mpControler->SetManualPaintModel(mpModel);
105             mpControler->SetManualPaintPanel(mpPanel);
106             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView2() );
107             mpControler->Config();
108         }
109
110         if (bbGetInputWxVtkBaseView3()!=NULL)
111         {
112             ManualPaintControler    *mpControler    = new ManualPaintControler();
113             mpControler->SetManualPaintModel(mpModel);
114             mpControler->SetManualPaintPanel(mpPanel);
115             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView3() );
116             mpControler->Config();
117         }
118
119         if (bbGetInputWxVtkBaseView4()!=NULL)
120         {
121             ManualPaintControler    *mpControler    = new ManualPaintControler();
122             mpControler->SetManualPaintModel(mpModel);
123             mpControler->SetManualPaintPanel(mpPanel);
124             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView4() );
125             mpControler->Config();
126         }
127
128     } // firsttime
129
130 }
131 //=====
132 // Don't edit this file. This file is generated from xml description..
133 //=====
134 void ManualPaint::CreateWidget(wxWindow* parent)
135 {
136    bbSetOutputWidget( new wxManualPaintPanel(parent) );
137 }
138
139 //=====
140 // Don't edit this file. This file is generated from xml description..
141 //=====
142 void ManualPaint::bbUserSetDefaultValues()
143 {
144     firsttime=true;
145     bbSetInputIn(NULL);
146     bbSetInputWxVtkBaseView1(NULL);
147     bbSetInputWxVtkBaseView2(NULL);
148     bbSetInputWxVtkBaseView3(NULL);
149     bbSetInputWxVtkBaseView4(NULL);
150 }
151 //=====
152 // Don't edit this file. This file is generated from xml description..
153 //=====
154 void ManualPaint::bbUserInitializeProcessing()
155 {
156
157 }
158 //=====
159 // Don't edit this file. This file is generated from xml description..
160 //=====
161 void ManualPaint::bbUserFinalizeProcessing()
162 {
163
164 }
165
166 } // EO namespace bbcreaMaracasVisu
167
168