]> Creatis software - creaRigidRegistration.git/blob - PackRecalage/src/bbPackRecalageImageSwitcherBox.cxx
registration widget
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageImageSwitcherBox.cxx
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Santé)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------   
24 */
25
26
27 #include "bbPackRecalageImageSwitcherBox.h"
28 #include "bbPackRecalagePackage.h"
29 namespace bbPackRecalage
30 {
31         MyTimer::MyTimer(ImageSwitcherBox *box): wxTimer()
32         {
33                 _box = box;             
34         }
35
36         MyTimer::~MyTimer()
37         {
38                 //delete this;
39         }
40
41         void MyTimer::Notify()
42         {
43                 //This will be called each time the timer finishes a countdown
44                 _box->Change();
45                 _box->bbSignalOutputModification(std::string("Out")); 
46         }       
47
48 BBTK_ADD_BLACK_BOX_TO_PACKAGE(PackRecalage,ImageSwitcherBox)
49 BBTK_BLACK_BOX_IMPLEMENTATION(ImageSwitcherBox,bbtk::WxBlackBox);
50
51 void ImageSwitcherBox::Change()
52 {
53         //Just changes the images each time the timer finishes a countdown
54         
55         if(change == false)
56         {
57                 bbSetOutputOut(bbGetInputIn2());                
58                 change = true;
59         }
60         else
61         {
62                 bbSetOutputOut(bbGetInputIn1());
63                 change = false;
64         }       
65 }
66
67 void ImageSwitcherBox::Process()
68 {
69         time = bbGetInputTime();
70         _on =  bbGetInputOn();
71
72         if(firstTime == true)
73         {
74                 firstTime = false;                      
75                 if(bbGetInputIn1() != NULL)
76                 {
77                         bbSetOutputOut(bbGetInputIn1());
78                 } else if(bbGetInputIn2() != NULL) {
79                         bbSetOutputOut(bbGetInputIn2());
80                 }
81         }
82
83         if(myTimer == NULL)
84         {
85                 myTimer = new MyTimer(this);
86                 myTimer->Start(time);
87                 oldTime = time;
88         }
89         
90         if(!_on)
91         {
92                 myTimer->Stop();
93         } else if(!myTimer->IsRunning()) {
94                 myTimer->Start(time);
95                 oldTime = time;
96         } else if(oldTime != time) {
97                 myTimer->Stop();
98                 myTimer->Start(time);
99                 oldTime=time;
100         }
101 }
102
103
104 void ImageSwitcherBox::CreateWidget(wxWindow* parent)
105 {
106         //Creates a simple text widget because it is necesary that a non-empty widget exists for creatingh the thread of the timer.
107         bbSetOutputWidget( new wxStaticText(parent, -1, _T("Image Switcher")) );        
108 }
109
110
111 void ImageSwitcherBox::bbUserSetDefaultValues()
112 {
113         myTimer         = NULL;
114         change          = false;
115         time            = 500;
116         oldTime         = 500;
117         firstTime       = true;
118         _on             = false;
119 }
120 void ImageSwitcherBox::bbUserInitializeProcessing()
121 {
122 }
123
124 void ImageSwitcherBox::bbUserFinalizeProcessing()
125 {
126         myTimer->Stop();
127         delete myTimer;
128 }
129
130 } // EO namespace bbPackRecalage
131