1 /*=========================================================================
2 Program: vv http://www.creatis.insa-lyon.fr/rio/vv
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
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.
13 It is distributed under dual licence
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"
23 //====================================================================
24 vvQProgressDialogITKCommand::vvQProgressDialogITKCommand()
26 progress.setWindowModality(Qt::WindowModal);
27 progress.setCancelButtonText("Cancel");
29 //====================================================================
31 //====================================================================
32 void vvQProgressDialogITKCommand::Initialize(QString title, float sec, int max)
34 progress.setMinimumDuration((int)lrint(1000.0*sec)); // number of seconds to wait before displaying dialog
35 progress.setLabelText(title);
37 progress.setMaximum(max);
39 //====================================================================
41 //====================================================================
42 void vvQProgressDialogITKCommand::Execute(itk::Object *caller, const itk::EventObject & event)
46 if (progress.wasCanceled()) {
47 itk::ProcessObject * o = dynamic_cast<itk::ProcessObject *>(caller);
48 o->SetAbortGenerateData(true);
51 //====================================================================
53 //====================================================================
54 void vvQProgressDialogITKCommand::Execute(const itk::Object *caller, const itk::EventObject & event)
59 //====================================================================
61 #endif /* end #define VVQPROGRESSDIALOGITKCOMMAND_CXX */