]> Creatis software - clitk.git/blob - vv/vvQProgressDialogITKCommand.cxx
added the new headers
[clitk.git] / vv / vvQProgressDialogITKCommand.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17 ======================================================================-====*/
18 #ifndef VVQPROGRESSDIALOGITKCOMMAND_CXX
19 #define VVQPROGRESSDIALOGITKCOMMAND_CXX
20 #include "clitkImageCommon.h"
21 #include "vvQProgressDialogITKCommand.h"
22
23 //====================================================================
24 vvQProgressDialogITKCommand::vvQProgressDialogITKCommand() {
25     progress.setWindowModality(Qt::WindowModal);
26     progress.setCancelButtonText("Cancel");
27 }
28 //====================================================================
29
30 //====================================================================
31 void vvQProgressDialogITKCommand::Initialize(QString title, float sec, int max) {
32     progress.setMinimumDuration((int)lrint(1000.0*sec)); // number of seconds to wait before displaying dialog
33     progress.setLabelText(title);
34     i=0;
35     progress.setMaximum(max);
36 }
37 //====================================================================
38
39 //====================================================================
40 void vvQProgressDialogITKCommand::Execute(itk::Object *caller, const itk::EventObject & event) {
41     i++;
42     progress.setValue(i);
43     if (progress.wasCanceled()) {
44         itk::ProcessObject * o = dynamic_cast<itk::ProcessObject *>(caller);
45         o->SetAbortGenerateData(true);
46     }
47 }
48 //====================================================================
49
50 //====================================================================
51 void vvQProgressDialogITKCommand::Execute(const itk::Object *caller, const itk::EventObject & event) {
52     i++;
53     progress.setValue(i);
54 }
55 //====================================================================
56
57 #endif /* end #define VVQPROGRESSDIALOGITKCOMMAND_CXX */
58