]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuManualPaint.cxx
ea86236f47f39f6ad2f93c6f462e1199b298243b
[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
56 /*
57    std::string msg;
58     if (bbGetInputTitle()!="")
59       {
60         msg = bbGetInputTitle()+": " + bbGetInputIn();
61       }
62     else
63       {
64         msg = bbGetInputIn();
65       }
66    ((wxStaticText*)bbGetOutputWidget())->SetLabel( bbtk::std2wx( msg ) );
67   */
68
69     if (bbGetInputWxVtkBaseView1()==NULL)
70     {
71       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'WxVtkBaseView' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
72     }
73
74     if (bbGetInputIn()==NULL)
75     {
76       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'vtkImageData' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
77     }
78
79
80     if (firsttime==true)
81     {
82         firsttime=false;
83
84         ManualPaintModel        *mpModel                        = new ManualPaintModel();
85         mpModel->SetImages( bbGetInputIn() , bbGetInputIn2() );
86
87         wxManualPaintPanel       *mpPanel                       = (wxManualPaintPanel*)bbGetOutputWidget();
88
89         if (bbGetInputWxVtkBaseView1()!=NULL)
90         {
91             ManualPaintControler    *mpControler    = new ManualPaintControler();
92             mpControler->SetManualPaintModel(mpModel);
93 //            mpControler->SetManualPaintPanel(mpPanel);
94             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView1() );
95             mpControler->Config();
96                 mpPanel->SetManualPaintControler(mpControler);
97         }
98
99         if (bbGetInputWxVtkBaseView2()!=NULL)
100         {
101             ManualPaintControler    *mpControler    = new ManualPaintControler();
102             mpControler->SetManualPaintModel(mpModel);
103 //            mpControler->SetManualPaintPanel(mpPanel);
104             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView2() );
105             mpControler->Config();
106                 mpPanel->SetManualPaintControler(mpControler);
107         }
108
109         if (bbGetInputWxVtkBaseView3()!=NULL)
110         {
111             ManualPaintControler    *mpControler    = new ManualPaintControler();
112             mpControler->SetManualPaintModel(mpModel);
113 //            mpControler->SetManualPaintPanel(mpPanel);
114             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView3() );
115             mpControler->Config();
116                 mpPanel->SetManualPaintControler(mpControler);
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                 mpPanel->SetManualPaintControler(mpControler);
127         }
128
129     } // firsttime
130
131 }
132 //=====
133 // Don't edit this file. This file is generated from xml description..
134 //=====
135 void ManualPaint::CreateWidget(wxWindow* parent)
136 {
137    bbSetOutputWidget( new wxManualPaintPanel(parent) );
138 }
139
140 //=====
141 // Don't edit this file. This file is generated from xml description..
142 //=====
143 void ManualPaint::bbUserSetDefaultValues()
144 {
145     firsttime=true;
146     bbSetInputIn(NULL);
147     bbSetInputWxVtkBaseView1(NULL);
148     bbSetInputWxVtkBaseView2(NULL);
149     bbSetInputWxVtkBaseView3(NULL);
150     bbSetInputWxVtkBaseView4(NULL);
151 }
152 //=====
153 // Don't edit this file. This file is generated from xml description..
154 //=====
155 void ManualPaint::bbUserInitializeProcessing()
156 {
157
158 }
159 //=====
160 // Don't edit this file. This file is generated from xml description..
161 //=====
162 void ManualPaint::bbUserFinalizeProcessing()
163 {
164
165 }
166
167 } // EO namespace bbcreaMaracasVisu
168
169