1#ifndef PROGRESSDIALOG_H
2#define PROGRESSDIALOG_H
5#include "progressdisplay.h"
31 explicit ProgressDialog(QWidget *parent =
nullptr,
bool showAbort =
true);
47 void slot_displayMessage(QString message)
override;
53 Ui::ProgressDialog *ui;
The ProgressDialog class is the ui dialog holding the progress bar and abort/cancel button.
Definition progressdialog.h:22
void slot_displayProgress(int progress, QString currentOperation) override
slot_progress updates progress bar with new given data
Definition progressdialog.cpp:25
void sig_abort()
sig_abort signals that user pressed the abort button
The ProgressDisplay class is an interface for classes that can display progression in any form....
Definition progressdisplay.h:19