]> Creatis software - creaMaracasVisu.git/blob - bbtk/src/bbcreaMaracasVisuManualPaint.cxx
#
[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     if (bbGetInputWxVtkBaseView1()==NULL)
56     {
57       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'WxVtkBaseView' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
58     }
59     if (bbGetInputIn()==NULL)
60     {
61       wxMessageDialog(NULL,  bbtk::std2wx("(ManualPaint) Input 'vtkImageData' is not set"),  bbtk::std2wx(bbGetFullName()) ).ShowModal();
62     }
63     if (firsttime==true)
64     {
65         firsttime=false;
66         ManualPaintModel        *mpModel                = new ManualPaintModel();
67         ManualPaintControler    *mpControler    = new ManualPaintControler();
68         mpModel->SetImages( bbGetInputIn() , bbGetInputIn2() );
69         mpControler->SetManualPaintModel(mpModel);
70         mpControler->SetWxVtk2DBaseView( 1, (wxVtk2DBaseView*)bbGetInputWxVtkBaseView1() );
71         mpControler->SetWxVtk2DBaseView( 2, (wxVtk2DBaseView*)bbGetInputWxVtkBaseView2() );
72         mpControler->SetWxVtk2DBaseView( 3, (wxVtk2DBaseView*)bbGetInputWxVtkBaseView3() );
73         mpControler->SetWxVtk2DBaseView( 4, (wxVtk2DBaseView*)bbGetInputWxVtkBaseView4() );
74                 mpControler->Config();
75         wxManualPaintPanel       *mpPanel                       = (wxManualPaintPanel*)bbGetOutputWidget();
76             mpPanel->SetManualPaintControler(mpControler);
77     } // firsttime
78 }
79
80 //=====
81 // Don't edit this file. This file is generated from xml description..
82 //=====
83 void ManualPaint::CreateWidget(wxWindow* parent)
84 {
85    bbSetOutputWidget( new wxManualPaintPanel(parent) );
86 }
87
88 //=====
89 // Don't edit this file. This file is generated from xml description..
90 //=====
91 void ManualPaint::bbUserSetDefaultValues()
92 {
93     firsttime = true;
94     bbSetInputIn(NULL);
95     bbSetInputWxVtkBaseView1(NULL);
96     bbSetInputWxVtkBaseView2(NULL);
97     bbSetInputWxVtkBaseView3(NULL);
98     bbSetInputWxVtkBaseView4(NULL);
99 }
100 //=====
101 // Don't edit this file. This file is generated from xml description..
102 //=====
103 void ManualPaint::bbUserInitializeProcessing()
104 {
105
106 }
107 //=====
108 // Don't edit this file. This file is generated from xml description..
109 //=====
110 void ManualPaint::bbUserFinalizeProcessing()
111 {
112
113 }
114
115 } // EO namespace bbcreaMaracasVisu
116
117