]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuManualPaint.cxx
#2855 creaMaracasVisu Bug New Normal - ColorLayer box spacing size not identified
[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         mpPanel->SetManualPaintModel(mpModel);
89
90         if (bbGetInputWxVtkBaseView1()!=NULL)
91         {
92             ManualPaintControler    *mpControler    = new ManualPaintControler();
93             mpControler->SetManualPaintModel(mpModel);
94             mpControler->SetManualPaintPanel(mpPanel);
95             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView1() );
96             mpControler->Config();
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         }
107
108         if (bbGetInputWxVtkBaseView3()!=NULL)
109         {
110             ManualPaintControler    *mpControler    = new ManualPaintControler();
111             mpControler->SetManualPaintModel(mpModel);
112             mpControler->SetManualPaintPanel(mpPanel);
113             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView3() );
114             mpControler->Config();
115         }
116
117         if (bbGetInputWxVtkBaseView4()!=NULL)
118         {
119             ManualPaintControler    *mpControler    = new ManualPaintControler();
120             mpControler->SetManualPaintModel(mpModel);
121             mpControler->SetManualPaintPanel(mpPanel);
122             mpControler->SetWxVtk2DBaseView( (wxVtk2DBaseView*)bbGetInputWxVtkBaseView4() );
123             mpControler->Config();
124         }
125
126     } // firsttime
127
128 }
129 //=====
130 // Don't edit this file. This file is generated from xml description..
131 //=====
132 void ManualPaint::CreateWidget(wxWindow* parent)
133 {
134    bbSetOutputWidget( new wxManualPaintPanel(parent) );
135 }
136
137 //=====
138 // Don't edit this file. This file is generated from xml description..
139 //=====
140 void ManualPaint::bbUserSetDefaultValues()
141 {
142     firsttime=true;
143     bbSetInputIn(NULL);
144     bbSetInputWxVtkBaseView1(NULL);
145     bbSetInputWxVtkBaseView2(NULL);
146     bbSetInputWxVtkBaseView3(NULL);
147     bbSetInputWxVtkBaseView4(NULL);
148 }
149 //=====
150 // Don't edit this file. This file is generated from xml description..
151 //=====
152 void ManualPaint::bbUserInitializeProcessing()
153 {
154
155 }
156 //=====
157 // Don't edit this file. This file is generated from xml description..
158 //=====
159 void ManualPaint::bbUserFinalizeProcessing()
160 {
161
162 }
163
164 } // EO namespace bbcreaMaracasVisu
165
166