]> Creatis software - creaRigidRegistration.git/blobdiff - PackRecalage/src/bbPackRecalageImageSwitcherBox.cxx
Feature #1766 Add licence terms for all files.
[creaRigidRegistration.git] / PackRecalage / src / bbPackRecalageImageSwitcherBox.cxx
index bf4afe9c36f04ff79c5f6ba47b3e538de4034c8e..47215c4aebe7b6e9ad9830a3ce9fcc3509cd318b 100644 (file)
@@ -1,3 +1,29 @@
+/*
+# ---------------------------------------------------------------------
+#
+# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
+#                        pour la Santé)
+# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+#
+#  This software is governed by the CeCILL-B license under French law and 
+#  abiding by the rules of distribution of free software. You can  use, 
+#  modify and/ or redistribute the software under the terms of the CeCILL-B 
+#  license as circulated by CEA, CNRS and INRIA at the following URL 
+#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
+#  or in the file LICENSE.txt.
+#
+#  As a counterpart to the access to the source code and  rights to copy,
+#  modify and redistribute granted by the license, users are provided only
+#  with a limited warranty  and the software's author,  the holder of the
+#  economic rights,  and the successive licensors  have only  limited
+#  liability. 
+#
+#  The fact that you are presently reading this means that you have had
+#  knowledge of the CeCILL-B license and that you accept its terms.
+# ------------------------------------------------------------------------   
+*/
+
+
 #include "bbPackRecalageImageSwitcherBox.h"
 #include "bbPackRecalagePackage.h"
 namespace bbPackRecalage
@@ -14,6 +40,7 @@ namespace bbPackRecalage
 
        void MyTimer::Notify()
        {
+               //This will be called each time the timer finishes a countdown
                _box->Change();
                _box->bbSignalOutputModification(std::string("Out")); 
        }       
@@ -23,6 +50,8 @@ BBTK_BLACK_BOX_IMPLEMENTATION(ImageSwitcherBox,bbtk::WxBlackBox);
 
 void ImageSwitcherBox::Change()
 {
+       //Just changes the images each time the timer finishes a countdown
+       
        if(change == false)
        {
                bbSetOutputOut(bbGetInputIn2());                
@@ -60,14 +89,7 @@ void ImageSwitcherBox::Process()
                myTimer->Start(time);
                oldTime = time;
        }
-       /*
-       if(oldTime != time && myTimer !=NULL)
-       {
-               myTimer->Stop();
-               myTimer->Start(time);
-               oldTime = time;
-       }*/
-
+       
        if(!_on)
        {
                myTimer->Stop();
@@ -86,6 +108,7 @@ void ImageSwitcherBox::Process()
 }
 void ImageSwitcherBox::CreateWidget(wxWindow* parent)
 {
+       //Creates a simple text widget because it is necesary that a non-empty widget exists for creatingh the thread of the timer.
        bbSetOutputWidget( new wxStaticText(parent, -1, _T("Image Switcher")) );        
 }
 void ImageSwitcherBox::bbUserSetDefaultValues()