]> Creatis software - clitk.git/blobdiff - vv/vvProgressDialog.h
Enable interactive display in tool binarize
[clitk.git] / vv / vvProgressDialog.h
index cf223eda2e42240797c0f87328bbf7443114fb3f..1105320bf57c991dd03e251f6254a37dfd350b0a 100644 (file)
 
   - BSD        See included LICENSE.txt file
   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
-======================================================================-====*/
-#ifndef vvProgressDialog_h
-#define vvProgressDialog_h
+  ======================================================================-====*/
+
+#ifndef VVPROGRESSDIALOG_H
+#define VVPROGRESSDIALOG_H
+
+// vv
 #include "ui_vvProgressDialog.h"
-#include <string>
 
-class vvProgressDialog : public QDialog, private Ui::vvProgressDialog
+//------------------------------------------------------------------------------
+class vvProgressDialog : 
+  public QDialog, 
+  private Ui::vvProgressDialog
 {
-    Q_OBJECT
-
-public:
-    vvProgressDialog(std::string message,bool show_progress=false) {
-        setupUi(this);
-        textLabel->setText(message.c_str());
-        if (show_progress) 
-            progressBar->show();
-        else 
-            progressBar->hide();
-        this->show();
-    }
-    void Update(std::string message)
-    {
-        textLabel->setText(message.c_str());
-    }
-    void SetProgress(unsigned int current,unsigned int max)
-    {
-        progressBar->setMaximum(max);
-        progressBar->setValue(current);
-    }
-    ~vvProgressDialog() {}
-
-public slots:
-
+  Q_OBJECT
+
+  public:
+  vvProgressDialog(std::string message,bool show_progress=false);
+  ~vvProgressDialog() {}
+  void SetCancelButtonEnabled(bool b);
+  void SetText(std::string message);
+  void AddToText(std::string message);
+  void SetProgress(unsigned int current,unsigned int max);
 };
+//------------------------------------------------------------------------------
 
 #endif